library(ggplot2)
library(stringr)
library(DT)
library(plyr)
library(dplyr)
library(biomaRt)
library(Biobase)
library(reshape2)
library(formattable)
library(VennDiagram)
library(hypeR)
library(xlsx)
library(animalcules)
library(magrittr)
library(SummarizedExperiment)
library(ggsci)
library(eply)
library(igraph)
PATH <- getwd()
Microbiome analysis of oral PMLs and cancer from total trx sequencing. Pathoscope was used to filter, align and map the reads to several organisms including bacterial, viral and fungi.
Load eset
eset <- readRDS(file.path(PATH, "data/2021_08_20_eset_imputed.RDS"))
eSet_wo_infl <- eset[, which(pData(eset)$Class != 'Inflammatory')]
table(eSet_wo_infl$Class)
##
## Cancer Control Dysplasia HkNR
## 9 18 22 17
eSet_wo_infl$Class <- recode(eSet_wo_infl$Class, "Cancer"="OSCC")
eSet_wo_infl$Class <- factor(eSet_wo_infl$Class, levels = c("Control", "HkNR", "Dysplasia", "OSCC"))
cpm_eset <- eSet_wo_infl
exprs(cpm_eset) <- apply(exprs(cpm_eset), 2, function(x) {x/(sum(x)/1000000)})
print(dim(cpm_eset))
## Features Samples
## 21510 66
cpm_eset$Class <- recode(cpm_eset$Class, "Control"="1-Control", "HkNR"="2-HkNR", "Dysplasia"="3-Dysplasia", "OSCC"="4-OSCC")
cpm_eset$Class <- factor(cpm_eset$Class, levels = c("1-Control", "2-HkNR", "3-Dysplasia", "4-OSCC"))
New animalcules file w/o infl
File created from the shiny app with run_animalcules() easy-to-upload .tsv files from pathoscope.
MAE <- readRDS(file.path(PATH, "data/animalcules_data_2022-03-14.rds"))
colData(MAE[['MicrobeGenetics']]) <- cbind(colData(MAE[['MicrobeGenetics']]), "Sample_ID"=rownames(colData(MAE[['MicrobeGenetics']])))
#add smoking and progression status to colData
colData(MAE[['MicrobeGenetics']]) <- cbind(colData(MAE[['MicrobeGenetics']]), pData(cpm_eset)[match(MAE[['MicrobeGenetics']]$Sample_ID, gsub(cpm_eset$Sample_ID, pattern = "_", replacement = "-")), c('Smoking_status', 'imputed_smoking_label', 'Progression_status')])
MAE[['MicrobeGenetics']]$Progression_status <- ifelse(is.na(MAE[['MicrobeGenetics']]$Progression_status) | (MAE[['MicrobeGenetics']]$Progression_status =="Stable"), MAE[['MicrobeGenetics']]$Class, MAE[['MicrobeGenetics']]$Progression_status)
p1 <- animalcules::relabu_barplot(MAE,
tax_level="phylum",
sort_by= "conditions",
sample_conditions=c('Class'),
show_legend=TRUE)
p1
p2 <- animalcules::relabu_barplot(MAE,
tax_level="genus",
sort_by= "conditions",
sample_conditions=c('Class'),
show_legend=TRUE)
p2
p3 <- animalcules::relabu_barplot(MAE,
tax_level="species",
sort_by= "conditions",
sample_conditions=c('Class'),
show_legend=TRUE)
p3
## creating a relabu barplots wrapper to rotate the axix but didn't work
relabu_wrapper <- function (MAE, tax_level, order_organisms = c(), sort_by = c("nosort",
"conditions", "organisms", "alphabetically"), group_samples = FALSE,
group_conditions = "ALL", sample_conditions = c(), isolate_samples = c(),
discard_samples = c(), show_legend = TRUE)
{
sort_by <- match.arg(sort_by)
MAE <- mae_pick_samples(MAE, isolate_samples, discard_samples)
microbe <- MAE[["MicrobeGenetics"]]
tax_table <- as.data.frame(rowData(microbe))
sam_table <- as.data.frame(colData(microbe))
counts_table <- as.data.frame(assays(microbe))[, rownames(sam_table)]
sam_table %<>% df_char_to_factor()
relabu_table <- counts_table %>% upsample_counts(tax_table,
tax_level) %>% counts_to_relabu() %>% base::t() %>%
base::as.data.frame()
if (group_samples & !is.null(group_conditions)) {
if (group_conditions == "ALL") {
relabu_table$covariate <- rep("ALL", nrow(relabu_table))
}
else {
relabu_table$covariate <- sam_table[[group_conditions]]
}
relabu_table <- relabu_table %>% reshape2::melt(id.vars = "covariate") %>%
S4Vectors::aggregate(. ~ variable + covariate, .,
mean) %>% reshape2::dcast(formula = covariate ~
variable) %>% magrittr::set_rownames(.[["covariate"]]) %>%
dplyr::select(-one_of(c("covariate")))
sam_table <- rownames(relabu_table) %>% as.data.frame() %>%
magrittr::set_colnames(c(group_conditions)) %>%
magrittr::set_rownames(rownames(relabu_table))
}
relabu_table <- relabu_table[, order(colSums(relabu_table)),
drop = FALSE]
if (!is.null(order_organisms)) {
org_order <- c(setdiff(colnames(relabu_table), order_organisms),
rev(order_organisms))
relabu_table <- relabu_table[, org_order]
}
if (sort_by == "alphabetically") {
org_order <- sort(colnames(relabu_table), decreasing = TRUE)
relabu_table <- relabu_table[, org_order]
}
if (sort_by == "organisms") {
for (i in seq_len(ncol(relabu_table))) {
relabu_table <- relabu_table[order(relabu_table[,
i]), ]
}
}
if (!is.null(sample_conditions) || (group_samples && group_conditions !=
"ALL")) {
if (!group_samples) {
sam_table <- sam_table[, sample_conditions, drop = FALSE]
}
if (sort_by == "conditions") {
for (i in ncol(sam_table):1) {
sam_table <- sam_table[order(sam_table[[i]]),
, drop = FALSE]
}
relabu_table <- relabu_table[order(match(rownames(relabu_table),
rownames(sam_table))), , drop = FALSE]
}
else {
sam_table <- sam_table[order(match(rownames(sam_table),
rownames(relabu_table))), , drop = FALSE]
}
if (nrow(sam_table) > 1) {
hover.txt <- c()
for (i in seq_len(ncol(sam_table))) {
hover.txt <- cbind(hover.txt, as.character(sam_table[[i]]))
}
mat <- sam_table %>% data.matrix() %>% apply(2,
function(x) (x - min(x))/(max(x) - min(x)))
hm <- plotly::plot_ly(x = colnames(mat), y = rownames(mat),
z = mat, type = "heatmap", showscale = FALSE,
hoverinfo = "x+y+text", text = hover.txt) %>%
layout(xaxis = list(title = "", tickangle = -45),
yaxis = list(showticklabels = FALSE, type = "category",
ticks = ""))
}
}
relabu_table$samples <- rownames(relabu_table)
sbp <- plotly::plot_ly(relabu_table, y = ~samples, x = relabu_table[[colnames(relabu_table)[1]]],
type = "bar", textposition = "outside", orientaton="h",
name = substr(colnames(relabu_table)[1], 1, 40)) %>%
layout(font = list(size = 10), xaxis = list(title = "Relative Abundance",
automargin = TRUE), yaxis = list(title = "", type = "category",
tickmode = "array", tickvals = rownames(relabu_table),
showticklabels = FALSE, categoryorder = "trace",
automargin = TRUE), barmode = "stack", showlegend = show_legend)
for (i in 2:(ncol(relabu_table) - 1)) {
sbp <- add_trace(sbp, x = relabu_table[[colnames(relabu_table)[i]]],
name = substr(colnames(relabu_table)[i], 1, 40))
}
if (exists("hm") && nrow(sam_table) > 1) {
hm_sbp <- subplot(hm, sbp, widths = c(0.1, 0.9))
hm_sbp$elementId <- NULL
return(hm_sbp)
}
else {
sbp$elementId <- NULL
return(sbp)
}
}
relabu_boxplot_wrapper <- function (MAE, tax_level, condition, organisms = c(), datatype = c("counts",
"relative abundance", "logcpm"))
{
datatype <- match.arg(datatype)
microbe <- MAE[["MicrobeGenetics"]]
tax_table <- as.data.frame(rowData(microbe))
sam_table <- as.data.frame(colData(microbe))
counts_table <- as.data.frame(assays(microbe))[, rownames(sam_table)]
sam_table %<>% df_char_to_factor()
df <- counts_table %>% upsample_counts(tax_table, tax_level) %>%
{
if (datatype == "relative abundance") {
animalcules::counts_to_relabu(.)
}
else if (datatype == "logcpm") {
animalcules::counts_to_logcpm(.)
}
else {
.
}
} %>% .[organisms, , drop = FALSE] %>% t() %>% as.data.frame() %>%
merge(sam_table[, condition, drop = FALSE], by = 0,
all = TRUE) %>% reshape2::melt(by = organisms, variable.name = "organisms")
g <- ggplot2::ggplot(df,
ggplot2::aes(x = organisms, y = value, color = Class, fill = Class)) +
geom_boxplot() +
viridis::scale_color_viridis(alpha = 0.90, discrete=T)+
viridis::scale_fill_viridis(alpha = 0.90, discrete =T)+
ggplot2::geom_jitter(size=0.2) +
theme_bw() + labs(y = "log-CPM")+
ggplot2::theme(axis.text.x = element_text(angle = 45, hjust = 1))
return(g)
}
alpha_diversity_wrapper <- function (MAE, tax_level, condition, alpha_metric = c("inverse_simpson",
"gini_simpson", "shannon", "fisher", "coverage", "unit"))
{
microbe <- MAE[["MicrobeGenetics"]]
tax_table <- as.data.frame(SummarizedExperiment::rowData(microbe))
sam_table <- as.data.frame(SummarizedExperiment::colData(microbe))
counts_table <- as.data.frame(SummarizedExperiment::assays(microbe))[, rownames(sam_table)]
counts_table %<>% upsample_counts(tax_table, tax_level)
sam_table$richness <- diversities(counts_table, index = alpha_metric)
colnames(sam_table)[ncol(sam_table)] <- "richness"
colnames(sam_table)[which(colnames(sam_table) == condition)] <- "condition"
g <- ggplot2::ggplot(sam_table,
ggplot2::aes(condition, richness, color = condition, fill = condition)) +
geom_boxplot() +
viridis::scale_color_viridis(alpha = 0.90, discrete=TRUE)+
viridis::scale_fill_viridis(alpha = 0.90, discrete = TRUE)+
ggplot2::geom_jitter(size=0.3) +
ggpubr::stat_compare_means(method = "anova", label = 'p.format') +
theme_bw() +
ggplot2::theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
ggplot2::labs(title = paste("Alpha diversity between ",
condition, " (", alpha_metric, ")", sep = ""))
g <- g + labs(y = alpha_metric)
return(g)
}
animalcules::alpha_div_boxplot(MAE = MAE, tax_level = "genus", condition = "Class", alpha_metric = "shannon")
animalcules::diversity_beta_heatmap(MAE = MAE, tax_level = "genus", input_beta_method = "bray", input_bdhm_select_conditions = c("Class"), input_bdhm_sort_by = "conditions")
## No scatter mode specifed:
## Setting the mode to markers
## Read more about this attribute -> https://plotly.com/r/reference/#scatter-mode
## Warning: 'layout' objects don't have these attributes: 'orientation'
## Valid attributes include:
## '_deprecated', 'activeshape', 'annotations', 'autosize', 'autotypenumbers', 'calendar', 'clickmode', 'coloraxis', 'colorscale', 'colorway', 'computed', 'datarevision', 'dragmode', 'editrevision', 'editType', 'font', 'geo', 'grid', 'height', 'hidesources', 'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend', 'mapbox', 'margin', 'meta', 'metasrc', 'modebar', 'newshape', 'paper_bgcolor', 'plot_bgcolor', 'polar', 'scene', 'selectdirection', 'selectionrevision', 'separators', 'shapes', 'showlegend', 'sliders', 'spikedistance', 'template', 'ternary', 'title', 'transition', 'uirevision', 'uniformtext', 'updatemenus', 'width', 'xaxis', 'yaxis', 'barmode', 'bargap', 'mapType'
## Warning: 'layout' objects don't have these attributes: 'orientation'
## Valid attributes include:
## '_deprecated', 'activeshape', 'annotations', 'autosize', 'autotypenumbers', 'calendar', 'clickmode', 'coloraxis', 'colorscale', 'colorway', 'computed', 'datarevision', 'dragmode', 'editrevision', 'editType', 'font', 'geo', 'grid', 'height', 'hidesources', 'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend', 'mapbox', 'margin', 'meta', 'metasrc', 'modebar', 'newshape', 'paper_bgcolor', 'plot_bgcolor', 'polar', 'scene', 'selectdirection', 'selectionrevision', 'separators', 'shapes', 'showlegend', 'sliders', 'spikedistance', 'template', 'ternary', 'title', 'transition', 'uirevision', 'uniformtext', 'updatemenus', 'width', 'xaxis', 'yaxis', 'barmode', 'bargap', 'mapType'
## Warning: 'layout' objects don't have these attributes: 'orientation'
## Valid attributes include:
## '_deprecated', 'activeshape', 'annotations', 'autosize', 'autotypenumbers', 'calendar', 'clickmode', 'coloraxis', 'colorscale', 'colorway', 'computed', 'datarevision', 'dragmode', 'editrevision', 'editType', 'font', 'geo', 'grid', 'height', 'hidesources', 'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend', 'mapbox', 'margin', 'meta', 'metasrc', 'modebar', 'newshape', 'paper_bgcolor', 'plot_bgcolor', 'polar', 'scene', 'selectdirection', 'selectionrevision', 'separators', 'shapes', 'showlegend', 'sliders', 'spikedistance', 'template', 'ternary', 'title', 'transition', 'uirevision', 'uniformtext', 'updatemenus', 'width', 'xaxis', 'yaxis', 'barmode', 'bargap', 'mapType'
## Warning: 'layout' objects don't have these attributes: 'orientation'
## Valid attributes include:
## '_deprecated', 'activeshape', 'annotations', 'autosize', 'autotypenumbers', 'calendar', 'clickmode', 'coloraxis', 'colorscale', 'colorway', 'computed', 'datarevision', 'dragmode', 'editrevision', 'editType', 'font', 'geo', 'grid', 'height', 'hidesources', 'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend', 'mapbox', 'margin', 'meta', 'metasrc', 'modebar', 'newshape', 'paper_bgcolor', 'plot_bgcolor', 'polar', 'scene', 'selectdirection', 'selectionrevision', 'separators', 'shapes', 'showlegend', 'sliders', 'spikedistance', 'template', 'ternary', 'title', 'transition', 'uirevision', 'uniformtext', 'updatemenus', 'width', 'xaxis', 'yaxis', 'barmode', 'bargap', 'mapType'
## Warning: 'layout' objects don't have these attributes: 'orientation'
## Valid attributes include:
## '_deprecated', 'activeshape', 'annotations', 'autosize', 'autotypenumbers', 'calendar', 'clickmode', 'coloraxis', 'colorscale', 'colorway', 'computed', 'datarevision', 'dragmode', 'editrevision', 'editType', 'font', 'geo', 'grid', 'height', 'hidesources', 'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend', 'mapbox', 'margin', 'meta', 'metasrc', 'modebar', 'newshape', 'paper_bgcolor', 'plot_bgcolor', 'polar', 'scene', 'selectdirection', 'selectionrevision', 'separators', 'shapes', 'showlegend', 'sliders', 'spikedistance', 'template', 'ternary', 'title', 'transition', 'uirevision', 'uniformtext', 'updatemenus', 'width', 'xaxis', 'yaxis', 'barmode', 'bargap', 'mapType'
suppressPackageStartupMessages(library(plotly))
animalcules::alpha_div_boxplot(MAE = MAE, tax_level = "genus", condition = "Class", alpha_metric = "shannon")
animalcules::alpha_div_boxplot(MAE = MAE, tax_level = "species", condition = "Class", alpha_metric = "shannon")
animalcules::diversity_beta_heatmap(MAE = MAE, tax_level = "genus", input_beta_method = "bray",input_bdhm_select_conditions = "Class", input_bdhm_sort_by = "conditions")
## No scatter mode specifed:
## Setting the mode to markers
## Read more about this attribute -> https://plotly.com/r/reference/#scatter-mode
animalcules::diversity_beta_heatmap(MAE = MAE, tax_level = "species", input_beta_method = "bray",input_bdhm_select_conditions = "Class", input_bdhm_sort_by = "conditions")
## No scatter mode specifed:
## Setting the mode to markers
## Read more about this attribute -> https://plotly.com/r/reference/#scatter-mode
relabu_boxplot_wrapper(MAE = MAE, tax_level = "genus", condition = "Class", organisms = c("Fusobacterium", "Neisseria", "Prevotella", "Shewanella", "Streptococcus", "Candida"), datatype = "logcpm")
## Using Row.names, Class as id variables
animalcules::dimred_umap(MAE = MAE,tax_level = "genus", color = "Class", n_neighbors = 5, n_epochs = 1000, cx = 1, cy = 2, cz = 3)
## $plot
animalcules::dimred_pcoa(MAE = MAE,tax_level = "genus", color = "Class", method = "jaccard", axx = 1, axy = 2, axz = 3)
## $plot
##
## $table
## Axis Eigenvalue Variance Explained Cumulative Variance
## Axis.1 Axis.1 4.280000 25.2844% 25.284%
## Axis.2 Axis.2 1.730000 10.3494% 35.634%
## Axis.3 Axis.3 1.290000 7.7934% 43.427%
## Axis.4 Axis.4 1.140000 6.8838% 50.311%
## Axis.5 Axis.5 0.633000 3.9176% 54.229%
## Axis.6 Axis.6 0.610000 3.7837% 58.012%
## Axis.7 Axis.7 0.536000 3.3515% 61.364%
## Axis.8 Axis.8 0.468000 2.9534% 64.317%
## Axis.9 Axis.9 0.430000 2.7262% 67.043%
## Axis.10 Axis.10 0.356000 2.2914% 69.335%
## Axis.11 Axis.11 0.317000 2.0651% 71.400%
## Axis.12 Axis.12 0.289000 1.9003% 73.300%
## Axis.13 Axis.13 0.262000 1.7430% 75.043%
## Axis.14 Axis.14 0.243000 1.6336% 76.677%
## Axis.15 Axis.15 0.221000 1.5048% 78.182%
## Axis.16 Axis.16 0.207000 1.4186% 79.600%
## Axis.17 Axis.17 0.195000 1.3513% 80.952%
## Axis.18 Axis.18 0.179000 1.2562% 82.208%
## Axis.19 Axis.19 0.166000 1.1784% 83.386%
## Axis.20 Axis.20 0.139000 1.0209% 84.407%
## Axis.21 Axis.21 0.134000 0.9903% 85.397%
## Axis.22 Axis.22 0.122000 0.9231% 86.321%
## Axis.23 Axis.23 0.113000 0.8696% 87.190%
## Axis.24 Axis.24 0.105000 0.8245% 88.015%
## Axis.25 Axis.25 0.093300 0.7536% 88.768%
## Axis.26 Axis.26 0.081500 0.6845% 89.453%
## Axis.27 Axis.27 0.074400 0.6427% 90.095%
## Axis.28 Axis.28 0.066200 0.5947% 90.690%
## Axis.29 Axis.29 0.059200 0.5539% 91.244%
## Axis.30 Axis.30 0.054600 0.5269% 91.771%
## Axis.31 Axis.31 0.050500 0.5025% 92.273%
## Axis.32 Axis.32 0.044400 0.4669% 92.740%
## Axis.33 Axis.33 0.038800 0.4344% 93.175%
## Axis.34 Axis.34 0.034900 0.4112% 93.586%
## Axis.35 Axis.35 0.030000 0.3826% 93.968%
## Axis.36 Axis.36 0.025200 0.3546% 94.323%
## Axis.37 Axis.37 0.023400 0.3439% 94.667%
## Axis.38 Axis.38 0.022100 0.3360% 95.003%
## Axis.39 Axis.39 0.019600 0.3219% 95.325%
## Axis.40 Axis.40 0.014700 0.2929% 95.618%
## Axis.41 Axis.41 0.013200 0.2840% 95.902%
## Axis.42 Axis.42 0.010900 0.2704% 96.172%
## Axis.43 Axis.43 0.010000 0.2655% 96.438%
## Axis.44 Axis.44 0.007140 0.2485% 96.686%
## Axis.45 Axis.45 0.005770 0.2405% 96.927%
## Axis.46 Axis.46 0.004050 0.2304% 97.157%
## Axis.47 Axis.47 0.003160 0.2252% 97.382%
## Axis.48 Axis.48 0.002180 0.2194% 97.602%
## Axis.49 Axis.49 0.000539 0.2098% 97.811%
## Axis.50 Axis.50 0.000000 0.2057% 98.017%
## Axis.51 Axis.51 -0.000162 0.1983% 98.215%
## Axis.52 Axis.52 -0.001420 0.1938% 98.409%
## Axis.53 Axis.53 -0.002190 0.1848% 98.594%
## Axis.54 Axis.54 -0.003730 0.1788% 98.773%
## Axis.55 Axis.55 -0.004750 0.1767% 98.950%
## Axis.56 Axis.56 -0.005100 0.1642% 99.114%
## Axis.57 Axis.57 -0.007240 0.1575% 99.271%
## Axis.58 Axis.58 -0.008390 0.1507% 99.422%
## Axis.59 Axis.59 -0.009540 0.1384% 99.560%
## Axis.60 Axis.60 -0.011600 0.1322% 99.692%
## Axis.61 Axis.61 -0.012700 0.1095% 99.802%
## Axis.62 Axis.62 -0.016600 0.0938% 99.896%
## Axis.63 Axis.63 -0.019200 0.0564% 99.952%
## Axis.64 Axis.64 -0.025600 0.0479% 100.000%
## Axis.65 Axis.65 -0.027100 0.0000% 100.000%
## Axis.66 Axis.66 -0.035200 0.0000% 100.000%
diffanal <- differential_abundance(MAE,
tax_level="genus",
input_da_condition=c("Class"),
input_da_condition_covariate = c("Sex", "imputed_smoking_label"),
min_num_filter = 500,
input_da_padj_cutoff = 0.05, method = 'DESeq2')
## Note: levels of factors in the design contain characters other than
## letters, numbers, '_' and '.'. It is recommended (but not required) to use
## only letters, numbers, and delimiters '_' or '.', as these are safe characters
## for column names in R. [This is a message, not a warning or an error]
## estimating size factors
## Note: levels of factors in the design contain characters other than
## letters, numbers, '_' and '.'. It is recommended (but not required) to use
## only letters, numbers, and delimiters '_' or '.', as these are safe characters
## for column names in R. [This is a message, not a warning or an error]
## estimating dispersions
## gene-wise dispersion estimates
## mean-dispersion relationship
## Note: levels of factors in the design contain characters other than
## letters, numbers, '_' and '.'. It is recommended (but not required) to use
## only letters, numbers, and delimiters '_' or '.', as these are safe characters
## for column names in R. [This is a message, not a warning or an error]
## final dispersion estimates
## Note: levels of factors in the design contain characters other than
## letters, numbers, '_' and '.'. It is recommended (but not required) to use
## only letters, numbers, and delimiters '_' or '.', as these are safe characters
## for column names in R. [This is a message, not a warning or an error]
## fitting model and testing
## Note: levels of factors in the design contain characters other than
## letters, numbers, '_' and '.'. It is recommended (but not required) to use
## only letters, numbers, and delimiters '_' or '.', as these are safe characters
## for column names in R. [This is a message, not a warning or an error]
## -- replacing outliers and refitting for 189 genes
## -- DESeq argument 'minReplicatesForReplace' = 7
## -- original counts are preserved in counts(dds)
## estimating dispersions
## Note: levels of factors in the design contain characters other than
## letters, numbers, '_' and '.'. It is recommended (but not required) to use
## only letters, numbers, and delimiters '_' or '.', as these are safe characters
## for column names in R. [This is a message, not a warning or an error]
## fitting model and testing
## Note: levels of factors in the design contain characters other than
## letters, numbers, '_' and '.'. It is recommended (but not required) to use
## only letters, numbers, and delimiters '_' or '.', as these are safe characters
## for column names in R. [This is a message, not a warning or an error]
DT::datatable(diffanal)
#write.xlsx(diffanal, file=file.path(PATH, "06_30_diffanal_microbes.xlsx"))
#get microbes unique to each contrast-condition
#up in first group and down in the other - up reg
microbe_list <- list("ctrl.vs.hknr_up"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 2-HkNR' & diffanal$padj <=0.05 & diffanal$log2FoldChange > 1)],
"ctrl.vs.hknr_down"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 2-HkNR' & diffanal$padj <=0.05 & diffanal$log2FoldChange < -1)],
"ctrl.vs.dys_up"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 3-Dysplasia' & diffanal$padj <=0.05 & diffanal$log2FoldChange > 1)],
"ctrl.vs.dys_down"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 3-Dysplasia' & diffanal$padj <=0.05 & diffanal$log2FoldChange < -1)],
"ctrl.vs.cancer_up"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 4-Cancer' & diffanal$padj <=0.05 & diffanal$log2FoldChange > 1)],
"ctrl.vs.cancer_down"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 4-Cancer' & diffanal$padj <=0.05 & diffanal$log2FoldChange < -1)])
microbe_list
## $ctrl.vs.hknr_up
## [1] "Centipeda" "Lacrimispora" "Lancefieldella" "Catonella"
##
## $ctrl.vs.hknr_down
## [1] "Candida" "Microlunatus" "Shewanella" "Aggregatibacter"
## [5] "Haemophilus" "Novosphingopyxis" "Marivita" "Mannheimia"
## [9] "Veillonella"
##
## $ctrl.vs.dys_up
## [1] "Rhodoluna" "Centipeda" "Agrobacterium" "Selenomonas"
## [5] "Cronobacter"
##
## $ctrl.vs.dys_down
## [1] "Candida" "Shewanella" "Dialister"
## [4] "Oceanivirga" "Simonsiella" "Microlunatus"
## [7] "Fusobacterium" "Bergeyella" "Haemophilus"
## [10] "Snodgrassella" "Neisseria" "Riemerella"
## [13] "Solobacterium" "Leptotrichia" "Campylobacter"
## [16] "Peptostreptococcus" "Porphyromonas" "Streptococcus"
## [19] "Plesiomonas" "Veillonella" "Lachnoanaerobaculum"
## [22] "Bibersteinia" "Prevotella" "Gemella"
## [25] "Mannheimia" "Schaalia" "Canicola"
## [28] "Lancefieldella"
##
## $ctrl.vs.cancer_up
## [1] "Tepidimonas" "Rhodoluna" "Pseudoglutamicibacter"
## [4] "Gardnerella" "Limnohabitans" "Kocuria"
## [7] "Ralstonia" "Thalassospira" "Agrobacterium"
## [10] "Malassezia" "Streptomyces" "Delftia"
##
## $ctrl.vs.cancer_down
## [1] "Fusobacterium" "Candida" "Dialister"
## [4] "Solobacterium" "Peptostreptococcus" "Prevotella"
## [7] "Shewanella" "Glaesserella" "Campylobacter"
## [10] "Veillonella" "Haemophilus" "Microlunatus"
## [13] "Bergeyella" "Lachnoanaerobaculum" "Neisseria"
## [16] "Porphyromonas" "Bibersteinia" "Aggregatibacter"
## [19] "Obesumbacterium" "Lancefieldella" "Centipeda"
## [22] "Snodgrassella" "Riemerella" "Schaalia"
## [25] "Plesiomonas" "Gemella" "Simonsiella"
## [28] "Leptotrichia"
#saveRDS(microbe_list, file.path("results/06_30_microbe_diffex_list.RDS"))
volcano_wrapper <- function(df){
ggplot(data=df, aes(x=log2FoldChange, y=-log10(padj), col=diffex, label=microbe)) +
geom_point() +
theme_minimal() +
geom_text_repel() +
scale_color_manual(values=c("red", "blue")) +
geom_vline(xintercept=c(-0.6, 0.6), col="red") +
geom_hline(yintercept=-log10(0.05), col="red")
}
library(ggrepel)
df <- diffanal[which(diffanal$Contrast=='1-Control vs. 4-Cancer'),]
df$log2FoldChange <- -df$log2FoldChange
df$diffex <- ifelse(df$log2FoldChange >= 1 & df$padj <= 0.05, "Up", ifelse(df$log2FoldChange <= -1 & df$padj <= 0.05, "Down", "No diff"))
df$diffex <- factor(df$diffex, levels = c("Up", "Down"))
g1 <- volcano_wrapper(df = df)
g1
## Warning: ggrepel: 13 unlabeled data points (too many overlaps). Consider
## increasing max.overlaps
library(ggrepel)
df <- diffanal[which(diffanal$Contrast=='1-Control vs. 3-Dysplasia'),]
df$log2FoldChange <- -df$log2FoldChange
df$diffex <- ifelse(df$log2FoldChange >= 1 & df$padj <= 0.05, "Up", ifelse(df$log2FoldChange <= -1 & df$padj <= 0.05, "Down", "No diff"))
df$diffex <- factor(df$diffex, levels = c("Up", "Down"))
g2 <- volcano_wrapper(df = df)
g2
## Warning: ggrepel: 14 unlabeled data points (too many overlaps). Consider
## increasing max.overlaps
library(ggrepel)
df <- diffanal[which(diffanal$Contrast=='1-Control vs. 2-HkNR'),]
df$log2FoldChange <- -df$log2FoldChange
df$diffex <- ifelse(df$log2FoldChange >= 1 & df$padj <= 0.05, "Up", ifelse(df$log2FoldChange <= -1 & df$padj <= 0.05, "Down", "No diff"))
df$diffex <- factor(df$diffex, levels = c("Up", "Down"))
g3 <- volcano_wrapper(df = df)
g3
Microbe set enrichment analysis (MSEA) Load results from msea - ran on scc with a jupyter notebook
msea_cancer_up <- read.csv(file.path(PATH, "results/msea_cancer_ctrl_up.csv"))
msea_cancer_dn <- read.csv(file.path(PATH, "results/msea_cancer_ctrl_dn.csv"))
msea_pml_up <- read.csv(file.path(PATH, "results/msea_pml_ctrl_up.csv"))
msea_pml_dn <- read.csv(file.path(PATH, "results/msea_pml_ctrl_dn.csv"))
msea_cancer_up <- msea_cancer_up[msea_cancer_up$qvalue<=0.05,]
msea_cancer_dn <- msea_cancer_dn[msea_cancer_dn$qvalue<=0.05,]#none significant
msea_pml_up <- msea_pml_up[msea_pml_up$qvalue<=0.05,]
msea_pml_dn <- msea_pml_dn[msea_pml_dn$qvalue<=0.05,]#none significant
msea_genes <- list("cancer" = msea_cancer_up$term,
"pml"=msea_pml_up$term)
HALLMARK <- msigdb_gsets("Homo sapiens", "H", "")
names(HALLMARK$genesets) <- names(HALLMARK$genesets) %>% strsplit( "HALLMARK_" ) %>% sapply( tail, 1 )
REACTOME <- msigdb_gsets(species="Homo sapiens", category="C2", subcategory="CP:REACTOME", clean = TRUE)
names(REACTOME$genesets) <- names(REACTOME$genesets) %>% strsplit( "REACTOME_" ) %>% sapply( tail, 1 )
hyp_mic1 <- hypeR(signature = msea_genes, genesets = HALLMARK, background = 1300)
## cancer
## pml
hyp_mic2 <- hypeR(signature = msea_genes, genesets = HALLMARK)
## cancer
## pml
hyp_dots(hyp_mic1, merge = T, fdr = 0.1, title = "Hallmark(bck=1300)")
hyp_mic1$as.list()
## $cancer
## label pval fdr
## INFLAMMATORY_RESPONSE INFLAMMATORY_RESPONSE 0.023 1
## TNFA_SIGNALING_VIA_NFKB TNFA_SIGNALING_VIA_NFKB 0.081 1
## ALLOGRAFT_REJECTION ALLOGRAFT_REJECTION 0.220 1
## IL6_JAK_STAT3_SIGNALING IL6_JAK_STAT3_SIGNALING 0.360 1
## INTERFERON_GAMMA_RESPONSE INTERFERON_GAMMA_RESPONSE 0.580 1
## ANGIOGENESIS ANGIOGENESIS 0.610 1
## KRAS_SIGNALING_UP KRAS_SIGNALING_UP 0.820 1
## NOTCH_SIGNALING NOTCH_SIGNALING 0.850 1
## EPITHELIAL_MESENCHYMAL_TRANSITION EPITHELIAL_MESENCHYMAL_TRANSITION 0.900 1
## APOPTOSIS APOPTOSIS 0.910 1
## APICAL_SURFACE APICAL_SURFACE 0.920 1
## INTERFERON_ALPHA_RESPONSE INTERFERON_ALPHA_RESPONSE 0.920 1
## PROTEIN_SECRETION PROTEIN_SECRETION 0.920 1
## COMPLEMENT COMPLEMENT 0.950 1
## COAGULATION COAGULATION 0.960 1
## TGF_BETA_SIGNALING TGF_BETA_SIGNALING 0.960 1
## APICAL_JUNCTION APICAL_JUNCTION 0.980 1
## IL2_STAT5_SIGNALING IL2_STAT5_SIGNALING 0.980 1
## HYPOXIA HYPOXIA 0.990 1
## PI3K_AKT_MTOR_SIGNALING PI3K_AKT_MTOR_SIGNALING 0.990 1
## ADIPOGENESIS ADIPOGENESIS 1.000 1
## ANDROGEN_RESPONSE ANDROGEN_RESPONSE 1.000 1
## BILE_ACID_METABOLISM BILE_ACID_METABOLISM 1.000 1
## CHOLESTEROL_HOMEOSTASIS CHOLESTEROL_HOMEOSTASIS 1.000 1
## DNA_REPAIR DNA_REPAIR 1.000 1
## E2F_TARGETS E2F_TARGETS 1.000 1
## ESTROGEN_RESPONSE_EARLY ESTROGEN_RESPONSE_EARLY 1.000 1
## ESTROGEN_RESPONSE_LATE ESTROGEN_RESPONSE_LATE 1.000 1
## FATTY_ACID_METABOLISM FATTY_ACID_METABOLISM 1.000 1
## G2M_CHECKPOINT G2M_CHECKPOINT 1.000 1
## GLYCOLYSIS GLYCOLYSIS 1.000 1
## HEDGEHOG_SIGNALING HEDGEHOG_SIGNALING 1.000 1
## HEME_METABOLISM HEME_METABOLISM 1.000 1
## KRAS_SIGNALING_DN KRAS_SIGNALING_DN 1.000 1
## MITOTIC_SPINDLE MITOTIC_SPINDLE 1.000 1
## MTORC1_SIGNALING MTORC1_SIGNALING 1.000 1
## MYC_TARGETS_V1 MYC_TARGETS_V1 1.000 1
## MYC_TARGETS_V2 MYC_TARGETS_V2 1.000 1
## MYOGENESIS MYOGENESIS 1.000 1
## OXIDATIVE_PHOSPHORYLATION OXIDATIVE_PHOSPHORYLATION 1.000 1
## P53_PATHWAY P53_PATHWAY 1.000 1
## PANCREAS_BETA_CELLS PANCREAS_BETA_CELLS 1.000 1
## PEROXISOME PEROXISOME 1.000 1
## REACTIVE_OXYGEN_SPECIES_PATHWAY REACTIVE_OXYGEN_SPECIES_PATHWAY 1.000 1
## SPERMATOGENESIS SPERMATOGENESIS 1.000 1
## UNFOLDED_PROTEIN_RESPONSE UNFOLDED_PROTEIN_RESPONSE 1.000 1
## UV_RESPONSE_DN UV_RESPONSE_DN 1.000 1
## UV_RESPONSE_UP UV_RESPONSE_UP 1.000 1
## WNT_BETA_CATENIN_SIGNALING WNT_BETA_CATENIN_SIGNALING 1.000 1
## XENOBIOTIC_METABOLISM XENOBIOTIC_METABOLISM 1.000 1
## signature geneset overlap background
## INFLAMMATORY_RESPONSE 73 200 18 1300
## TNFA_SIGNALING_VIA_NFKB 73 200 16 1300
## ALLOGRAFT_REJECTION 73 200 14 1300
## IL6_JAK_STAT3_SIGNALING 73 87 6 1300
## INTERFERON_GAMMA_RESPONSE 73 200 11 1300
## ANGIOGENESIS 73 36 2 1300
## KRAS_SIGNALING_UP 73 200 9 1300
## NOTCH_SIGNALING 73 32 1 1300
## EPITHELIAL_MESENCHYMAL_TRANSITION 73 200 8 1300
## APOPTOSIS 73 161 6 1300
## APICAL_SURFACE 73 44 1 1300
## INTERFERON_ALPHA_RESPONSE 73 97 3 1300
## PROTEIN_SECRETION 73 96 3 1300
## COMPLEMENT 73 200 7 1300
## COAGULATION 73 138 4 1300
## TGF_BETA_SIGNALING 73 54 1 1300
## APICAL_JUNCTION 73 200 6 1300
## IL2_STAT5_SIGNALING 73 199 6 1300
## HYPOXIA 73 200 5 1300
## PI3K_AKT_MTOR_SIGNALING 73 105 2 1300
## ADIPOGENESIS 73 200 0 1300
## ANDROGEN_RESPONSE 73 100 0 1300
## BILE_ACID_METABOLISM 73 112 0 1300
## CHOLESTEROL_HOMEOSTASIS 73 74 0 1300
## DNA_REPAIR 73 150 0 1300
## E2F_TARGETS 73 200 1 1300
## ESTROGEN_RESPONSE_EARLY 73 200 1 1300
## ESTROGEN_RESPONSE_LATE 73 200 1 1300
## FATTY_ACID_METABOLISM 73 158 1 1300
## G2M_CHECKPOINT 73 200 1 1300
## GLYCOLYSIS 73 200 4 1300
## HEDGEHOG_SIGNALING 73 36 0 1300
## HEME_METABOLISM 73 200 0 1300
## KRAS_SIGNALING_DN 73 200 1 1300
## MITOTIC_SPINDLE 73 199 1 1300
## MTORC1_SIGNALING 73 200 0 1300
## MYC_TARGETS_V1 73 200 0 1300
## MYC_TARGETS_V2 73 58 0 1300
## MYOGENESIS 73 200 0 1300
## OXIDATIVE_PHOSPHORYLATION 73 200 0 1300
## P53_PATHWAY 73 200 2 1300
## PANCREAS_BETA_CELLS 73 40 0 1300
## PEROXISOME 73 104 0 1300
## REACTIVE_OXYGEN_SPECIES_PATHWAY 73 49 0 1300
## SPERMATOGENESIS 73 135 1 1300
## UNFOLDED_PROTEIN_RESPONSE 73 113 1 1300
## UV_RESPONSE_DN 73 144 2 1300
## UV_RESPONSE_UP 73 158 3 1300
## WNT_BETA_CATENIN_SIGNALING 73 42 0 1300
## XENOBIOTIC_METABOLISM 73 200 2 1300
## hits
## INFLAMMATORY_RESPONSE CCL2,CCL20,CD40,CD55,CD69,CD70,CXCL10,CXCL11,CXCL6,CXCL8,ICAM1,IL10,IL18,IL1B,IL6,NLRP3,SERPINE1,TLR3
## TNFA_SIGNALING_VIA_NFKB BIRC3,CCL2,CCL20,CD69,CD80,CD83,CSF2,CXCL10,CXCL11,CXCL6,FOS,ICAM1,IL18,IL1B,IL6,SERPINE1
## ALLOGRAFT_REJECTION CCL2,CD40,CD80,CD86,EGFR,FCGR2B,ICAM1,IL10,IL18,IL1B,IL6,MMP9,NLRP3,TLR3
## IL6_JAK_STAT3_SIGNALING CSF2,CXCL10,CXCL11,IL1B,IL6,STAT3
## INTERFERON_GAMMA_RESPONSE CASP1,CCL2,CD40,CD69,CD86,CXCL10,CXCL11,HLA-B,ICAM1,IL6,STAT3
## ANGIOGENESIS CXCL6,VAV2
## KRAS_SIGNALING_UP BIRC3,CCL20,CSF2,CXCL10,IL1B,IL33,MMP9,PDCD1LG2,SLPI
## NOTCH_SIGNALING WNT5A
## EPITHELIAL_MESENCHYMAL_TRANSITION CD59,CXCL6,CXCL8,IL6,MMP3,SERPINE1,TNFRSF11B,WNT5A
## APOPTOSIS BIRC3,CASP1,CD69,IL18,IL1B,IL6
## APICAL_SURFACE PCSK9
## INTERFERON_ALPHA_RESPONSE CASP1,CXCL10,CXCL11
## PROTEIN_SECRETION CD63,EGFR,VAMP3
## COMPLEMENT CASP1,CD55,CD59,IL6,MMP8,PCSK9,SERPINE1
## COAGULATION MMP3,MMP8,MMP9,SERPINE1
## TGF_BETA_SIGNALING SERPINE1
## APICAL_JUNCTION CD86,EGFR,ICAM1,MMP9,TNFRSF11B,VAV2
## IL2_STAT5_SIGNALING CD83,CD86,CSF2,CXCL10,IL10,TNFSF11
## HYPOXIA EGFR,FOS,IL6,MIF,SERPINE1
## PI3K_AKT_MTOR_SIGNALING CDK1,EGFR
## ADIPOGENESIS
## ANDROGEN_RESPONSE
## BILE_ACID_METABOLISM
## CHOLESTEROL_HOMEOSTASIS
## DNA_REPAIR
## E2F_TARGETS CDK1
## ESTROGEN_RESPONSE_EARLY FOS
## ESTROGEN_RESPONSE_LATE FOS
## FATTY_ACID_METABOLISM MIF
## G2M_CHECKPOINT CDK1
## GLYCOLYSIS CDK1,EGFR,MIF,NANP
## HEDGEHOG_SIGNALING
## HEME_METABOLISM
## KRAS_SIGNALING_DN CD80
## MITOTIC_SPINDLE CDK1
## MTORC1_SIGNALING
## MYC_TARGETS_V1
## MYC_TARGETS_V2
## MYOGENESIS
## OXIDATIVE_PHOSPHORYLATION
## P53_PATHWAY CASP1,FOS
## PANCREAS_BETA_CELLS
## PEROXISOME
## REACTIVE_OXYGEN_SPECIES_PATHWAY
## SPERMATOGENESIS CDK1
## UNFOLDED_PROTEIN_RESPONSE CCL2
## UV_RESPONSE_DN SERPINE1,VAV2
## UV_RESPONSE_UP FOS,ICAM1,IL6
## WNT_BETA_CATENIN_SIGNALING
## XENOBIOTIC_METABOLISM CCL25,SERPINE1
##
## $pml
## label pval fdr
## ALLOGRAFT_REJECTION ALLOGRAFT_REJECTION 0.071 1
## IL6_JAK_STAT3_SIGNALING IL6_JAK_STAT3_SIGNALING 0.150 1
## INFLAMMATORY_RESPONSE INFLAMMATORY_RESPONSE 0.280 1
## TNFA_SIGNALING_VIA_NFKB TNFA_SIGNALING_VIA_NFKB 0.450 1
## INTERFERON_GAMMA_RESPONSE INTERFERON_GAMMA_RESPONSE 0.630 1
## PI3K_AKT_MTOR_SIGNALING PI3K_AKT_MTOR_SIGNALING 0.950 1
## ANGIOGENESIS ANGIOGENESIS 0.960 1
## APOPTOSIS APOPTOSIS 0.970 1
## COAGULATION COAGULATION 0.980 1
## COMPLEMENT COMPLEMENT 0.990 1
## NOTCH_SIGNALING NOTCH_SIGNALING 0.990 1
## REACTIVE_OXYGEN_SPECIES_PATHWAY REACTIVE_OXYGEN_SPECIES_PATHWAY 0.990 1
## ADIPOGENESIS ADIPOGENESIS 1.000 1
## ANDROGEN_RESPONSE ANDROGEN_RESPONSE 1.000 1
## APICAL_JUNCTION APICAL_JUNCTION 1.000 1
## APICAL_SURFACE APICAL_SURFACE 1.000 1
## BILE_ACID_METABOLISM BILE_ACID_METABOLISM 1.000 1
## CHOLESTEROL_HOMEOSTASIS CHOLESTEROL_HOMEOSTASIS 1.000 1
## DNA_REPAIR DNA_REPAIR 1.000 1
## E2F_TARGETS E2F_TARGETS 1.000 1
## EPITHELIAL_MESENCHYMAL_TRANSITION EPITHELIAL_MESENCHYMAL_TRANSITION 1.000 1
## ESTROGEN_RESPONSE_EARLY ESTROGEN_RESPONSE_EARLY 1.000 1
## ESTROGEN_RESPONSE_LATE ESTROGEN_RESPONSE_LATE 1.000 1
## FATTY_ACID_METABOLISM FATTY_ACID_METABOLISM 1.000 1
## G2M_CHECKPOINT G2M_CHECKPOINT 1.000 1
## GLYCOLYSIS GLYCOLYSIS 1.000 1
## HEDGEHOG_SIGNALING HEDGEHOG_SIGNALING 1.000 1
## HEME_METABOLISM HEME_METABOLISM 1.000 1
## HYPOXIA HYPOXIA 1.000 1
## IL2_STAT5_SIGNALING IL2_STAT5_SIGNALING 1.000 1
## INTERFERON_ALPHA_RESPONSE INTERFERON_ALPHA_RESPONSE 1.000 1
## KRAS_SIGNALING_DN KRAS_SIGNALING_DN 1.000 1
## KRAS_SIGNALING_UP KRAS_SIGNALING_UP 1.000 1
## MITOTIC_SPINDLE MITOTIC_SPINDLE 1.000 1
## MTORC1_SIGNALING MTORC1_SIGNALING 1.000 1
## MYC_TARGETS_V1 MYC_TARGETS_V1 1.000 1
## MYC_TARGETS_V2 MYC_TARGETS_V2 1.000 1
## MYOGENESIS MYOGENESIS 1.000 1
## OXIDATIVE_PHOSPHORYLATION OXIDATIVE_PHOSPHORYLATION 1.000 1
## P53_PATHWAY P53_PATHWAY 1.000 1
## PANCREAS_BETA_CELLS PANCREAS_BETA_CELLS 1.000 1
## PEROXISOME PEROXISOME 1.000 1
## PROTEIN_SECRETION PROTEIN_SECRETION 1.000 1
## SPERMATOGENESIS SPERMATOGENESIS 1.000 1
## TGF_BETA_SIGNALING TGF_BETA_SIGNALING 1.000 1
## UNFOLDED_PROTEIN_RESPONSE UNFOLDED_PROTEIN_RESPONSE 1.000 1
## UV_RESPONSE_DN UV_RESPONSE_DN 1.000 1
## UV_RESPONSE_UP UV_RESPONSE_UP 1.000 1
## WNT_BETA_CATENIN_SIGNALING WNT_BETA_CATENIN_SIGNALING 1.000 1
## XENOBIOTIC_METABOLISM XENOBIOTIC_METABOLISM 1.000 1
## signature geneset overlap background
## ALLOGRAFT_REJECTION 169 200 33 1300
## IL6_JAK_STAT3_SIGNALING 169 87 15 1300
## INFLAMMATORY_RESPONSE 169 200 29 1300
## TNFA_SIGNALING_VIA_NFKB 169 200 27 1300
## INTERFERON_GAMMA_RESPONSE 169 200 25 1300
## PI3K_AKT_MTOR_SIGNALING 169 105 9 1300
## ANGIOGENESIS 169 36 2 1300
## APOPTOSIS 169 161 14 1300
## COAGULATION 169 138 11 1300
## COMPLEMENT 169 200 17 1300
## NOTCH_SIGNALING 169 32 1 1300
## REACTIVE_OXYGEN_SPECIES_PATHWAY 169 49 2 1300
## ADIPOGENESIS 169 200 1 1300
## ANDROGEN_RESPONSE 169 100 0 1300
## APICAL_JUNCTION 169 200 11 1300
## APICAL_SURFACE 169 44 1 1300
## BILE_ACID_METABOLISM 169 112 1 1300
## CHOLESTEROL_HOMEOSTASIS 169 74 0 1300
## DNA_REPAIR 169 150 0 1300
## E2F_TARGETS 169 200 4 1300
## EPITHELIAL_MESENCHYMAL_TRANSITION 169 200 13 1300
## ESTROGEN_RESPONSE_EARLY 169 200 2 1300
## ESTROGEN_RESPONSE_LATE 169 200 3 1300
## FATTY_ACID_METABOLISM 169 158 1 1300
## G2M_CHECKPOINT 169 200 4 1300
## GLYCOLYSIS 169 200 6 1300
## HEDGEHOG_SIGNALING 169 36 0 1300
## HEME_METABOLISM 169 200 1 1300
## HYPOXIA 169 200 10 1300
## IL2_STAT5_SIGNALING 169 199 12 1300
## INTERFERON_ALPHA_RESPONSE 169 97 5 1300
## KRAS_SIGNALING_DN 169 200 3 1300
## KRAS_SIGNALING_UP 169 200 14 1300
## MITOTIC_SPINDLE 169 199 2 1300
## MTORC1_SIGNALING 169 200 2 1300
## MYC_TARGETS_V1 169 200 2 1300
## MYC_TARGETS_V2 169 58 2 1300
## MYOGENESIS 169 200 0 1300
## OXIDATIVE_PHOSPHORYLATION 169 200 0 1300
## P53_PATHWAY 169 200 4 1300
## PANCREAS_BETA_CELLS 169 40 1 1300
## PEROXISOME 169 104 0 1300
## PROTEIN_SECRETION 169 96 5 1300
## SPERMATOGENESIS 169 135 3 1300
## TGF_BETA_SIGNALING 169 54 1 1300
## UNFOLDED_PROTEIN_RESPONSE 169 113 1 1300
## UV_RESPONSE_DN 169 144 4 1300
## UV_RESPONSE_UP 169 158 7 1300
## WNT_BETA_CATENIN_SIGNALING 169 42 1 1300
## XENOBIOTIC_METABOLISM 169 200 5 1300
## hits
## ALLOGRAFT_REJECTION CCL11,CCL2,CCL22,CCR1,CCR2,CCR5,CD2,CD40,CD80,CD86,EGFR,FASLG,FCGR2B,ICAM1,IL10,IL13,IL15,IL18,IL1B,IL2,IL4,IL6,IRF4,MBL2,MMP9,NCR1,NLRP3,RIPK2,STAT1,TLR1,TLR2,TLR3,TNF
## IL6_JAK_STAT3_SIGNALING CCR1,CD38,CSF2,CXCL1,CXCL10,CXCL11,CXCL3,HMOX1,IL1B,IL6,MYD88,STAT1,STAT3,TLR2,TNF
## INFLAMMATORY_RESPONSE C5AR1,CCL2,CCL20,CCL22,CCR7,CD40,CD55,CD69,CD70,CXCL10,CXCL11,CXCL6,CXCL8,ICAM1,IL10,IL15,IL18,IL1B,IL6,MARCO,MYC,NFKBIA,NLRP3,NOD2,RIPK2,SERPINE1,TLR1,TLR2,TLR3
## TNFA_SIGNALING_VIA_NFKB BIRC3,CCL2,CCL20,CD69,CD80,CD83,CSF2,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,DDX58,FOS,ICAM1,IL18,IL1B,IL6,MYC,NFKBIA,PTGS2,RIPK2,SERPINE1,TLR2,TNF,TNFAIP3
## INTERFERON_GAMMA_RESPONSE CASP1,CASP3,CCL2,CD274,CD38,CD40,CD69,CD86,CFH,CXCL10,CXCL11,DDX58,HLA-B,ICAM1,IL15,IL6,IRF4,MYD88,NFKBIA,NOD1,PTGS2,RIPK2,STAT1,STAT3,TNFAIP3
## PI3K_AKT_MTOR_SIGNALING CDK1,CDK4,CXCR4,EGFR,FASLG,IL4,MAPK8,MYD88,NOD1
## ANGIOGENESIS CXCL6,VAV2
## APOPTOSIS BIRC3,CASP1,CASP3,CAV1,CD2,CD38,CD69,FASLG,HMOX1,IL18,IL1B,IL6,MMP2,TNF
## COAGULATION APOA1,C3,CFH,DPP4,MBL2,MMP2,MMP3,MMP8,MMP9,SERPINE1,VWF
## COMPLEMENT C3,CASP1,CASP3,CD46,CD55,CD59,CFH,CTSC,CXCL1,DPP4,IL6,MMP13,MMP8,PCSK9,SERPINE1,SRC,TNFAIP3
## NOTCH_SIGNALING WNT5A
## REACTIVE_OXYGEN_SPECIES_PATHWAY MPO,MSRA
## ADIPOGENESIS C3
## ANDROGEN_RESPONSE
## APICAL_JUNCTION CD274,CD34,CD86,EGFR,ICAM1,MMP2,MMP9,SRC,TNFRSF11B,VAV2,VWF
## APICAL_SURFACE PCSK9
## BILE_ACID_METABOLISM APOA1
## CHOLESTEROL_HOMEOSTASIS
## DNA_REPAIR
## E2F_TARGETS CDK1,CDK4,DNMT1,MYC
## EPITHELIAL_MESENCHYMAL_TRANSITION CD59,CXCL1,CXCL6,CXCL8,IL15,IL6,LOX,MMP2,MMP3,SERPINE1,TNFAIP3,TNFRSF11B,WNT5A
## ESTROGEN_RESPONSE_EARLY FOS,MYC
## ESTROGEN_RESPONSE_LATE CAV1,FOS,GALE
## FATTY_ACID_METABOLISM MIF
## G2M_CHECKPOINT CDK1,CDK4,EGF,MYC
## GLYCOLYSIS CDK1,CXCR4,EGFR,GALE,MIF,NANP
## HEDGEHOG_SIGNALING
## HEME_METABOLISM C3
## HYPOXIA CAV1,CXCR4,EGFR,FOS,HMOX1,IL6,LOX,MIF,SERPINE1,TNFAIP3
## IL2_STAT5_SIGNALING BATF3,CASP3,CD83,CD86,CSF2,CTLA4,CXCL10,IL10,IL13,IRF4,MYC,TNFSF11
## INTERFERON_ALPHA_RESPONSE CASP1,CXCL10,CXCL11,IL15,RIPK2
## KRAS_SIGNALING_DN CD80,EGF,GP2
## KRAS_SIGNALING_UP BIRC3,CCL20,CFH,CSF2,CXCL10,CXCR4,IL1B,IL33,LY96,MMP9,PDCD1LG2,PTGS2,SLPI,TNFAIP3
## MITOTIC_SPINDLE CDC42,CDK1
## MTORC1_SIGNALING CTSC,CXCR4
## MYC_TARGETS_V1 CDK4,MYC
## MYC_TARGETS_V2 CDK4,MYC
## MYOGENESIS
## OXIDATIVE_PHOSPHORYLATION
## P53_PATHWAY CASP1,FOS,HMOX1,IRAK1
## PANCREAS_BETA_CELLS DPP4
## PEROXISOME
## PROTEIN_SECRETION CD63,CTSC,EGFR,RAB14,VAMP3
## SPERMATOGENESIS CDK1,CFTR,SIRT1
## TGF_BETA_SIGNALING SERPINE1
## UNFOLDED_PROTEIN_RESPONSE CCL2
## UV_RESPONSE_DN CAV1,MYC,SERPINE1,VAV2
## UV_RESPONSE_UP CASP3,CXCL2,FOS,HMOX1,ICAM1,IL6,NFKBIA
## WNT_BETA_CATENIN_SIGNALING MYC
## XENOBIOTIC_METABOLISM CCL25,CRP,HMOX1,MBL2,SERPINE1
hyp_dots(hyp_mic2, merge = T, fdr = 0.1, title = "Hallmark(bck=all)")
hyp_mic2$as.list()
## $cancer
## label pval
## INFLAMMATORY_RESPONSE INFLAMMATORY_RESPONSE 9.4e-22
## TNFA_SIGNALING_VIA_NFKB TNFA_SIGNALING_VIA_NFKB 1.5e-18
## ALLOGRAFT_REJECTION ALLOGRAFT_REJECTION 1.6e-15
## INTERFERON_GAMMA_RESPONSE INTERFERON_GAMMA_RESPONSE 2.9e-11
## KRAS_SIGNALING_UP KRAS_SIGNALING_UP 1.2e-08
## EPITHELIAL_MESENCHYMAL_TRANSITION EPITHELIAL_MESENCHYMAL_TRANSITION 2.0e-07
## IL6_JAK_STAT3_SIGNALING IL6_JAK_STAT3_SIGNALING 3.0e-07
## COMPLEMENT COMPLEMENT 3.0e-06
## APOPTOSIS APOPTOSIS 1.1e-05
## IL2_STAT5_SIGNALING IL2_STAT5_SIGNALING 3.7e-05
## APICAL_JUNCTION APICAL_JUNCTION 3.8e-05
## HYPOXIA HYPOXIA 4.0e-04
## COAGULATION COAGULATION 9.1e-04
## PROTEIN_SECRETION PROTEIN_SECRETION 3.4e-03
## GLYCOLYSIS GLYCOLYSIS 3.5e-03
## INTERFERON_ALPHA_RESPONSE INTERFERON_ALPHA_RESPONSE 3.5e-03
## ANGIOGENESIS ANGIOGENESIS 5.6e-03
## UV_RESPONSE_UP UV_RESPONSE_UP 1.3e-02
## PI3K_AKT_MTOR_SIGNALING PI3K_AKT_MTOR_SIGNALING 4.2e-02
## UV_RESPONSE_DN UV_RESPONSE_DN 7.4e-02
## NOTCH_SIGNALING NOTCH_SIGNALING 9.5e-02
## APICAL_SURFACE APICAL_SURFACE 1.3e-01
## P53_PATHWAY P53_PATHWAY 1.3e-01
## XENOBIOTIC_METABOLISM XENOBIOTIC_METABOLISM 1.3e-01
## TGF_BETA_SIGNALING TGF_BETA_SIGNALING 1.6e-01
## UNFOLDED_PROTEIN_RESPONSE UNFOLDED_PROTEIN_RESPONSE 3.0e-01
## SPERMATOGENESIS SPERMATOGENESIS 3.4e-01
## FATTY_ACID_METABOLISM FATTY_ACID_METABOLISM 3.9e-01
## MITOTIC_SPINDLE MITOTIC_SPINDLE 4.6e-01
## E2F_TARGETS E2F_TARGETS 4.7e-01
## ESTROGEN_RESPONSE_EARLY ESTROGEN_RESPONSE_EARLY 4.7e-01
## ESTROGEN_RESPONSE_LATE ESTROGEN_RESPONSE_LATE 4.7e-01
## G2M_CHECKPOINT G2M_CHECKPOINT 4.7e-01
## KRAS_SIGNALING_DN KRAS_SIGNALING_DN 4.7e-01
## ADIPOGENESIS ADIPOGENESIS 1.0e+00
## ANDROGEN_RESPONSE ANDROGEN_RESPONSE 1.0e+00
## BILE_ACID_METABOLISM BILE_ACID_METABOLISM 1.0e+00
## CHOLESTEROL_HOMEOSTASIS CHOLESTEROL_HOMEOSTASIS 1.0e+00
## DNA_REPAIR DNA_REPAIR 1.0e+00
## HEDGEHOG_SIGNALING HEDGEHOG_SIGNALING 1.0e+00
## HEME_METABOLISM HEME_METABOLISM 1.0e+00
## MTORC1_SIGNALING MTORC1_SIGNALING 1.0e+00
## MYC_TARGETS_V1 MYC_TARGETS_V1 1.0e+00
## MYC_TARGETS_V2 MYC_TARGETS_V2 1.0e+00
## MYOGENESIS MYOGENESIS 1.0e+00
## OXIDATIVE_PHOSPHORYLATION OXIDATIVE_PHOSPHORYLATION 1.0e+00
## PANCREAS_BETA_CELLS PANCREAS_BETA_CELLS 1.0e+00
## PEROXISOME PEROXISOME 1.0e+00
## REACTIVE_OXYGEN_SPECIES_PATHWAY REACTIVE_OXYGEN_SPECIES_PATHWAY 1.0e+00
## WNT_BETA_CATENIN_SIGNALING WNT_BETA_CATENIN_SIGNALING 1.0e+00
## fdr signature geneset overlap background
## INFLAMMATORY_RESPONSE 4.7e-20 73 200 18 23467
## TNFA_SIGNALING_VIA_NFKB 3.6e-17 73 200 16 23467
## ALLOGRAFT_REJECTION 2.7e-14 73 200 14 23467
## INTERFERON_GAMMA_RESPONSE 3.7e-10 73 200 11 23467
## KRAS_SIGNALING_UP 1.2e-07 73 200 9 23467
## EPITHELIAL_MESENCHYMAL_TRANSITION 1.7e-06 73 200 8 23467
## IL6_JAK_STAT3_SIGNALING 2.2e-06 73 87 6 23467
## COMPLEMENT 1.9e-05 73 200 7 23467
## APOPTOSIS 6.1e-05 73 161 6 23467
## IL2_STAT5_SIGNALING 1.7e-04 73 199 6 23467
## APICAL_JUNCTION 1.7e-04 73 200 6 23467
## HYPOXIA 1.7e-03 73 200 5 23467
## COAGULATION 3.5e-03 73 138 4 23467
## PROTEIN_SECRETION 1.1e-02 73 96 3 23467
## GLYCOLYSIS 1.1e-02 73 200 4 23467
## INTERFERON_ALPHA_RESPONSE 1.1e-02 73 97 3 23467
## ANGIOGENESIS 1.7e-02 73 36 2 23467
## UV_RESPONSE_UP 3.7e-02 73 158 3 23467
## PI3K_AKT_MTOR_SIGNALING 1.1e-01 73 105 2 23467
## UV_RESPONSE_DN 1.9e-01 73 144 2 23467
## NOTCH_SIGNALING 2.3e-01 73 32 1 23467
## APICAL_SURFACE 2.7e-01 73 44 1 23467
## P53_PATHWAY 2.7e-01 73 200 2 23467
## XENOBIOTIC_METABOLISM 2.7e-01 73 200 2 23467
## TGF_BETA_SIGNALING 3.1e-01 73 54 1 23467
## UNFOLDED_PROTEIN_RESPONSE 5.7e-01 73 113 1 23467
## SPERMATOGENESIS 6.4e-01 73 135 1 23467
## FATTY_ACID_METABOLISM 6.8e-01 73 158 1 23467
## MITOTIC_SPINDLE 6.8e-01 73 199 1 23467
## E2F_TARGETS 6.8e-01 73 200 1 23467
## ESTROGEN_RESPONSE_EARLY 6.8e-01 73 200 1 23467
## ESTROGEN_RESPONSE_LATE 6.8e-01 73 200 1 23467
## G2M_CHECKPOINT 6.8e-01 73 200 1 23467
## KRAS_SIGNALING_DN 6.8e-01 73 200 1 23467
## ADIPOGENESIS 1.0e+00 73 200 0 23467
## ANDROGEN_RESPONSE 1.0e+00 73 100 0 23467
## BILE_ACID_METABOLISM 1.0e+00 73 112 0 23467
## CHOLESTEROL_HOMEOSTASIS 1.0e+00 73 74 0 23467
## DNA_REPAIR 1.0e+00 73 150 0 23467
## HEDGEHOG_SIGNALING 1.0e+00 73 36 0 23467
## HEME_METABOLISM 1.0e+00 73 200 0 23467
## MTORC1_SIGNALING 1.0e+00 73 200 0 23467
## MYC_TARGETS_V1 1.0e+00 73 200 0 23467
## MYC_TARGETS_V2 1.0e+00 73 58 0 23467
## MYOGENESIS 1.0e+00 73 200 0 23467
## OXIDATIVE_PHOSPHORYLATION 1.0e+00 73 200 0 23467
## PANCREAS_BETA_CELLS 1.0e+00 73 40 0 23467
## PEROXISOME 1.0e+00 73 104 0 23467
## REACTIVE_OXYGEN_SPECIES_PATHWAY 1.0e+00 73 49 0 23467
## WNT_BETA_CATENIN_SIGNALING 1.0e+00 73 42 0 23467
## hits
## INFLAMMATORY_RESPONSE CCL2,CCL20,CD40,CD55,CD69,CD70,CXCL10,CXCL11,CXCL6,CXCL8,ICAM1,IL10,IL18,IL1B,IL6,NLRP3,SERPINE1,TLR3
## TNFA_SIGNALING_VIA_NFKB BIRC3,CCL2,CCL20,CD69,CD80,CD83,CSF2,CXCL10,CXCL11,CXCL6,FOS,ICAM1,IL18,IL1B,IL6,SERPINE1
## ALLOGRAFT_REJECTION CCL2,CD40,CD80,CD86,EGFR,FCGR2B,ICAM1,IL10,IL18,IL1B,IL6,MMP9,NLRP3,TLR3
## INTERFERON_GAMMA_RESPONSE CASP1,CCL2,CD40,CD69,CD86,CXCL10,CXCL11,HLA-B,ICAM1,IL6,STAT3
## KRAS_SIGNALING_UP BIRC3,CCL20,CSF2,CXCL10,IL1B,IL33,MMP9,PDCD1LG2,SLPI
## EPITHELIAL_MESENCHYMAL_TRANSITION CD59,CXCL6,CXCL8,IL6,MMP3,SERPINE1,TNFRSF11B,WNT5A
## IL6_JAK_STAT3_SIGNALING CSF2,CXCL10,CXCL11,IL1B,IL6,STAT3
## COMPLEMENT CASP1,CD55,CD59,IL6,MMP8,PCSK9,SERPINE1
## APOPTOSIS BIRC3,CASP1,CD69,IL18,IL1B,IL6
## IL2_STAT5_SIGNALING CD83,CD86,CSF2,CXCL10,IL10,TNFSF11
## APICAL_JUNCTION CD86,EGFR,ICAM1,MMP9,TNFRSF11B,VAV2
## HYPOXIA EGFR,FOS,IL6,MIF,SERPINE1
## COAGULATION MMP3,MMP8,MMP9,SERPINE1
## PROTEIN_SECRETION CD63,EGFR,VAMP3
## GLYCOLYSIS CDK1,EGFR,MIF,NANP
## INTERFERON_ALPHA_RESPONSE CASP1,CXCL10,CXCL11
## ANGIOGENESIS CXCL6,VAV2
## UV_RESPONSE_UP FOS,ICAM1,IL6
## PI3K_AKT_MTOR_SIGNALING CDK1,EGFR
## UV_RESPONSE_DN SERPINE1,VAV2
## NOTCH_SIGNALING WNT5A
## APICAL_SURFACE PCSK9
## P53_PATHWAY CASP1,FOS
## XENOBIOTIC_METABOLISM CCL25,SERPINE1
## TGF_BETA_SIGNALING SERPINE1
## UNFOLDED_PROTEIN_RESPONSE CCL2
## SPERMATOGENESIS CDK1
## FATTY_ACID_METABOLISM MIF
## MITOTIC_SPINDLE CDK1
## E2F_TARGETS CDK1
## ESTROGEN_RESPONSE_EARLY FOS
## ESTROGEN_RESPONSE_LATE FOS
## G2M_CHECKPOINT CDK1
## KRAS_SIGNALING_DN CD80
## ADIPOGENESIS
## ANDROGEN_RESPONSE
## BILE_ACID_METABOLISM
## CHOLESTEROL_HOMEOSTASIS
## DNA_REPAIR
## HEDGEHOG_SIGNALING
## HEME_METABOLISM
## MTORC1_SIGNALING
## MYC_TARGETS_V1
## MYC_TARGETS_V2
## MYOGENESIS
## OXIDATIVE_PHOSPHORYLATION
## PANCREAS_BETA_CELLS
## PEROXISOME
## REACTIVE_OXYGEN_SPECIES_PATHWAY
## WNT_BETA_CATENIN_SIGNALING
##
## $pml
## label pval
## ALLOGRAFT_REJECTION ALLOGRAFT_REJECTION 1.7e-35
## INFLAMMATORY_RESPONSE INFLAMMATORY_RESPONSE 1.6e-29
## TNFA_SIGNALING_VIA_NFKB TNFA_SIGNALING_VIA_NFKB 1.1e-26
## INTERFERON_GAMMA_RESPONSE INTERFERON_GAMMA_RESPONSE 6.8e-24
## IL6_JAK_STAT3_SIGNALING IL6_JAK_STAT3_SIGNALING 6.5e-17
## COMPLEMENT COMPLEMENT 9.8e-14
## APOPTOSIS APOPTOSIS 1.2e-11
## KRAS_SIGNALING_UP KRAS_SIGNALING_UP 2.2e-10
## EPITHELIAL_MESENCHYMAL_TRANSITION EPITHELIAL_MESENCHYMAL_TRANSITION 2.4e-09
## COAGULATION COAGULATION 5.1e-09
## IL2_STAT5_SIGNALING IL2_STAT5_SIGNALING 2.4e-08
## PI3K_AKT_MTOR_SIGNALING PI3K_AKT_MTOR_SIGNALING 7.0e-08
## APICAL_JUNCTION APICAL_JUNCTION 2.3e-07
## HYPOXIA HYPOXIA 2.0e-06
## UV_RESPONSE_UP UV_RESPONSE_UP 1.5e-04
## PROTEIN_SECRETION PROTEIN_SECRETION 6.6e-04
## INTERFERON_ALPHA_RESPONSE INTERFERON_ALPHA_RESPONSE 6.9e-04
## GLYCOLYSIS GLYCOLYSIS 3.3e-03
## XENOBIOTIC_METABOLISM XENOBIOTIC_METABOLISM 1.5e-02
## UV_RESPONSE_DN UV_RESPONSE_DN 2.0e-02
## ANGIOGENESIS ANGIOGENESIS 2.8e-02
## REACTIVE_OXYGEN_SPECIES_PATHWAY REACTIVE_OXYGEN_SPECIES_PATHWAY 4.9e-02
## E2F_TARGETS E2F_TARGETS 5.7e-02
## G2M_CHECKPOINT G2M_CHECKPOINT 5.7e-02
## P53_PATHWAY P53_PATHWAY 5.7e-02
## MYC_TARGETS_V2 MYC_TARGETS_V2 6.6e-02
## SPERMATOGENESIS SPERMATOGENESIS 7.4e-02
## ESTROGEN_RESPONSE_LATE ESTROGEN_RESPONSE_LATE 1.8e-01
## KRAS_SIGNALING_DN KRAS_SIGNALING_DN 1.8e-01
## NOTCH_SIGNALING NOTCH_SIGNALING 2.1e-01
## PANCREAS_BETA_CELLS PANCREAS_BETA_CELLS 2.5e-01
## WNT_BETA_CATENIN_SIGNALING WNT_BETA_CATENIN_SIGNALING 2.6e-01
## APICAL_SURFACE APICAL_SURFACE 2.7e-01
## TGF_BETA_SIGNALING TGF_BETA_SIGNALING 3.2e-01
## ESTROGEN_RESPONSE_EARLY ESTROGEN_RESPONSE_EARLY 4.2e-01
## MITOTIC_SPINDLE MITOTIC_SPINDLE 4.2e-01
## MTORC1_SIGNALING MTORC1_SIGNALING 4.2e-01
## MYC_TARGETS_V1 MYC_TARGETS_V1 4.2e-01
## BILE_ACID_METABOLISM BILE_ACID_METABOLISM 5.6e-01
## UNFOLDED_PROTEIN_RESPONSE UNFOLDED_PROTEIN_RESPONSE 5.6e-01
## FATTY_ACID_METABOLISM FATTY_ACID_METABOLISM 6.8e-01
## ADIPOGENESIS ADIPOGENESIS 7.7e-01
## HEME_METABOLISM HEME_METABOLISM 7.7e-01
## ANDROGEN_RESPONSE ANDROGEN_RESPONSE 1.0e+00
## CHOLESTEROL_HOMEOSTASIS CHOLESTEROL_HOMEOSTASIS 1.0e+00
## DNA_REPAIR DNA_REPAIR 1.0e+00
## HEDGEHOG_SIGNALING HEDGEHOG_SIGNALING 1.0e+00
## MYOGENESIS MYOGENESIS 1.0e+00
## OXIDATIVE_PHOSPHORYLATION OXIDATIVE_PHOSPHORYLATION 1.0e+00
## PEROXISOME PEROXISOME 1.0e+00
## fdr signature geneset overlap background
## ALLOGRAFT_REJECTION 8.3e-34 169 200 33 23467
## INFLAMMATORY_RESPONSE 3.9e-28 169 200 29 23467
## TNFA_SIGNALING_VIA_NFKB 1.9e-25 169 200 27 23467
## INTERFERON_GAMMA_RESPONSE 8.5e-23 169 200 25 23467
## IL6_JAK_STAT3_SIGNALING 6.5e-16 169 87 15 23467
## COMPLEMENT 8.2e-13 169 200 17 23467
## APOPTOSIS 8.4e-11 169 161 14 23467
## KRAS_SIGNALING_UP 1.4e-09 169 200 14 23467
## EPITHELIAL_MESENCHYMAL_TRANSITION 1.3e-08 169 200 13 23467
## COAGULATION 2.5e-08 169 138 11 23467
## IL2_STAT5_SIGNALING 1.1e-07 169 199 12 23467
## PI3K_AKT_MTOR_SIGNALING 2.9e-07 169 105 9 23467
## APICAL_JUNCTION 9.0e-07 169 200 11 23467
## HYPOXIA 7.1e-06 169 200 10 23467
## UV_RESPONSE_UP 5.1e-04 169 158 7 23467
## PROTEIN_SECRETION 2.0e-03 169 96 5 23467
## INTERFERON_ALPHA_RESPONSE 2.0e-03 169 97 5 23467
## GLYCOLYSIS 9.3e-03 169 200 6 23467
## XENOBIOTIC_METABOLISM 4.0e-02 169 200 5 23467
## UV_RESPONSE_DN 5.1e-02 169 144 4 23467
## ANGIOGENESIS 6.6e-02 169 36 2 23467
## REACTIVE_OXYGEN_SPECIES_PATHWAY 1.1e-01 169 49 2 23467
## E2F_TARGETS 1.1e-01 169 200 4 23467
## G2M_CHECKPOINT 1.1e-01 169 200 4 23467
## P53_PATHWAY 1.1e-01 169 200 4 23467
## MYC_TARGETS_V2 1.3e-01 169 58 2 23467
## SPERMATOGENESIS 1.4e-01 169 135 3 23467
## ESTROGEN_RESPONSE_LATE 3.0e-01 169 200 3 23467
## KRAS_SIGNALING_DN 3.0e-01 169 200 3 23467
## NOTCH_SIGNALING 3.4e-01 169 32 1 23467
## PANCREAS_BETA_CELLS 4.1e-01 169 40 1 23467
## WNT_BETA_CATENIN_SIGNALING 4.1e-01 169 42 1 23467
## APICAL_SURFACE 4.1e-01 169 44 1 23467
## TGF_BETA_SIGNALING 4.8e-01 169 54 1 23467
## ESTROGEN_RESPONSE_EARLY 5.6e-01 169 200 2 23467
## MITOTIC_SPINDLE 5.6e-01 169 199 2 23467
## MTORC1_SIGNALING 5.6e-01 169 200 2 23467
## MYC_TARGETS_V1 5.6e-01 169 200 2 23467
## BILE_ACID_METABOLISM 7.0e-01 169 112 1 23467
## UNFOLDED_PROTEIN_RESPONSE 7.0e-01 169 113 1 23467
## FATTY_ACID_METABOLISM 8.3e-01 169 158 1 23467
## ADIPOGENESIS 8.9e-01 169 200 1 23467
## HEME_METABOLISM 8.9e-01 169 200 1 23467
## ANDROGEN_RESPONSE 1.0e+00 169 100 0 23467
## CHOLESTEROL_HOMEOSTASIS 1.0e+00 169 74 0 23467
## DNA_REPAIR 1.0e+00 169 150 0 23467
## HEDGEHOG_SIGNALING 1.0e+00 169 36 0 23467
## MYOGENESIS 1.0e+00 169 200 0 23467
## OXIDATIVE_PHOSPHORYLATION 1.0e+00 169 200 0 23467
## PEROXISOME 1.0e+00 169 104 0 23467
## hits
## ALLOGRAFT_REJECTION CCL11,CCL2,CCL22,CCR1,CCR2,CCR5,CD2,CD40,CD80,CD86,EGFR,FASLG,FCGR2B,ICAM1,IL10,IL13,IL15,IL18,IL1B,IL2,IL4,IL6,IRF4,MBL2,MMP9,NCR1,NLRP3,RIPK2,STAT1,TLR1,TLR2,TLR3,TNF
## INFLAMMATORY_RESPONSE C5AR1,CCL2,CCL20,CCL22,CCR7,CD40,CD55,CD69,CD70,CXCL10,CXCL11,CXCL6,CXCL8,ICAM1,IL10,IL15,IL18,IL1B,IL6,MARCO,MYC,NFKBIA,NLRP3,NOD2,RIPK2,SERPINE1,TLR1,TLR2,TLR3
## TNFA_SIGNALING_VIA_NFKB BIRC3,CCL2,CCL20,CD69,CD80,CD83,CSF2,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,DDX58,FOS,ICAM1,IL18,IL1B,IL6,MYC,NFKBIA,PTGS2,RIPK2,SERPINE1,TLR2,TNF,TNFAIP3
## INTERFERON_GAMMA_RESPONSE CASP1,CASP3,CCL2,CD274,CD38,CD40,CD69,CD86,CFH,CXCL10,CXCL11,DDX58,HLA-B,ICAM1,IL15,IL6,IRF4,MYD88,NFKBIA,NOD1,PTGS2,RIPK2,STAT1,STAT3,TNFAIP3
## IL6_JAK_STAT3_SIGNALING CCR1,CD38,CSF2,CXCL1,CXCL10,CXCL11,CXCL3,HMOX1,IL1B,IL6,MYD88,STAT1,STAT3,TLR2,TNF
## COMPLEMENT C3,CASP1,CASP3,CD46,CD55,CD59,CFH,CTSC,CXCL1,DPP4,IL6,MMP13,MMP8,PCSK9,SERPINE1,SRC,TNFAIP3
## APOPTOSIS BIRC3,CASP1,CASP3,CAV1,CD2,CD38,CD69,FASLG,HMOX1,IL18,IL1B,IL6,MMP2,TNF
## KRAS_SIGNALING_UP BIRC3,CCL20,CFH,CSF2,CXCL10,CXCR4,IL1B,IL33,LY96,MMP9,PDCD1LG2,PTGS2,SLPI,TNFAIP3
## EPITHELIAL_MESENCHYMAL_TRANSITION CD59,CXCL1,CXCL6,CXCL8,IL15,IL6,LOX,MMP2,MMP3,SERPINE1,TNFAIP3,TNFRSF11B,WNT5A
## COAGULATION APOA1,C3,CFH,DPP4,MBL2,MMP2,MMP3,MMP8,MMP9,SERPINE1,VWF
## IL2_STAT5_SIGNALING BATF3,CASP3,CD83,CD86,CSF2,CTLA4,CXCL10,IL10,IL13,IRF4,MYC,TNFSF11
## PI3K_AKT_MTOR_SIGNALING CDK1,CDK4,CXCR4,EGFR,FASLG,IL4,MAPK8,MYD88,NOD1
## APICAL_JUNCTION CD274,CD34,CD86,EGFR,ICAM1,MMP2,MMP9,SRC,TNFRSF11B,VAV2,VWF
## HYPOXIA CAV1,CXCR4,EGFR,FOS,HMOX1,IL6,LOX,MIF,SERPINE1,TNFAIP3
## UV_RESPONSE_UP CASP3,CXCL2,FOS,HMOX1,ICAM1,IL6,NFKBIA
## PROTEIN_SECRETION CD63,CTSC,EGFR,RAB14,VAMP3
## INTERFERON_ALPHA_RESPONSE CASP1,CXCL10,CXCL11,IL15,RIPK2
## GLYCOLYSIS CDK1,CXCR4,EGFR,GALE,MIF,NANP
## XENOBIOTIC_METABOLISM CCL25,CRP,HMOX1,MBL2,SERPINE1
## UV_RESPONSE_DN CAV1,MYC,SERPINE1,VAV2
## ANGIOGENESIS CXCL6,VAV2
## REACTIVE_OXYGEN_SPECIES_PATHWAY MPO,MSRA
## E2F_TARGETS CDK1,CDK4,DNMT1,MYC
## G2M_CHECKPOINT CDK1,CDK4,EGF,MYC
## P53_PATHWAY CASP1,FOS,HMOX1,IRAK1
## MYC_TARGETS_V2 CDK4,MYC
## SPERMATOGENESIS CDK1,CFTR,SIRT1
## ESTROGEN_RESPONSE_LATE CAV1,FOS,GALE
## KRAS_SIGNALING_DN CD80,EGF,GP2
## NOTCH_SIGNALING WNT5A
## PANCREAS_BETA_CELLS DPP4
## WNT_BETA_CATENIN_SIGNALING MYC
## APICAL_SURFACE PCSK9
## TGF_BETA_SIGNALING SERPINE1
## ESTROGEN_RESPONSE_EARLY FOS,MYC
## MITOTIC_SPINDLE CDC42,CDK1
## MTORC1_SIGNALING CTSC,CXCR4
## MYC_TARGETS_V1 CDK4,MYC
## BILE_ACID_METABOLISM APOA1
## UNFOLDED_PROTEIN_RESPONSE CCL2
## FATTY_ACID_METABOLISM MIF
## ADIPOGENESIS C3
## HEME_METABOLISM C3
## ANDROGEN_RESPONSE
## CHOLESTEROL_HOMEOSTASIS
## DNA_REPAIR
## HEDGEHOG_SIGNALING
## MYOGENESIS
## OXIDATIVE_PHOSPHORYLATION
## PEROXISOME
hyp_mic3 <- hypeR(signature = msea_genes, genesets = REACTOME, background = 1300)
## cancer
## pml
hyp_mic4 <- hypeR(signature = msea_genes, genesets = REACTOME)
## cancer
## pml
hyp_dots(hyp_mic3, merge = T, fdr = 0.1, title = "Reactome(bck=1300)")
hyp_mic3$as.list()
## $cancer
## label
## Interleukin 10 Signaling Interleukin 10 Signaling
## Interleukin 1 Processing Interleukin 1 Processing
## Chemokine Receptors Bind Chemokines Chemokine Receptors Bind Chemokines
## Interleukin 4 And Interleukin 13 Signaling Interleukin 4 And Interleukin 13 Signaling
## Purinergic Signaling In Leishmaniasis Infection Purinergic Signaling In Leishmaniasis Infection
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells
## Pyroptosis Pyroptosis
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway
## Gastrin Creb Signalling Pathway Via Pkc And Mapk Gastrin Creb Signalling Pathway Via Pkc And Mapk
## Cd163 Mediating An Anti Inflammatory Response Cd163 Mediating An Anti Inflammatory Response
## Egfr Transactivation By Gastrin Egfr Transactivation By Gastrin
## Mapk3 Erk1 Activation Mapk3 Erk1 Activation
## Inflammasomes Inflammasomes
## Interleukin 6 Signaling Interleukin 6 Signaling
## Cd28 Dependent Vav1 Pathway Cd28 Dependent Vav1 Pathway
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling
## Trafficking And Processing Of Endosomal Tlr Trafficking And Processing Of Endosomal Tlr
## Regulated Necrosis Regulated Necrosis
## Tnfs Bind Their Physiological Receptors Tnfs Bind Their Physiological Receptors
## The Nlrp3 Inflammasome The Nlrp3 Inflammasome
## G2 M Dna Replication Checkpoint G2 M Dna Replication Checkpoint
## Mecp2 Regulates Transcription Factors Mecp2 Regulates Transcription Factors
## Runx2 Regulates Chondrocyte Maturation Runx2 Regulates Chondrocyte Maturation
## Activation Of Matrix Metalloproteinases Activation Of Matrix Metalloproteinases
## Clec7a Inflammasome Pathway Clec7a Inflammasome Pathway
## Fibronectin Matrix Formation Fibronectin Matrix Formation
## Phosphorylation Of Emi1 Phosphorylation Of Emi1
## Ptk6 Promotes Hif1a Stabilization Ptk6 Promotes Hif1a Stabilization
## Ticam1 Rip1 Mediated Ikk Complex Recruitment Ticam1 Rip1 Mediated Ikk Complex Recruitment
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death Tlr3 Mediated Ticam1 Dependent Programmed Cell Death
## Activation Of Nima Kinases Nek9 Nek6 Nek7 Activation Of Nima Kinases Nek9 Nek6 Nek7
## Creb Phosphorylation Creb Phosphorylation
## Ctla4 Inhibitory Signaling Ctla4 Inhibitory Signaling
## Interleukin 37 Signaling Interleukin 37 Signaling
## Signal Transduction By L1 Signal Transduction By L1
## Cd28 Dependent Pi3k Akt Signaling Cd28 Dependent Pi3k Akt Signaling
## Activation Of C3 And C5 Activation Of C3 And C5
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde
## Interleukin 18 Signaling Interleukin 18 Signaling
## Mecp2 Regulates Transcription Of Neuronal Ligands Mecp2 Regulates Transcription Of Neuronal Ligands
## Raf Independent Mapk1 3 Activation Raf Independent Mapk1 3 Activation
## Runx2 Regulates Genes Involved In Cell Migration Runx2 Regulates Genes Involved In Cell Migration
## Interleukin 6 Family Signaling Interleukin 6 Family Signaling
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members
## E2f Enabled Inhibition Of Pre Replication Complex Formation E2f Enabled Inhibition Of Pre Replication Complex Formation
## Egfr Interacts With Phospholipase C Gamma Egfr Interacts With Phospholipase C Gamma
## Extra Nuclear Estrogen Signaling Extra Nuclear Estrogen Signaling
## Interleukin 23 Signaling Interleukin 23 Signaling
## Interleukin 9 Signaling Interleukin 9 Signaling
## Mapk1 Erk2 Activation Mapk1 Erk2 Activation
## Activation Of The Ap 1 Family Of Transcription Factors Activation Of The Ap 1 Family Of Transcription Factors
## Akt Phosphorylates Targets In The Nucleus Akt Phosphorylates Targets In The Nucleus
## Camk Iv Mediated Phosphorylation Of Creb Camk Iv Mediated Phosphorylation Of Creb
## Interleukin 21 Signaling Interleukin 21 Signaling
## Mastl Facilitates Mitotic Progression Mastl Facilitates Mitotic Progression
## P75ntr Regulates Axonogenesis P75ntr Regulates Axonogenesis
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress
## Condensation Of Prometaphase Chromosomes Condensation Of Prometaphase Chromosomes
## Dap12 Interactions Dap12 Interactions
## Endosomal Vacuolar Pathway Endosomal Vacuolar Pathway
## Interleukin 27 Signaling Interleukin 27 Signaling
## Pd 1 Signaling Pd 1 Signaling
## Signaling By Leptin Signaling By Leptin
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex Ticam1 Traf6 Dependent Induction Of Tak1 Complex
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase
## Interleukin 35 Signalling Interleukin 35 Signalling
## Killing Mechanisms Killing Mechanisms
## Notch2 Intracellular Domain Regulates Transcription Notch2 Intracellular Domain Regulates Transcription
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants
## Tandem Pore Domain Potassium Channels Tandem Pore Domain Potassium Channels
## Ticam1 Dependent Activation Of Irf3 Irf7 Ticam1 Dependent Activation Of Irf3 Irf7
## Tp53 Regulates Transcription Of Caspase Activators And Caspases Tp53 Regulates Transcription Of Caspase Activators And Caspases
## Vldlr Internalisation And Degradation Vldlr Internalisation And Degradation
## Advanced Glycosylation Endproduct Receptor Signaling Advanced Glycosylation Endproduct Receptor Signaling
## Apoptosis Induced Dna Fragmentation Apoptosis Induced Dna Fragmentation
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex
## Diseases Of Immune System Diseases Of Immune System
## Dissolution Of Fibrin Clot Dissolution Of Fibrin Clot
## Erbb2 Activates Ptk6 Signaling Erbb2 Activates Ptk6 Signaling
## Irf3 Mediated Induction Of Type I Ifn Irf3 Mediated Induction Of Type I Ifn
## Mapk Targets Nuclear Events Mediated By Map Kinases Mapk Targets Nuclear Events Mediated By Map Kinases
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2
## Perk Regulates Gene Expression Perk Regulates Gene Expression
## Cd28 Co Stimulation Cd28 Co Stimulation
## Golgi Cisternae Pericentriolar Stack Reorganization Golgi Cisternae Pericentriolar Stack Reorganization
## Interleukin 15 Signaling Interleukin 15 Signaling
## Shc1 Events In Egfr Signaling Shc1 Events In Egfr Signaling
## Constitutive Signaling By Egfrviii Constitutive Signaling By Egfrviii
## Depolymerisation Of The Nuclear Lamina Depolymerisation Of The Nuclear Lamina
## Erbb2 Regulates Cell Motility Erbb2 Regulates Cell Motility
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors
## Wnt5a Dependent Internalization Of Fzd4 Wnt5a Dependent Internalization Of Fzd4
## Yap1 And Wwtr1 Taz Stimulated Gene Expression Yap1 And Wwtr1 Taz Stimulated Gene Expression
## Costimulation By The Cd28 Family Costimulation By The Cd28 Family
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc
## Grb2 Events In Erbb2 Signaling Grb2 Events In Erbb2 Signaling
## Nod1 2 Signaling Pathway Nod1 2 Signaling Pathway
## Pi3k Events In Erbb2 Signaling Pi3k Events In Erbb2 Signaling
## Signaling By Erbb2 Ecd Mutants Signaling By Erbb2 Ecd Mutants
## Sting Mediated Induction Of Host Immune Responses Sting Mediated Induction Of Host Immune Responses
## Sumoylation Of Dna Methylation Proteins Sumoylation Of Dna Methylation Proteins
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps
## Gab1 Signalosome Gab1 Signalosome
## Interleukin 12 Family Signaling Interleukin 12 Family Signaling
## Rip Mediated Nfkb Activation Via Zbp1 Rip Mediated Nfkb Activation Via Zbp1
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation
## Constitutive Signaling By Aberrant Pi3k In Cancer Constitutive Signaling By Aberrant Pi3k In Cancer
## Irak4 Deficiency Tlr2 4 Irak4 Deficiency Tlr2 4
## Mecp2 Regulates Neuronal Receptors And Channels Mecp2 Regulates Neuronal Receptors And Channels
## Signaling By Cytosolic Fgfr1 Fusion Mutants Signaling By Cytosolic Fgfr1 Fusion Mutants
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest
## Ngf Stimulated Transcription Ngf Stimulated Transcription
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants Constitutive Signaling By Ligand Responsive Egfr Cancer Variants
## Initiation Of Nuclear Envelope Ne Reformation Initiation Of Nuclear Envelope Ne Reformation
## Ldl Clearance Ldl Clearance
## Phase 4 Resting Membrane Potential Phase 4 Resting Membrane Potential
## Phosphorylation Of The Apc C Phosphorylation Of The Apc C
## Pka Mediated Phosphorylation Of Creb Pka Mediated Phosphorylation Of Creb
## Signaling By Kit In Disease Signaling By Kit In Disease
## Signaling By Pdgfr In Disease Signaling By Pdgfr In Disease
## Tnfr2 Non Canonical Nf Kb Pathway Tnfr2 Non Canonical Nf Kb Pathway
## Collagen Degradation Collagen Degradation
## Regulation Of Tlr By Endogenous Ligand Regulation Of Tlr By Endogenous Ligand
## Signaling By Scf Kit Signaling By Scf Kit
## Zbp1 Dai Mediated Induction Of Type I Ifns Zbp1 Dai Mediated Induction Of Type I Ifns
## E2f Mediated Regulation Of Dna Replication E2f Mediated Regulation Of Dna Replication
## Interleukin 2 Family Signaling Interleukin 2 Family Signaling
## Pi3k Akt Signaling In Cancer Pi3k Akt Signaling In Cancer
## Shc1 Events In Erbb2 Signaling Shc1 Events In Erbb2 Signaling
## Ikk Complex Recruitment Mediated By Rip1 Ikk Complex Recruitment Mediated By Rip1
## Termination Of O Glycan Biosynthesis Termination Of O Glycan Biosynthesis
## Apc C Cdc20 Mediated Degradation Of Cyclin B Apc C Cdc20 Mediated Degradation Of Cyclin B
## Growth Hormone Receptor Signaling Growth Hormone Receptor Signaling
## Interleukin 12 Signaling Interleukin 12 Signaling
## Runx2 Regulates Osteoblast Differentiation Runx2 Regulates Osteoblast Differentiation
## Traf6 Mediated Nf Kb Activation Traf6 Mediated Nf Kb Activation
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc
## Cyclin A B1 B2 Associated Events During G2 M Transition Cyclin A B1 B2 Associated Events During G2 M Transition
## Inactivation Of Csf3 G Csf Signaling Inactivation Of Csf3 G Csf Signaling
## Notch3 Activation And Transmission Of Signal To The Nucleus Notch3 Activation And Transmission Of Signal To The Nucleus
## Signaling By Egfr In Cancer Signaling By Egfr In Cancer
## Constitutive Signaling By Akt1 E17k In Cancer Constitutive Signaling By Akt1 E17k In Cancer
## Dectin 2 Family Dectin 2 Family
## Interleukin 17 Signaling Interleukin 17 Signaling
## Interleukin 20 Family Signaling Interleukin 20 Family Signaling
## Negative Regulation Of The Pi3k Akt Network Negative Regulation Of The Pi3k Akt Network
## Signaling By Erbb2 In Cancer Signaling By Erbb2 In Cancer
## Wnt Ligand Biogenesis And Trafficking Wnt Ligand Biogenesis And Trafficking
## Bmal1 Clock Npas2 Activates Circadian Gene Expression Bmal1 Clock Npas2 Activates Circadian Gene Expression
## Eph Ephrin Mediated Repulsion Of Cells Eph Ephrin Mediated Repulsion Of Cells
## G0 And Early G1 G0 And Early G1
## Interleukin Receptor Shc Signaling Interleukin Receptor Shc Signaling
## Toll Like Receptor 9 Tlr9 Cascade Toll Like Receptor 9 Tlr9 Cascade
## Vegfr2 Mediated Vascular Permeability Vegfr2 Mediated Vascular Permeability
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling
## Myd88 Independent Tlr4 Cascade Myd88 Independent Tlr4 Cascade
## Dap12 Signaling Dap12 Signaling
## Downregulation Of Erbb2 Signaling Downregulation Of Erbb2 Signaling
## Downstream Signal Transduction Downstream Signal Transduction
## G1 S Specific Transcription G1 S Specific Transcription
## Interleukin 1 Family Signaling Interleukin 1 Family Signaling
## Ripk1 Mediated Regulated Necrosis Ripk1 Mediated Regulated Necrosis
## Signaling By Ptk6 Signaling By Ptk6
## Signaling By Csf3 G Csf Signaling By Csf3 G Csf
## Tnfr1 Induced Nfkappab Signaling Pathway Tnfr1 Induced Nfkappab Signaling Pathway
## Egfr Downregulation Egfr Downregulation
## Fgfr1 Mutant Receptor Activation Fgfr1 Mutant Receptor Activation
## Runx2 Regulates Bone Development Runx2 Regulates Bone Development
## Transcriptional Regulation Of Pluripotent Stem Cells Transcriptional Regulation Of Pluripotent Stem Cells
## Regulation Of Mecp2 Expression And Activity Regulation Of Mecp2 Expression And Activity
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex
## Cargo Concentration In The Er Cargo Concentration In The Er
## Plasma Lipoprotein Clearance Plasma Lipoprotein Clearance
## Sialic Acid Metabolism Sialic Acid Metabolism
## Signaling By Notch2 Signaling By Notch2
## Assembly Of Collagen Fibrils And Other Multimeric Structures Assembly Of Collagen Fibrils And Other Multimeric Structures
## Gpvi Mediated Activation Cascade Gpvi Mediated Activation Cascade
## Nuclear Events Kinase And Transcription Factor Activation Nuclear Events Kinase And Transcription Factor Activation
## Regulation Of Tnfr1 Signaling Regulation Of Tnfr1 Signaling
## Signaling By Interleukins Signaling By Interleukins
## Cytosolic Sensors Of Pathogen Associated Dna Cytosolic Sensors Of Pathogen Associated Dna
## Interleukin 7 Signaling Interleukin 7 Signaling
## Nuclear Pore Complex Npc Disassembly Nuclear Pore Complex Npc Disassembly
## Ca Dependent Events Ca Dependent Events
## Metalloprotease Dubs Metalloprotease Dubs
## Ovarian Tumor Domain Proteases Ovarian Tumor Domain Proteases
## Peptide Ligand Binding Receptors Peptide Ligand Binding Receptors
## Regulation Of Tp53 Expression And Degradation Regulation Of Tp53 Expression And Degradation
## Rhoh Gtpase Cycle Rhoh Gtpase Cycle
## Senescence Associated Secretory Phenotype Sasp Senescence Associated Secretory Phenotype Sasp
## Signaling By Fgfr1 In Disease Signaling By Fgfr1 In Disease
## Toll Like Receptor Cascades Toll Like Receptor Cascades
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors
## Association Of Tric Cct With Target Proteins During Biosynthesis Association Of Tric Cct With Target Proteins During Biosynthesis
## Complement Cascade Complement Cascade
## Generation Of Second Messenger Molecules Generation Of Second Messenger Molecules
## Dag And Ip3 Signaling Dag And Ip3 Signaling
## Interferon Gamma Signaling Interferon Gamma Signaling
## Transcriptional Regulation By Ventx Transcriptional Regulation By Ventx
## Beta Defensins Beta Defensins
## Circadian Clock Circadian Clock
## Rhob Gtpase Cycle Rhob Gtpase Cycle
## Rhof Gtpase Cycle Rhof Gtpase Cycle
## Sumoylation Of Transcription Cofactors Sumoylation Of Transcription Cofactors
## Tnf Signaling Tnf Signaling
## Tp53 Regulates Transcription Of Cell Death Genes Tp53 Regulates Transcription Of Cell Death Genes
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer
## Rhoc Gtpase Cycle Rhoc Gtpase Cycle
## Rhog Gtpase Cycle Rhog Gtpase Cycle
## Heme Signaling Heme Signaling
## Interleukin 3 Interleukin 5 And Gm Csf Signaling Interleukin 3 Interleukin 5 And Gm Csf Signaling
## Irs Mediated Signalling Irs Mediated Signalling
## Retrograde Transport At The Trans Golgi Network Retrograde Transport At The Trans Golgi Network
## Signaling By Notch3 Signaling By Notch3
## Toll Like Receptor Tlr1 Tlr2 Cascade Toll Like Receptor Tlr1 Tlr2 Cascade
## Tp53 Regulates Transcription Of Cell Cycle Genes Tp53 Regulates Transcription Of Cell Cycle Genes
## Antigen Processing Cross Presentation Antigen Processing Cross Presentation
## Apoptotic Execution Phase Apoptotic Execution Phase
## Cargo Recognition For Clathrin Mediated Endocytosis Cargo Recognition For Clathrin Mediated Endocytosis
## Defensins Defensins
## Rhod Gtpase Cycle Rhod Gtpase Cycle
## Signaling By Egfr Signaling By Egfr
## Signaling By Erbb2 Signaling By Erbb2
## Fceri Mediated Mapk Activation Fceri Mediated Mapk Activation
## G Protein Mediated Events G Protein Mediated Events
## Insulin Receptor Signalling Cascade Insulin Receptor Signalling Cascade
## Intrinsic Pathway For Apoptosis Intrinsic Pathway For Apoptosis
## Nuclear Envelope Breakdown Nuclear Envelope Breakdown
## Rhoj Gtpase Cycle Rhoj Gtpase Cycle
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r
## Transcriptional Activation Of Mitochondrial Biogenesis Transcriptional Activation Of Mitochondrial Biogenesis
## Ca2 Pathway Ca2 Pathway
## Collagen Formation Collagen Formation
## Eph Ephrin Signaling Eph Ephrin Signaling
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell
## Nrage Signals Death Through Jnk Nrage Signals Death Through Jnk
## O Linked Glycosylation Of Mucins O Linked Glycosylation Of Mucins
## Rac2 Gtpase Cycle Rac2 Gtpase Cycle
## Rhoq Gtpase Cycle Rhoq Gtpase Cycle
## Signaling By Erbb4 Signaling By Erbb4
## Signaling By Pdgf Signaling By Pdgf
## Tp53 Regulates Transcription Of Dna Repair Genes Tp53 Regulates Transcription Of Dna Repair Genes
## Transcriptional Regulation Of Granulopoiesis Transcriptional Regulation Of Granulopoiesis
## Unfolded Protein Response Upr Unfolded Protein Response Upr
## Asymmetric Localization Of Pcp Proteins Asymmetric Localization Of Pcp Proteins
## Class B 2 Secretin Family Receptors Class B 2 Secretin Family Receptors
## Copi Mediated Anterograde Transport Copi Mediated Anterograde Transport
## Copii Mediated Vesicle Transport Copii Mediated Vesicle Transport
## Diseases Associated With O Glycosylation Of Proteins Diseases Associated With O Glycosylation Of Proteins
## Dna Methylation Dna Methylation
## Fcgr3a Mediated Il10 Synthesis Fcgr3a Mediated Il10 Synthesis
## Interleukin 1 Signaling Interleukin 1 Signaling
## Ncam Signaling For Neurite Out Growth Ncam Signaling For Neurite Out Growth
## P75 Ntr Receptor Mediated Signalling P75 Ntr Receptor Mediated Signalling
## Rac3 Gtpase Cycle Rac3 Gtpase Cycle
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps
## Signaling By Fgfr In Disease Signaling By Fgfr In Disease
## Synthesis Of Substrates In N Glycan Biosythesis Synthesis Of Substrates In N Glycan Biosythesis
## Transcriptional Regulation By Mecp2 Transcriptional Regulation By Mecp2
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers
## Apc C Mediated Degradation Of Cell Cycle Proteins Apc C Mediated Degradation Of Cell Cycle Proteins
## Aurka Activation By Tpx2 Aurka Activation By Tpx2
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein
## Cell Death Signalling Via Nrage Nrif And Nade Cell Death Signalling Via Nrage Nrif And Nade
## Clathrin Mediated Endocytosis Clathrin Mediated Endocytosis
## Condensation Of Prophase Chromosomes Condensation Of Prophase Chromosomes
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta
## Death Receptor Signalling Death Receptor Signalling
## Degradation Of The Extracellular Matrix Degradation Of The Extracellular Matrix
## Ecm Proteoglycans Ecm Proteoglycans
## Fceri Mediated Ca 2 Mobilization Fceri Mediated Ca 2 Mobilization
## G Alpha 12 13 Signalling Events G Alpha 12 13 Signalling Events
## Initial Triggering Of Complement Initial Triggering Of Complement
## Integrin Cell Surface Interactions Integrin Cell Surface Interactions
## Interferon Alpha Beta Signaling Interferon Alpha Beta Signaling
## L1cam Interactions L1cam Interactions
## Nuclear Envelope Ne Reassembly Nuclear Envelope Ne Reassembly
## Plasma Lipoprotein Assembly Remodeling And Clearance Plasma Lipoprotein Assembly Remodeling And Clearance
## Potential Therapeutics For Sars Potential Therapeutics For Sars
## Prc2 Methylates Histones And Dna Prc2 Methylates Histones And Dna
## Programmed Cell Death Programmed Cell Death
## Recruitment Of Mitotic Centrosome Proteins And Complexes Recruitment Of Mitotic Centrosome Proteins And Complexes
## Regulation Of Plk1 Activity At G2 M Transition Regulation Of Plk1 Activity At G2 M Transition
## Regulation Of Runx2 Expression And Activity Regulation Of Runx2 Expression And Activity
## Rmts Methylate Histone Arginines Rmts Methylate Histone Arginines
## Signaling By Insulin Receptor Signaling By Insulin Receptor
## Signaling By Met Signaling By Met
## Signaling By Ntrks Signaling By Ntrks
## Signaling By Tgf Beta Receptor Complex Signaling By Tgf Beta Receptor Complex
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint The Role Of Gtse1 In G2 M Progression After G2 Checkpoint
## Transcriptional Regulation By Runx2 Transcriptional Regulation By Runx2
## 2 Ltr Circle Formation 2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism Abacavir Metabolism
## Abacavir Transmembrane Transport Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism Abacavir Transport And Metabolism
## Abc Family Proteins Mediated Transport Abc Family Proteins Mediated Transport
## Abc Transporter Disorders Abc Transporter Disorders
## Abc Transporters In Lipid Homeostasis Abc Transporters In Lipid Homeostasis
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5 Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3 Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Fyn Activated Ntrk2 Signals Through Fyn
## Activated Ntrk2 Signals Through Pi3k Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Pi3k Activated Ntrk3 Signals Through Pi3k
## Activated Ntrk3 Signals Through Ras Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activated Tak1 Mediates P38 Mapk Activation Activated Tak1 Mediates P38 Mapk Activation
## Activation Of Ampk Downstream Of Nmdars Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria Activation Of Bad And Translocation To Mitochondria
## Activation Of Bh3 Only Proteins Activation Of Bh3 Only Proteins
## Activation Of Caspases Through Apoptosome Mediated Cleavage Activation Of Caspases Through Apoptosome Mediated Cleavage
## Activation Of Gene Expression By Srebf Srebp Activation Of Gene Expression By Srebf Srebp
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon
## Activation Of Kainate Receptors Upon Glutamate Binding Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Nmda Receptors And Postsynaptic Events Activation Of Nmda Receptors And Postsynaptic Events
## Activation Of Noxa And Translocation To Mitochondria Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1 Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells Activation Of Ras In B Cells
## Activation Of Smo Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps Acyl Chain Remodelling Of Ps
## Adaptive Immune System Adaptive Immune System
## Adenylate Cyclase Activating Pathway Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions Adherens Junctions Interactions
## Adora2b Mediated Anti Inflammatory Cytokines Production Adora2b Mediated Anti Inflammatory Cytokines Production
## Adp Signalling Through P2y Purinoceptor 1 Adp Signalling Through P2y Purinoceptor 1
## Adp Signalling Through P2y Purinoceptor 12 Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors Adrenoceptors
## Aflatoxin Activation And Detoxification Aflatoxin Activation And Detoxification
## Aggrephagy Aggrephagy
## Akt Phosphorylates Targets In The Cytosol Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway Alpha Protein Kinase 1 Signaling Pathway
## Alternative Complement Activation Alternative Complement Activation
## Amine Ligand Binding Receptors Amine Ligand Binding Receptors
## Amino Acid Conjugation Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1 Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity Ampk Inhibits Chrebp Transcriptional Activation Activity
## Amyloid Fiber Formation Amyloid Fiber Formation
## Anchoring Fibril Formation Anchoring Fibril Formation
## Anchoring Of The Basal Body To The Plasma Membrane Anchoring Of The Basal Body To The Plasma Membrane
## Androgen Biosynthesis Androgen Biosynthesis
## Anti Inflammatory Response Favouring Leishmania Parasite Infection Anti Inflammatory Response Favouring Leishmania Parasite Infection
## Antigen Processing Ubiquitination Proteasome Degradation Antigen Processing Ubiquitination Proteasome Degradation
## Antimicrobial Peptides Antimicrobial Peptides
## Antiviral Mechanism By Ifn Stimulated Genes Antiviral Mechanism By Ifn Stimulated Genes
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc Cdc20 Mediated Degradation Of Nek2a Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection Apobec3g Mediated Resistance To Hiv 1 Infection
## Apoptosis Apoptosis
## Apoptotic Cleavage Of Cell Adhesion Proteins Apoptotic Cleavage Of Cell Adhesion Proteins
## Apoptotic Cleavage Of Cellular Proteins Apoptotic Cleavage Of Cellular Proteins
## Apoptotic Factor Mediated Response Apoptotic Factor Mediated Response
## Aquaporin Mediated Transport Aquaporin Mediated Transport
## Arachidonate Production From Dag Arachidonate Production From Dag
## Arachidonic Acid Metabolism Arachidonic Acid Metabolism
## Arms Mediated Activation Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling Aryl Hydrocarbon Receptor Signalling
## Asparagine N Linked Glycosylation Asparagine N Linked Glycosylation
## Aspartate And Asparagine Metabolism Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of The Hiv Virion Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex Assembly Of The Pre Replicative Complex
## Atf6 Atf6 Alpha Activates Chaperone Genes Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry Attachment And Entry
## Attachment Of Gpi Anchor To Upar Attachment Of Gpi Anchor To Upar
## Attenuation Phase Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## Autophagy Autophagy
## B Wich Complex Positively Regulates Rrna Expression B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair Base Excision Repair
## Base Excision Repair Ap Site Formation Base Excision Repair Ap Site Formation
## Basigin Interactions Basigin Interactions
## Bbsome Mediated Cargo Targeting To Cilium Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Independent Wnt Signaling Beta Catenin Independent Wnt Signaling
## Beta Catenin Phosphorylation Cascade Beta Catenin Phosphorylation Cascade
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids Beta Oxidation Of Very Long Chain Fatty Acids
## Bicarbonate Transporters Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism Bile Acid And Bile Salt Metabolism
## Binding And Uptake Of Ligands By Scavenger Receptors Binding And Uptake Of Ligands By Scavenger Receptors
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters
## Biological Oxidations Biological Oxidations
## Biosynthesis Of Epa Derived Spms Biosynthesis Of Epa Derived Spms
## Biosynthesis Of Maresin Like Spms Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins Biosynthesis Of Maresins
## Biosynthesis Of Specialized Proresolving Mediators Spms Biosynthesis Of Specialized Proresolving Mediators Spms
## Biotin Transport And Metabolism Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis Blood Group Systems Biosynthesis
## Branched Chain Amino Acid Catabolism Branched Chain Amino Acid Catabolism
## Budding And Maturation Of Hiv Virion Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions Butyrophilin Btn Family Interactions
## C Type Lectin Receptors Clrs C Type Lectin Receptors Clrs
## Ca2 Activated K Channels Ca2 Activated K Channels
## Calcineurin Activates Nfat Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin Carboxyterminal Post Translational Modifications Of Tubulin
## Cardiac Conduction Cardiac Conduction
## Cargo Trafficking To The Periciliary Membrane Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism Carnitine Metabolism
## Caspase Activation Via Death Receptors In The Presence Of Ligand Caspase Activation Via Death Receptors In The Presence Of Ligand
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand Caspase Activation Via Dependence Receptors In The Absence Of Ligand
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway Caspase Activation Via Extrinsic Apoptotic Signalling Pathway
## Caspase Mediated Cleavage Of Cytoskeletal Proteins Caspase Mediated Cleavage Of Cytoskeletal Proteins
## Cation Coupled Chloride Cotransporters Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation Cd22 Mediated Bcr Regulation
## Cdc42 Gtpase Cycle Cdc42 Gtpase Cycle
## Cdc6 Association With The Orc Origin Complex Cdc6 Association With The Orc Origin Complex
## Cell Cell Communication Cell Cell Communication
## Cell Cell Junction Organization Cell Cell Junction Organization
## Cell Cycle Cell Cycle
## Cell Cycle Checkpoints Cell Cycle Checkpoints
## Cell Cycle Mitotic Cell Cycle Mitotic
## Cell Extracellular Matrix Interactions Cell Extracellular Matrix Interactions
## Cell Junction Organization Cell Junction Organization
## Cell Surface Interactions At The Vascular Wall Cell Surface Interactions At The Vascular Wall
## Cellular Hexose Transport Cellular Hexose Transport
## Cellular Response To Chemical Stress Cellular Response To Chemical Stress
## Cellular Response To Heat Stress Cellular Response To Heat Stress
## Cellular Response To Hypoxia Cellular Response To Hypoxia
## Cellular Response To Starvation Cellular Response To Starvation
## Cellular Responses To External Stimuli Cellular Responses To External Stimuli
## Cellular Senescence Cellular Senescence
## Cgmp Effects Cgmp Effects
## Chaperone Mediated Autophagy Chaperone Mediated Autophagy
## Chl1 Interactions Chl1 Interactions
## Cholesterol Biosynthesis Cholesterol Biosynthesis
## Choline Catabolism Choline Catabolism
## Chondroitin Sulfate Biosynthesis Chondroitin Sulfate Biosynthesis
## Chondroitin Sulfate Dermatan Sulfate Metabolism Chondroitin Sulfate Dermatan Sulfate Metabolism
## Chrebp Activates Metabolic Gene Expression Chrebp Activates Metabolic Gene Expression
## Chromatin Modifying Enzymes Chromatin Modifying Enzymes
## Chromosome Maintenance Chromosome Maintenance
## Chylomicron Assembly Chylomicron Assembly
## Chylomicron Clearance Chylomicron Clearance
## Chylomicron Remodeling Chylomicron Remodeling
## Cilium Assembly Cilium Assembly
## Citric Acid Cycle Tca Cycle Citric Acid Cycle Tca Cycle
## Class A 1 Rhodopsin Like Receptors Class A 1 Rhodopsin Like Receptors
## Class C 3 Metabotropic Glutamate Pheromone Receptors Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Mhc Mediated Antigen Processing Presentation Class I Mhc Mediated Antigen Processing Presentation
## Class I Peroxisomal Membrane Protein Import Class I Peroxisomal Membrane Protein Import
## Clec7a Dectin 1 Induces Nfat Activation Clec7a Dectin 1 Induces Nfat Activation
## Clec7a Dectin 1 Signaling Clec7a Dectin 1 Signaling
## Cobalamin Cbl Vitamin B12 Transport And Metabolism Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization Collagen Chain Trimerization
## Common Pathway Of Fibrin Clot Formation Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complex I Biogenesis Complex I Biogenesis
## Conjugation Of Benzoate With Glycine Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Overexpressed Erbb2 Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic Copi Independent Golgi To Er Retrograde Traffic
## Creatine Metabolism Creatine Metabolism
## Creation Of C4 And C2 Activators Creation Of C4 And C2 Activators
## Creb3 Factors Activate Genes Creb3 Factors Activate Genes
## Cristae Formation Cristae Formation
## Crmps In Sema3a Signaling Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Crosslinking Of Collagen Fibrils Crosslinking Of Collagen Fibrils
## Cs Ds Degradation Cs Ds Degradation
## Cyclin A Cdk2 Associated Events At S Phase Entry Cyclin A Cdk2 Associated Events At S Phase Entry
## Cyclin D Associated Events In G1 Cyclin D Associated Events In G1
## Cyp2e1 Reactions Cyp2e1 Reactions
## Cytochrome C Mediated Apoptotic Response Cytochrome C Mediated Apoptotic Response
## Cytochrome P450 Arranged By Substrate Type Cytochrome P450 Arranged By Substrate Type
## Cytokine Signaling In Immune System Cytokine Signaling In Immune System
## Cytoprotection By Hmox1 Cytoprotection By Hmox1
## Cytosolic Iron Sulfur Cluster Assembly Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation Cytosolic Trna Aminoacylation
## Darpp 32 Events Darpp 32 Events
## Dcc Mediated Attractive Signaling Dcc Mediated Attractive Signaling
## Deactivation Of The Beta Catenin Transactivating Complex Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna Deadenylation Of Mrna
## Dectin 1 Mediated Noncanonical Nf Kb Signaling Dectin 1 Mediated Noncanonical Nf Kb Signaling
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type Defective B4galt7 Causes Eds Progeroid Type
## Defective Cftr Causes Cystic Fibrosis Defective Cftr Causes Cystic Fibrosis
## Defective Chst14 Causes Eds Musculocontractural Type Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1 Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5 Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2 Defective Ext2 Causes Exostoses 2
## Defective F9 Activation Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B Defective Factor Ix Causes Hemophilia B
## Defective Factor Viii Causes Hemophilia A Defective Factor Viii Causes Hemophilia A
## Defective Lfng Causes Scdo3 Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15 Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism Defects In Vitamin And Cofactor Metabolism
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks
## Degradation Of Axin Degradation Of Axin
## Degradation Of Beta Catenin By The Destruction Complex Degradation Of Beta Catenin By The Destruction Complex
## Degradation Of Cysteine And Homocysteine Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome Degradation Of Gli1 By The Proteasome
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models
## Dermatan Sulfate Biosynthesis Dermatan Sulfate Biosynthesis
## Detoxification Of Reactive Oxygen Species Detoxification Of Reactive Oxygen Species
## Deubiquitination Deubiquitination
## Developmental Biology Developmental Biology
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production
## Digestion Digestion
## Digestion And Absorption Digestion And Absorption
## Digestion Of Dietary Carbohydrate Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid Digestion Of Dietary Lipid
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane
## Diseases Associated With Glycosaminoglycan Metabolism Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With Glycosylation Precursor Biosynthesis Diseases Associated With Glycosylation Precursor Biosynthesis
## Diseases Associated With N Glycosylation Of Proteins Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair Diseases Of Dna Repair
## Diseases Of Glycosylation Diseases Of Glycosylation
## Diseases Of Metabolism Diseases Of Metabolism
## Diseases Of Mismatch Repair Mmr Diseases Of Mismatch Repair Mmr
## Diseases Of Mitotic Cell Cycle Diseases Of Mitotic Cell Cycle
## Diseases Of Programmed Cell Death Diseases Of Programmed Cell Death
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers
## Disinhibition Of Snare Formation Disinhibition Of Snare Formation
## Disorders Of Transmembrane Transporters Disorders Of Transmembrane Transporters
## Displacement Of Dna Glycosylase By Apex1 Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass Dna Damage Bypass
## Dna Damage Recognition In Gg Ner Dna Damage Recognition In Gg Ner
## Dna Damage Reversal Dna Damage Reversal
## Dna Damage Telomere Stress Induced Senescence Dna Damage Telomere Stress Induced Senescence
## Dna Double Strand Break Repair Dna Double Strand Break Repair
## Dna Double Strand Break Response Dna Double Strand Break Response
## Dna Repair Dna Repair
## Dna Replication Dna Replication
## Dna Replication Initiation Dna Replication Initiation
## Dna Replication Pre Initiation Dna Replication Pre Initiation
## Dna Strand Elongation Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Erbb4 Signaling Downregulation Of Erbb4 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signaling Events Of B Cell Receptor Bcr Downstream Signaling Events Of B Cell Receptor Bcr
## Downstream Signaling Of Activated Fgfr1 Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2 Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3 Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4 Downstream Signaling Of Activated Fgfr4
## Dscam Interactions Dscam Interactions
## Dual Incision In Gg Ner Dual Incision In Gg Ner
## Dual Incision In Tc Ner Dual Incision In Tc Ner
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Early Phase Of Hiv Life Cycle Early Phase Of Hiv Life Cycle
## Effects Of Pip2 Hydrolysis Effects Of Pip2 Hydrolysis
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors Eicosanoid Ligand Binding Receptors
## Eicosanoids Eicosanoids
## Elastic Fibre Formation Elastic Fibre Formation
## Electric Transmission Across Gap Junctions Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt Endosomal Sorting Complex Required For Transport Escrt
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Enos Activation Enos Activation
## Epha Mediated Growth Cone Collapse Epha Mediated Growth Cone Collapse
## Ephb Mediated Forward Signaling Ephb Mediated Forward Signaling
## Ephrin Signaling Ephrin Signaling
## Epigenetic Regulation Of Gene Expression Epigenetic Regulation Of Gene Expression
## Er Quality Control Compartment Erqc Er Quality Control Compartment Erqc
## Er To Golgi Anterograde Transport Er To Golgi Anterograde Transport
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets Erk Mapk Targets
## Erks Are Inactivated Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras Erythropoietin Activates Ras
## Erythropoietin Activates Stat5 Erythropoietin Activates Stat5
## Esr Mediated Signaling Esr Mediated Signaling
## Establishment Of Sister Chromatid Cohesion Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis Estrogen Biosynthesis
## Estrogen Dependent Gene Expression Estrogen Dependent Gene Expression
## Estrogen Stimulated Signaling Through Prkcz Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation Ethanol Oxidation
## Eukaryotic Translation Elongation Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus Export Of Viral Ribonucleoproteins From Nucleus
## Extension Of Telomeres Extension Of Telomeres
## Extracellular Matrix Organization Extracellular Matrix Organization
## Extrinsic Pathway Of Fibrin Clot Formation Extrinsic Pathway Of Fibrin Clot Formation
## Factors Involved In Megakaryocyte Development And Platelet Production Factors Involved In Megakaryocyte Development And Platelet Production
## Fanconi Anemia Pathway Fanconi Anemia Pathway
## Fasl Cd95l Signaling Fasl Cd95l Signaling
## Fatty Acid Metabolism Fatty Acid Metabolism
## Fatty Acids Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer Fbxw7 Mutants And Notch1 In Cancer
## Fc Epsilon Receptor Fceri Signaling Fc Epsilon Receptor Fceri Signaling
## Fceri Mediated Nf Kb Activation Fceri Mediated Nf Kb Activation
## Fcgamma Receptor Fcgr Dependent Phagocytosis Fcgamma Receptor Fcgr Dependent Phagocytosis
## Fcgr Activation Fcgr Activation
## Fertilization Fertilization
## Fgfr1 Ligand Binding And Activation Fgfr1 Ligand Binding And Activation
## Fgfr1b Ligand Binding And Activation Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling Flt3 Signaling
## Flt3 Signaling By Cbl Mutants Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric Folding Of Actin By Cct Tric
## Formation Of Apoptosome Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling Formation Of Atp By Chemiosmotic Coupling
## Formation Of Fibrin Clot Clotting Cascade Formation Of Fibrin Clot Clotting Cascade
## Formation Of Incision Complex In Gg Ner Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex Formation Of Tc Ner Pre Incision Complex
## Formation Of The Beta Catenin Tcf Transactivating Complex Formation Of The Beta Catenin Tcf Transactivating Complex
## Formation Of The Cornified Envelope Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription Foxo Mediated Transcription
## Foxo Mediated Transcription Of Cell Cycle Genes Foxo Mediated Transcription Of Cell Cycle Genes
## Foxo Mediated Transcription Of Cell Death Genes Foxo Mediated Transcription Of Cell Death Genes
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling Frs Mediated Fgfr4 Signaling
## Fructose Catabolism Fructose Catabolism
## Fructose Metabolism Fructose Metabolism
## G Alpha I Signalling Events G Alpha I Signalling Events
## G Alpha Q Signalling Events G Alpha Q Signalling Events
## G Alpha S Signalling Events G Alpha S Signalling Events
## G Alpha Z Signalling Events G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Cdc42 G Beta Gamma Signalling Through Cdc42
## G Beta Gamma Signalling Through Pi3kgamma G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation G Protein Activation
## G Protein Beta Gamma Signalling G Protein Beta Gamma Signalling
## G1 S Dna Damage Checkpoints G1 S Dna Damage Checkpoints
## G2 M Checkpoints G2 M Checkpoints
## G2 M Dna Damage Checkpoint G2 M Dna Damage Checkpoint
## G2 Phase G2 Phase
## Gaba B Receptor Activation Gaba B Receptor Activation
## Gaba Receptor Activation Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation Gaba Synthesis Release Reuptake And Degradation
## Galactose Catabolism Galactose Catabolism
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly Gap Junction Assembly
## Gap Junction Degradation Gap Junction Degradation
## Gap Junction Trafficking And Regulation Gap Junction Trafficking And Regulation
## Gdp Fucose Biosynthesis Gdp Fucose Biosynthesis
## Gene Silencing By Rna Gene Silencing By Rna
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis Glucocorticoid Biosynthesis
## Gluconeogenesis Gluconeogenesis
## Glucose Metabolism Glucose Metabolism
## Glucuronidation Glucuronidation
## Glutamate And Glutamine Metabolism Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation Glutathione Conjugation
## Glutathione Synthesis And Recycling Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism Glycogen Metabolism
## Glycogen Storage Diseases Glycogen Storage Diseases
## Glycogen Synthesis Glycogen Synthesis
## Glycolysis Glycolysis
## Glycosaminoglycan Metabolism Glycosaminoglycan Metabolism
## Glycosphingolipid Metabolism Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis Golgi Associated Vesicle Biogenesis
## Golgi To Er Retrograde Transport Golgi To Er Retrograde Transport
## Gp1b Ix V Activation Signalling Gp1b Ix V Activation Signalling
## Gpcr Ligand Binding Gpcr Ligand Binding
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins Grb2 Sos Provides Linkage To Mapk Signaling For Integrins
## Grb7 Events In Erbb2 Signaling Grb7 Events In Erbb2 Signaling
## Hats Acetylate Histones Hats Acetylate Histones
## Hcmv Early Events Hcmv Early Events
## Hcmv Infection Hcmv Infection
## Hcmv Late Events Hcmv Late Events
## Hdacs Deacetylate Histones Hdacs Deacetylate Histones
## Hdl Assembly Hdl Assembly
## Hdl Clearance Hdl Clearance
## Hdl Remodeling Hdl Remodeling
## Hdms Demethylate Histones Hdms Demethylate Histones
## Hdr Through Homologous Recombination Hrr Hdr Through Homologous Recombination Hrr
## Hdr Through Mmej Alt Nhej Hdr Through Mmej Alt Nhej
## Hdr Through Single Strand Annealing Ssa Hdr Through Single Strand Annealing Ssa
## Hedgehog Ligand Biogenesis Hedgehog Ligand Biogenesis
## Hedgehog Off State Hedgehog Off State
## Hedgehog On State Hedgehog On State
## Heme Biosynthesis Heme Biosynthesis
## Heme Degradation Heme Degradation
## Hemostasis Hemostasis
## Heparan Sulfate Heparin Hs Gag Metabolism Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism Histidine Catabolism
## Hiv Elongation Arrest And Recovery Hiv Elongation Arrest And Recovery
## Hiv Infection Hiv Infection
## Hiv Life Cycle Hiv Life Cycle
## Hiv Transcription Elongation Hiv Transcription Elongation
## Hiv Transcription Initiation Hiv Transcription Initiation
## Homologous Dna Pairing And Strand Exchange Homologous Dna Pairing And Strand Exchange
## Homology Directed Repair Homology Directed Repair
## Hormone Ligand Binding Receptors Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis Hs Gag Biosynthesis
## Hs Gag Degradation Hs Gag Degradation
## Hsf1 Activation Hsf1 Activation
## Hsf1 Dependent Transactivation Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc Hydrolysis Of Lpc
## Ikba Variant Leads To Eda Id Ikba Variant Leads To Eda Id
## Il 6 Type Cytokine Receptor Ligand Interactions Il 6 Type Cytokine Receptor Ligand Interactions
## Inactivation Of Cdc42 And Rac1 Inactivation Of Cdc42 And Rac1
## Incretin Synthesis Secretion And Inactivation Incretin Synthesis Secretion And Inactivation
## Infection With Mycobacterium Tuberculosis Infection With Mycobacterium Tuberculosis
## Infectious Disease Infectious Disease
## Influenza Infection Influenza Infection
## Inhibition Of Dna Recombination At Telomere Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Innate Immune System Innate Immune System
## Inositol Phosphate Metabolism Inositol Phosphate Metabolism
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane
## Insulin Processing Insulin Processing
## Insulin Receptor Recycling Insulin Receptor Recycling
## Integration Of Energy Metabolism Integration Of Energy Metabolism
## Integration Of Provirus Integration Of Provirus
## Integrin Signaling Integrin Signaling
## Interaction Between L1 And Ankyrins Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates Interconversion Of Nucleotide Di And Triphosphates
## Interferon Signaling Interferon Signaling
## Interleukin 2 Signaling Interleukin 2 Signaling
## Interleukin 36 Pathway Interleukin 36 Pathway
## Intestinal Absorption Intestinal Absorption
## Intra Golgi And Retrograde Golgi To Er Traffic Intra Golgi And Retrograde Golgi To Er Traffic
## Intra Golgi Traffic Intra Golgi Traffic
## Intracellular Signaling By Second Messengers Intracellular Signaling By Second Messengers
## Intraflagellar Transport Intraflagellar Transport
## Intrinsic Pathway Of Fibrin Clot Formation Intrinsic Pathway Of Fibrin Clot Formation
## Inwardly Rectifying K Channels Inwardly Rectifying K Channels
## Ion Channel Transport Ion Channel Transport
## Ion Homeostasis Ion Homeostasis
## Ion Transport By P Type Atpases Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors Ionotropic Activity Of Kainate Receptors
## Irak1 Recruits Ikk Complex Irak1 Recruits Ikk Complex
## Irak2 Mediated Activation Of Tak1 Complex Irak2 Mediated Activation Of Tak1 Complex
## Ire1alpha Activates Chaperones Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn Irf3 Mediated Activation Of Type 1 Ifn
## Iron Uptake And Transport Iron Uptake And Transport
## Irs Activation Irs Activation
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1
## Josephin Domain Dubs Josephin Domain Dubs
## Keratan Sulfate Biosynthesis Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism Keratan Sulfate Keratin Metabolism
## Keratinization Keratinization
## Ketone Body Metabolism Ketone Body Metabolism
## Kinesins Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna Ksrp Khsrp Binds And Destabilizes Mrna
## Lagging Strand Synthesis Lagging Strand Synthesis
## Laminin Interactions Laminin Interactions
## Late Endosomal Microautophagy Late Endosomal Microautophagy
## Lectin Pathway Of Complement Activation Lectin Pathway Of Complement Activation
## Leishmania Infection Leishmania Infection
## Leukotriene Receptors Leukotriene Receptors
## Lgi Adam Interactions Lgi Adam Interactions
## Ligand Receptor Interactions Ligand Receptor Interactions
## Linoleic Acid La Metabolism Linoleic Acid La Metabolism
## Lipid Particle Organization Lipid Particle Organization
## Lipophagy Lipophagy
## Listeria Monocytogenes Entry Into Host Cells Listeria Monocytogenes Entry Into Host Cells
## Long Term Potentiation Long Term Potentiation
## Loss Of Function Of Mecp2 In Rett Syndrome Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism Lysine Catabolism
## Lysosome Vesicle Biogenesis Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors Lysosphingolipid And Lpa Receptors
## M Phase M Phase
## Map2k And Mapk Activation Map2k And Mapk Activation
## Map3k8 Tpl2 Dependent Mapk1 3 Activation Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Mapk Family Signaling Cascades Mapk Family Signaling Cascades
## Mapk6 Mapk4 Signaling Mapk6 Mapk4 Signaling
## Maturation Of Nucleoprotein Maturation Of Nucleoprotein
## Maturation Of Protein 3a Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein Maturation Of Sars Cov 2 Spike Protein
## Meiosis Meiosis
## Meiotic Recombination Meiotic Recombination
## Meiotic Synapsis Meiotic Synapsis
## Melanin Biosynthesis Melanin Biosynthesis
## Membrane Trafficking Membrane Trafficking
## Met Activates Pi3k Akt Signaling Met Activates Pi3k Akt Signaling
## Met Activates Ptk2 Signaling Met Activates Ptk2 Signaling
## Met Activates Ptpn11 Met Activates Ptpn11
## Met Activates Rap1 And Rac1 Met Activates Rap1 And Rac1
## Met Activates Ras Signaling Met Activates Ras Signaling
## Met Interacts With Tns Proteins Met Interacts With Tns Proteins
## Met Promotes Cell Motility Met Promotes Cell Motility
## Met Receptor Activation Met Receptor Activation
## Met Receptor Recycling Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones Metabolism Of Amine Derived Hormones
## Metabolism Of Amino Acids And Derivatives Metabolism Of Amino Acids And Derivatives
## Metabolism Of Angiotensinogen To Angiotensins Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Carbohydrates Metabolism Of Carbohydrates
## Metabolism Of Cofactors Metabolism Of Cofactors
## Metabolism Of Fat Soluble Vitamins Metabolism Of Fat Soluble Vitamins
## Metabolism Of Folate And Pterines Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Lipids Metabolism Of Lipids
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation Metabolism Of Nitric Oxide Nos3 Activation And Regulation
## Metabolism Of Nucleotides Metabolism Of Nucleotides
## Metabolism Of Polyamines Metabolism Of Polyamines
## Metabolism Of Porphyrins Metabolism Of Porphyrins
## Metabolism Of Rna Metabolism Of Rna
## Metabolism Of Steroid Hormones Metabolism Of Steroid Hormones
## Metabolism Of Steroids Metabolism Of Steroids
## Metabolism Of Vitamins And Cofactors Metabolism Of Vitamins And Cofactors
## Metabolism Of Water Soluble Vitamins And Cofactors Metabolism Of Water Soluble Vitamins And Cofactors
## Metal Ion Slc Transporters Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins Metal Sequestration By Antimicrobial Proteins
## Metallothioneins Bind Metals Metallothioneins Bind Metals
## Methionine Salvage Pathway Methionine Salvage Pathway
## Methylation Methylation
## Mhc Class Ii Antigen Presentation Mhc Class Ii Antigen Presentation
## Microrna Mirna Biogenesis Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle Miro Gtpase Cycle
## Miscellaneous Substrates Miscellaneous Substrates
## Miscellaneous Transport And Binding Events Miscellaneous Transport And Binding Events
## Mismatch Repair Mismatch Repair
## Mitochondrial Biogenesis Mitochondrial Biogenesis
## Mitochondrial Calcium Ion Transport Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import Mitochondrial Protein Import
## Mitochondrial Translation Mitochondrial Translation
## Mitochondrial Trna Aminoacylation Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling Mitochondrial Uncoupling
## Mitophagy Mitophagy
## Mitotic G1 Phase And G1 S Transition Mitotic G1 Phase And G1 S Transition
## Mitotic G2 G2 M Phases Mitotic G2 G2 M Phases
## Mitotic Metaphase And Anaphase Mitotic Metaphase And Anaphase
## Mitotic Prometaphase Mitotic Prometaphase
## Mitotic Prophase Mitotic Prophase
## Mitotic Spindle Checkpoint Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis Mitotic Telophase Cytokinesis
## Modulation By Mtb Of Host Immune System Modulation By Mtb Of Host Immune System
## Molecules Associated With Elastic Fibres Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis Molybdenum Cofactor Biosynthesis
## Mrna Capping Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing Mrna Editing
## Mrna Editing C To U Conversion Mrna Editing C To U Conversion
## Mrna Splicing Mrna Splicing
## Mrna Splicing Minor Pathway Mrna Splicing Minor Pathway
## Mtor Signalling Mtor Signalling
## Mtorc1 Mediated Signalling Mtorc1 Mediated Signalling
## Mucopolysaccharidoses Mucopolysaccharidoses
## Multifunctional Anion Exchangers Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors Muscarinic Acetylcholine Receptors
## Muscle Contraction Muscle Contraction
## Myoclonic Epilepsy Of Lafora Myoclonic Epilepsy Of Lafora
## Myogenesis Myogenesis
## N Glycan Antennae Elongation N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters Na Cl Dependent Neurotransmitter Transporters
## Nade Modulates Death Signalling Nade Modulates Death Signalling
## Ncam1 Interactions Ncam1 Interactions
## Nectin Necl Trans Heterodimerization Nectin Necl Trans Heterodimerization
## Neddylation Neddylation
## Nef And Signal Transduction Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Epigenetic Regulation Of Rrna Expression Negative Epigenetic Regulation Of Rrna Expression
## Negative Feedback Regulation Of Mapk Pathway Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Fgfr1 Signaling Negative Regulation Of Fgfr1 Signaling
## Negative Regulation Of Fgfr2 Signaling Negative Regulation Of Fgfr2 Signaling
## Negative Regulation Of Fgfr3 Signaling Negative Regulation Of Fgfr3 Signaling
## Negative Regulation Of Fgfr4 Signaling Negative Regulation Of Fgfr4 Signaling
## Negative Regulation Of Flt3 Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Negative Regulators Of Ddx58 Ifih1 Signaling Negative Regulators Of Ddx58 Ifih1 Signaling
## Nephrin Family Interactions Nephrin Family Interactions
## Nervous System Development Nervous System Development
## Netrin 1 Signaling Netrin 1 Signaling
## Netrin Mediated Repulsion Signals Netrin Mediated Repulsion Signals
## Neurexins And Neuroligins Neurexins And Neuroligins
## Neurofascin Interactions Neurofascin Interactions
## Neuronal System Neuronal System
## Neurotoxicity Of Clostridium Toxins Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance Neurotransmitter Clearance
## Neurotransmitter Receptors And Postsynaptic Signal Transmission Neurotransmitter Receptors And Postsynaptic Signal Transmission
## Neurotransmitter Release Cycle Neurotransmitter Release Cycle
## Neutrophil Degranulation Neutrophil Degranulation
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10
## Nf Kb Is Activated And Signals Survival Nf Kb Is Activated And Signals Survival
## Ngf Independant Trka Activation Ngf Independant Trka Activation
## Nicotinamide Salvaging Nicotinamide Salvaging
## Nicotinate Metabolism Nicotinate Metabolism
## Nitric Oxide Stimulates Guanylate Cyclase Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3 Noncanonical Activation Of Notch3
## Nonhomologous End Joining Nhej Nonhomologous End Joining Nhej
## Nonsense Mediated Decay Nmd Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle Norepinephrine Neurotransmitter Release Cycle
## Nostrin Mediated Enos Trafficking Nostrin Mediated Enos Trafficking
## Notch Hlh Transcription Pathway Notch Hlh Transcription Pathway
## Notch1 Intracellular Domain Regulates Transcription Notch1 Intracellular Domain Regulates Transcription
## Notch2 Activation And Transmission Of Signal To The Nucleus Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch3 Intracellular Domain Regulates Transcription Notch3 Intracellular Domain Regulates Transcription
## Notch4 Activation And Transmission Of Signal To The Nucleus Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrcam Interactions Nrcam Interactions
## Nrif Signals Cell Death From The Nucleus Nrif Signals Cell Death From The Nucleus
## Ns1 Mediated Effects On Host Pathways Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1 Ntrk2 Activates Rac1
## Nuclear Import Of Rev Protein Nuclear Import Of Rev Protein
## Nuclear Receptor Transcription Pathway Nuclear Receptor Transcription Pathway
## Nuclear Signaling By Erbb4 Nuclear Signaling By Erbb4
## Nucleobase Biosynthesis Nucleobase Biosynthesis
## Nucleobase Catabolism Nucleobase Catabolism
## Nucleotide Excision Repair Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors Nucleotide Like Purinergic Receptors
## Nucleotide Salvage Nucleotide Salvage
## O Glycosylation Of Tsr Domain Containing Proteins O Glycosylation Of Tsr Domain Containing Proteins
## O Linked Glycosylation O Linked Glycosylation
## Oas Antiviral Response Oas Antiviral Response
## Olfactory Signaling Pathway Olfactory Signaling Pathway
## Oncogene Induced Senescence Oncogene Induced Senescence
## Oncogenic Mapk Signaling Oncogenic Mapk Signaling
## Opioid Signalling Opioid Signalling
## Opsins Opsins
## Orc1 Removal From Chromatin Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organelle Biogenesis And Maintenance Organelle Biogenesis And Maintenance
## Organic Anion Transport Organic Anion Transport
## Organic Anion Transporters Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport Organic Cation Anion Zwitterion Transport
## Organic Cation Transport Organic Cation Transport
## Other Interleukin Signaling Other Interleukin Signaling
## Other Semaphorin Interactions Other Semaphorin Interactions
## Oxidative Stress Induced Senescence Oxidative Stress Induced Senescence
## P130cas Linkage To Mapk Signaling For Integrins P130cas Linkage To Mapk Signaling For Integrins
## P2y Receptors P2y Receptors
## P38mapk Events P38mapk Events
## P75ntr Negatively Regulates Cell Cycle Via Sc1 P75ntr Negatively Regulates Cell Cycle Via Sc1
## P75ntr Recruits Signalling Complexes P75ntr Recruits Signalling Complexes
## P75ntr Signals Via Nf Kb P75ntr Signals Via Nf Kb
## Parasite Infection Parasite Infection
## Passive Transport By Aquaporins Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair Pcna Dependent Long Patch Base Excision Repair
## Pcp Ce Pathway Pcp Ce Pathway
## Pecam1 Interactions Pecam1 Interactions
## Pentose Phosphate Pathway Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis Peptide Hormone Biosynthesis
## Peptide Hormone Metabolism Peptide Hormone Metabolism
## Peroxisomal Lipid Metabolism Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import Peroxisomal Protein Import
## Pexophagy Pexophagy
## Phase 0 Rapid Depolarisation Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation Phase 3 Rapid Repolarisation
## Phase I Functionalization Of Compounds Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2 Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4 Phospholipase C Mediated Cascade Fgfr4
## Phospholipid Metabolism Phospholipid Metabolism
## Physiological Factors Physiological Factors
## Pi 3k Cascade Fgfr1 Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2 Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3 Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4 Pi 3k Cascade Fgfr4
## Pi Metabolism Pi Metabolism
## Pi3k Akt Activation Pi3k Akt Activation
## Pi3k Events In Erbb4 Signaling Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation Pi5p Regulates Tp53 Acetylation
## Pink1 Prkn Mediated Mitophagy Pink1 Prkn Mediated Mitophagy
## Piwi Interacting Rna Pirna Biogenesis Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines Pkmts Methylate Histone Lysines
## Plasma Lipoprotein Assembly Plasma Lipoprotein Assembly
## Plasma Lipoprotein Remodeling Plasma Lipoprotein Remodeling
## Platelet Activation Signaling And Aggregation Platelet Activation Signaling And Aggregation
## Platelet Adhesion To Exposed Collagen Platelet Adhesion To Exposed Collagen
## Platelet Aggregation Plug Formation Platelet Aggregation Plug Formation
## Platelet Calcium Homeostasis Platelet Calcium Homeostasis
## Platelet Homeostasis Platelet Homeostasis
## Platelet Sensitization By Ldl Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events Polo Like Kinase Mediated Events
## Polymerase Switching Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway Post Chaperonin Tubulin Folding Pathway
## Post Translational Modification Synthesis Of Gpi Anchored Proteins Post Translational Modification Synthesis Of Gpi Anchored Proteins
## Postmitotic Nuclear Pore Complex Npc Reformation Postmitotic Nuclear Pore Complex Npc Reformation
## Potassium Channels Potassium Channels
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Pre Notch Expression And Processing Pre Notch Expression And Processing
## Pre Notch Processing In Golgi Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna Processing Of Capped Intronless Pre Mrna
## Processing Of Dna Double Strand Break Ends Processing Of Dna Double Strand Break Ends
## Processing Of Intronless Pre Mrnas Processing Of Intronless Pre Mrnas
## Processing Of Smdt1 Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand Processive Synthesis On The Lagging Strand
## Prolactin Receptor Signaling Prolactin Receptor Signaling
## Prolonged Erk Activation Events Prolonged Erk Activation Events
## Propionyl Coa Catabolism Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors Prostanoid Ligand Receptors
## Protein Folding Protein Folding
## Protein Localization Protein Localization
## Protein Methylation Protein Methylation
## Protein Protein Interactions At Synapses Protein Protein Interactions At Synapses
## Protein Repair Protein Repair
## Protein Ubiquitination Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport Proton Coupled Monocarboxylate Transport
## Pten Regulation Pten Regulation
## Ptk6 Expression Ptk6 Expression
## Ptk6 Regulates Cell Cycle Ptk6 Regulates Cell Cycle
## Ptk6 Regulates Proteins Involved In Rna Processing Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis Purine Ribonucleoside Monophosphate Biosynthesis
## Purine Salvage Purine Salvage
## Pyrimidine Catabolism Pyrimidine Catabolism
## Pyrimidine Salvage Pyrimidine Salvage
## Pyruvate Metabolism Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway Ra Biosynthesis Pathway
## Rab Gefs Exchange Gtp For Gdp On Rabs Rab Gefs Exchange Gtp For Gdp On Rabs
## Rab Geranylgeranylation Rab Geranylgeranylation
## Rab Regulation Of Trafficking Rab Regulation Of Trafficking
## Rac1 Gtpase Cycle Rac1 Gtpase Cycle
## Raf Activation Raf Activation
## Rap1 Signalling Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Mediated Mitophagy Receptor Mediated Mitophagy
## Receptor Type Tyrosine Protein Phosphatases Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recruitment Of Numa To Mitotic Centrosomes Recruitment Of Numa To Mitotic Centrosomes
## Recycling Of Bile Acids And Salts Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp Recycling Of Eif2 Gdp
## Recycling Pathway Of L1 Recycling Pathway Of L1
## Reduction Of Cytosolic Ca Levels Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr Regulated Proteolysis Of P75ntr
## Regulation By C Flip Regulation By C Flip
## Regulation Of Bach1 Activity Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Commissural Axon Pathfinding By Slit And Robo Regulation Of Commissural Axon Pathfinding By Slit And Robo
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos Regulation Of Expression Of Slits And Robos
## Regulation Of Foxo Transcriptional Activity By Acetylation Regulation Of Foxo Transcriptional Activity By Acetylation
## Regulation Of Fzd By Ubiquitination Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Hmox1 Expression And Activity Regulation Of Hmox1 Expression And Activity
## Regulation Of Hsf1 Mediated Heat Shock Response Regulation Of Hsf1 Mediated Heat Shock Response
## Regulation Of Ifna Signaling Regulation Of Ifna Signaling
## Regulation Of Ifng Signaling Regulation Of Ifng Signaling
## Regulation Of Innate Immune Responses To Cytosolic Dna Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Secretion Regulation Of Insulin Secretion
## Regulation Of Kit Signaling Regulation Of Kit Signaling
## Regulation Of Lipid Metabolism By Pparalpha Regulation Of Lipid Metabolism By Pparalpha
## Regulation Of Localization Of Foxo Transcription Factors Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Pten Gene Transcription Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps Regulation Of Ras By Gaps
## Regulation Of Runx1 Expression And Activity Regulation Of Runx1 Expression And Activity
## Regulation Of Runx3 Expression And Activity Regulation Of Runx3 Expression And Activity
## Regulation Of Signaling By Cbl Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal Regulation Of Signaling By Nodal
## Regulation Of Tp53 Activity Regulation Of Tp53 Activity
## Regulation Of Tp53 Activity Through Acetylation Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors Regulation Of Tp53 Activity Through Association With Co Factors
## Regulation Of Tp53 Activity Through Methylation Regulation Of Tp53 Activity Through Methylation
## Regulation Of Tp53 Activity Through Phosphorylation Regulation Of Tp53 Activity Through Phosphorylation
## Relaxin Receptors Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Repression Of Wnt Target Genes Repression Of Wnt Target Genes
## Reproduction Reproduction
## Resolution Of Abasic Sites Ap Sites Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Resolution Of D Loop Structures Resolution Of D Loop Structures
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa
## Resolution Of Sister Chromatid Cohesion Resolution Of Sister Chromatid Cohesion
## Respiratory Electron Transport Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis Response Of Mtb To Phagocytosis
## Response To Elevated Platelet Cytosolic Ca2 Response To Elevated Platelet Cytosolic Ca2
## Response To Metal Ions Response To Metal Ions
## Ret Signaling Ret Signaling
## Retinoid Cycle Disease Events Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling Retrograde Neurotrophin Signalling
## Reversible Hydration Of Carbon Dioxide Reversible Hydration Of Carbon Dioxide
## Rho Gtpase Cycle Rho Gtpase Cycle
## Rho Gtpase Effectors Rho Gtpase Effectors
## Rho Gtpases Activate Cit Rho Gtpases Activate Cit
## Rho Gtpases Activate Formins Rho Gtpases Activate Formins
## Rho Gtpases Activate Iqgaps Rho Gtpases Activate Iqgaps
## Rho Gtpases Activate Ktn1 Rho Gtpases Activate Ktn1
## Rho Gtpases Activate Nadph Oxidases Rho Gtpases Activate Nadph Oxidases
## Rho Gtpases Activate Paks Rho Gtpases Activate Paks
## Rho Gtpases Activate Pkns Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks Rho Gtpases Activate Rocks
## Rho Gtpases Activate Wasps And Waves Rho Gtpases Activate Wasps And Waves
## Rhoa Gtpase Cycle Rhoa Gtpase Cycle
## Rhobtb Gtpase Cycle Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle Rhobtb3 Atpase Cycle
## Rhot1 Gtpase Cycle Rhot1 Gtpase Cycle
## Rhou Gtpase Cycle Rhou Gtpase Cycle
## Rhov Gtpase Cycle Rhov Gtpase Cycle
## Rna Polymerase I Promoter Escape Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination Rna Polymerase Iii Transcription Termination
## Rnd1 Gtpase Cycle Rnd1 Gtpase Cycle
## Rnd2 Gtpase Cycle Rnd2 Gtpase Cycle
## Rnd3 Gtpase Cycle Rnd3 Gtpase Cycle
## Robo Receptors Bind Akap5 Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression Rora Activates Gene Expression
## Ros And Rns Production In Phagocytes Ros And Rns Production In Phagocytes
## Rrna Modification In The Mitochondrion Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol Rrna Modification In The Nucleus And Cytosol
## Rrna Processing Rrna Processing
## Rrna Processing In The Mitochondrion Rrna Processing In The Mitochondrion
## Rsk Activation Rsk Activation
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Expression Of Components Of Tight Junctions Runx1 Regulates Expression Of Components Of Tight Junctions
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx3 Regulates Bcl2l11 Bim Transcription Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf Runx3 Regulates P14 Arf
## Runx3 Regulates Wnt Signaling Runx3 Regulates Wnt Signaling
## Runx3 Regulates Yap1 Mediated Transcription Runx3 Regulates Yap1 Mediated Transcription
## S Phase S Phase
## Sars Cov 1 Genome Replication And Transcription Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection Sars Cov 1 Infection
## Sars Cov 2 Infection Sars Cov 2 Infection
## Sars Cov Infections Sars Cov Infections
## Scavenging By Class A Receptors Scavenging By Class A Receptors
## Scavenging By Class B Receptors Scavenging By Class B Receptors
## Scavenging By Class F Receptors Scavenging By Class F Receptors
## Scavenging Of Heme From Plasma Scavenging Of Heme From Plasma
## Scf Skp2 Mediated Degradation Of P27 P21 Scf Skp2 Mediated Degradation Of P27 P21
## Sealing Of The Nuclear Envelope Ne By Escrt Iii Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selective Autophagy Selective Autophagy
## Selenoamino Acid Metabolism Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Semaphorin Interactions Semaphorin Interactions
## Sensing Of Dna Double Strand Breaks Sensing Of Dna Double Strand Breaks
## Sensory Perception Sensory Perception
## Sensory Processing Of Sound Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids Separation Of Sister Chromatids
## Serine Biosynthesis Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors Serotonin Receptors
## Shc Mediated Cascade Fgfr1 Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3 Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4 Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r Shc Related Events Triggered By Igf1r
## Shc1 Events In Erbb4 Signaling Shc1 Events In Erbb4 Signaling
## Signal Amplification Signal Amplification
## Signal Attenuation Signal Attenuation
## Signal Regulatory Protein Family Interactions Signal Regulatory Protein Family Interactions
## Signaling By Activin Signaling By Activin
## Signaling By Bmp Signaling By Bmp
## Signaling By Braf And Raf Fusions Signaling By Braf And Raf Fusions
## Signaling By Ctnnb1 Phospho Site Mutants Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Erythropoietin Signaling By Erythropoietin
## Signaling By Fgfr Signaling By Fgfr
## Signaling By Fgfr1 Signaling By Fgfr1
## Signaling By Fgfr2 Signaling By Fgfr2
## Signaling By Fgfr2 Iiia Tm Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease Signaling By Fgfr2 In Disease
## Signaling By Fgfr3 Signaling By Fgfr3
## Signaling By Fgfr3 Fusions In Cancer Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4 Signaling By Fgfr4
## Signaling By Fgfr4 In Disease Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Gpcr Signaling By Gpcr
## Signaling By Hedgehog Signaling By Hedgehog
## Signaling By Hippo Signaling By Hippo
## Signaling By Lrp5 Mutants Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Moderate Kinase Activity Braf Mutants Signaling By Moderate Kinase Activity Braf Mutants
## Signaling By Mras Complex Mutants Signaling By Mras Complex Mutants
## Signaling By Mst1 Signaling By Mst1
## Signaling By Nodal Signaling By Nodal
## Signaling By Notch Signaling By Notch
## Signaling By Notch1 Signaling By Notch1
## Signaling By Notch1 Hd Domain Mutants In Cancer Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 Pest Domain Mutants In Cancer Signaling By Notch1 Pest Domain Mutants In Cancer
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch4 Signaling By Notch4
## Signaling By Ntrk2 Trkb Signaling By Ntrk2 Trkb
## Signaling By Ntrk3 Trkc Signaling By Ntrk3 Trkc
## Signaling By Nuclear Receptors Signaling By Nuclear Receptors
## Signaling By Receptor Tyrosine Kinases Signaling By Receptor Tyrosine Kinases
## Signaling By Retinoic Acid Signaling By Retinoic Acid
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 Signaling By Rho Gtpases Miro Gtpases And Rhobtb3
## Signaling By Rnf43 Mutants Signaling By Rnf43 Mutants
## Signaling By Robo Receptors Signaling By Robo Receptors
## Signaling By Tgf Beta Receptor Complex In Cancer Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By Tgfb Family Members Signaling By Tgfb Family Members
## Signaling By The B Cell Receptor Bcr Signaling By The B Cell Receptor Bcr
## Signaling By Vegf Signaling By Vegf
## Signaling By Wnt Signaling By Wnt
## Signaling By Wnt In Cancer Signaling By Wnt In Cancer
## Signalling To Erks Signalling To Erks
## Signalling To P38 Via Rit And Rin Signalling To P38 Via Rit And Rin
## Signalling To Ras Signalling To Ras
## Sirt1 Negatively Regulates Rrna Expression Sirt1 Negatively Regulates Rrna Expression
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport Slc Mediated Transmembrane Transport
## Slc Transporter Disorders Slc Transporter Disorders
## Smac Xiap Regulated Apoptotic Response Smac Xiap Regulated Apoptotic Response
## Small Interfering Rna Sirna Biogenesis Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction Smooth Muscle Contraction
## Snrnp Assembly Snrnp Assembly
## Sodium Calcium Exchangers Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers Sodium Proton Exchangers
## Sos Mediated Signalling Sos Mediated Signalling
## Sperm Motility And Taxes Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism Sphingolipid Metabolism
## Spry Regulation Of Fgf Signaling Spry Regulation Of Fgf Signaling
## Srp Dependent Cotranslational Protein Targeting To Membrane Srp Dependent Cotranslational Protein Targeting To Membrane
## Stabilization Of P53 Stabilization Of P53
## Stat5 Activation Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants Stat5 Activation Downstream Of Flt3 Itd Mutants
## Stimuli Sensing Channels Stimuli Sensing Channels
## Striated Muscle Contraction Striated Muscle Contraction
## Sulfide Oxidation To Sulfate Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1 Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation Sumoylation
## Sumoylation Of Chromatin Organization Proteins Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins Sumoylation Of Dna Replication Proteins
## Sumoylation Of Immune Response Proteins Sumoylation Of Immune Response Proteins
## Sumoylation Of Intracellular Receptors Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Factors Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation Suppression Of Phagosomal Maturation
## Surfactant Metabolism Surfactant Metabolism
## Switching Of Origins To A Post Replicative State Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules Synaptic Adhesion Like Molecules
## Syndecan Interactions Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives Synthesis Of 15 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2 Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx Synthesis Of Lipoxins Lx
## Synthesis Of Pa Synthesis Of Pa
## Synthesis Of Pc Synthesis Of Pc
## Synthesis Of Pe Synthesis Of Pe
## Synthesis Of Pg Synthesis Of Pg
## Synthesis Of Pi Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pips At The Plasma Membrane Synthesis Of Pips At The Plasma Membrane
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx Synthesis Of Prostaglandins Pg And Thromboxanes Tx
## Synthesis Of Pyrophosphates In The Cytosol Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Udp N Acetyl Glucosamine Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin Synthesis Secretion And Deacylation Of Ghrelin
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip
## Tachykinin Receptors Bind Tachykinins Tachykinin Receptors Bind Tachykinins
## Tbc Rabgaps Tbc Rabgaps
## Tcf Dependent Signaling In Response To Wnt Tcf Dependent Signaling In Response To Wnt
## Tcr Signaling Tcr Signaling
## Telomere C Strand Lagging Strand Synthesis Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation Telomere C Strand Synthesis Initiation
## Telomere Extension By Telomerase Telomere Extension By Telomerase
## Telomere Maintenance Telomere Maintenance
## Terminal Pathway Of Complement Terminal Pathway Of Complement
## Termination Of Translesion Dna Synthesis Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model The Fatty Acid Cycling Model
## The Phototransduction Cascade The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision The Retinoid Cycle In Cones Daylight Vision
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thrombin Signalling Through Proteinase Activated Receptors Pars Thrombin Signalling Through Proteinase Activated Receptors Pars
## Thromboxane Signalling Through Tp Receptor Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis Thyroxine Biosynthesis
## Tie2 Signaling Tie2 Signaling
## Tight Junction Interactions Tight Junction Interactions
## Tnfr1 Induced Proapoptotic Signaling Tnfr1 Induced Proapoptotic Signaling
## Tnfr1 Mediated Ceramide Production Tnfr1 Mediated Ceramide Production
## Toxicity Of Botulinum Toxin Type D Botd Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Death Receptors And Ligands Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Traf3 Dependent Irf Activation Pathway Traf3 Dependent Irf Activation Pathway
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex
## Traf6 Mediated Irf7 Activation Traf6 Mediated Irf7 Activation
## Trafficking Of Ampa Receptors Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling Trail Signaling
## Trans Golgi Network Vesicle Budding Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of E2f Targets Under Negative Control By Dream Complex Transcription Of E2f Targets Under Negative Control By Dream Complex
## Transcription Of The Hiv Genome Transcription Of The Hiv Genome
## Transcriptional Regulation By E2f6 Transcriptional Regulation By E2f6
## Transcriptional Regulation By Runx1 Transcriptional Regulation By Runx1
## Transcriptional Regulation By Runx3 Transcriptional Regulation By Runx3
## Transcriptional Regulation By Small Rnas Transcriptional Regulation By Small Rnas
## Transcriptional Regulation By Tp53 Transcriptional Regulation By Tp53
## Transcriptional Regulation Of Testis Differentiation Transcriptional Regulation Of Testis Differentiation
## Transcriptional Regulation Of White Adipocyte Differentiation Transcriptional Regulation Of White Adipocyte Differentiation
## Transferrin Endocytosis And Recycling Transferrin Endocytosis And Recycling
## Translation Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh Translesion Synthesis By Polh
## Translesion Synthesis By Polk Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane Translocation Of Slc2a4 Glut4 To The Plasma Membrane
## Transmission Across Chemical Synapses Transmission Across Chemical Synapses
## Transport And Synthesis Of Paps Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars Transport Of Nucleotide Sugars
## Transport Of Organic Anions Transport Of Organic Anions
## Transport Of Small Molecules Transport Of Small Molecules
## Transport Of The Slbp Dependant Mature Mrna Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules Transport Of Vitamins Nucleosides And Related Molecules
## Transport To The Golgi And Subsequent Modification Transport To The Golgi And Subsequent Modification
## Trif Mediated Programmed Cell Death Trif Mediated Programmed Cell Death
## Triglyceride Biosynthesis Triglyceride Biosynthesis
## Triglyceride Catabolism Triglyceride Catabolism
## Triglyceride Metabolism Triglyceride Metabolism
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation Trna Aminoacylation
## Trna Modification In The Mitochondrion Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol Trna Modification In The Nucleus And Cytosol
## Trna Processing Trna Processing
## Trna Processing In The Mitochondrion Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus Trna Processing In The Nucleus
## Trp Channels Trp Channels
## Tryptophan Catabolism Tryptophan Catabolism
## Type I Hemidesmosome Assembly Type I Hemidesmosome Assembly
## Tyrosine Catabolism Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins Tysnd1 Cleaves Peroxisomal Proteins
## Ub Specific Processing Proteases Ub Specific Processing Proteases
## Ubiquinol Biosynthesis Ubiquinol Biosynthesis
## Uch Proteinases Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unwinding Of Dna Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin Uptake And Function Of Diphtheria Toxin
## Urea Cycle Urea Cycle
## Vasopressin Like Receptors Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions Vegf Ligand Receptor Interactions
## Vegfr2 Mediated Cell Proliferation Vegfr2 Mediated Cell Proliferation
## Vesicle Mediated Transport Vesicle Mediated Transport
## Viral Messenger Rna Synthesis Viral Messenger Rna Synthesis
## Visual Phototransduction Visual Phototransduction
## Vitamin B1 Thiamin Metabolism Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism Vitamin D Calciferol Metabolism
## Vitamins Vitamins
## Vldl Assembly Vldl Assembly
## Vldl Clearance Vldl Clearance
## Voltage Gated Potassium Channels Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl Wnt Mediated Activation Of Dvl
## Xenobiotics Xenobiotics
## Zinc Efflux And Compartmentalization By The Slc30 Family Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters Zinc Transporters
## pval
## Interleukin 10 Signaling 4.4e-07
## Interleukin 1 Processing 1.1e-02
## Chemokine Receptors Bind Chemokines 1.3e-02
## Interleukin 4 And Interleukin 13 Signaling 1.7e-02
## Purinergic Signaling In Leishmaniasis Infection 5.3e-02
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 5.4e-02
## Pyroptosis 6.0e-02
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 6.6e-02
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 7.6e-02
## Cd163 Mediating An Anti Inflammatory Response 8.7e-02
## Egfr Transactivation By Gastrin 8.7e-02
## Mapk3 Erk1 Activation 1.0e-01
## Inflammasomes 1.1e-01
## Interleukin 6 Signaling 1.2e-01
## Cd28 Dependent Vav1 Pathway 1.4e-01
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 1.5e-01
## Trafficking And Processing Of Endosomal Tlr 1.6e-01
## Regulated Necrosis 2.0e-01
## Tnfs Bind Their Physiological Receptors 2.2e-01
## The Nlrp3 Inflammasome 2.3e-01
## G2 M Dna Replication Checkpoint 2.5e-01
## Mecp2 Regulates Transcription Factors 2.5e-01
## Runx2 Regulates Chondrocyte Maturation 2.5e-01
## Activation Of Matrix Metalloproteinases 2.8e-01
## Clec7a Inflammasome Pathway 2.9e-01
## Fibronectin Matrix Formation 2.9e-01
## Phosphorylation Of Emi1 2.9e-01
## Ptk6 Promotes Hif1a Stabilization 2.9e-01
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 2.9e-01
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 2.9e-01
## Activation Of Nima Kinases Nek9 Nek6 Nek7 3.3e-01
## Creb Phosphorylation 3.3e-01
## Ctla4 Inhibitory Signaling 3.3e-01
## Interleukin 37 Signaling 3.3e-01
## Signal Transduction By L1 3.3e-01
## Cd28 Dependent Pi3k Akt Signaling 3.5e-01
## Activation Of C3 And C5 3.7e-01
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 3.7e-01
## Interleukin 18 Signaling 3.7e-01
## Mecp2 Regulates Transcription Of Neuronal Ligands 3.7e-01
## Raf Independent Mapk1 3 Activation 3.7e-01
## Runx2 Regulates Genes Involved In Cell Migration 3.7e-01
## Interleukin 6 Family Signaling 3.9e-01
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 3.9e-01
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 4.1e-01
## E2f Enabled Inhibition Of Pre Replication Complex Formation 4.1e-01
## Egfr Interacts With Phospholipase C Gamma 4.1e-01
## Extra Nuclear Estrogen Signaling 4.1e-01
## Interleukin 23 Signaling 4.1e-01
## Interleukin 9 Signaling 4.1e-01
## Mapk1 Erk2 Activation 4.1e-01
## Activation Of The Ap 1 Family Of Transcription Factors 4.4e-01
## Akt Phosphorylates Targets In The Nucleus 4.4e-01
## Camk Iv Mediated Phosphorylation Of Creb 4.4e-01
## Interleukin 21 Signaling 4.4e-01
## Mastl Facilitates Mitotic Progression 4.4e-01
## P75ntr Regulates Axonogenesis 4.4e-01
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 4.5e-01
## Condensation Of Prometaphase Chromosomes 4.7e-01
## Dap12 Interactions 4.7e-01
## Endosomal Vacuolar Pathway 4.7e-01
## Interleukin 27 Signaling 4.7e-01
## Pd 1 Signaling 4.7e-01
## Signaling By Leptin 4.7e-01
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 4.7e-01
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 5.0e-01
## Interleukin 35 Signalling 5.0e-01
## Killing Mechanisms 5.0e-01
## Notch2 Intracellular Domain Regulates Transcription 5.0e-01
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 5.0e-01
## Tandem Pore Domain Potassium Channels 5.0e-01
## Ticam1 Dependent Activation Of Irf3 Irf7 5.0e-01
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 5.0e-01
## Vldlr Internalisation And Degradation 5.0e-01
## Advanced Glycosylation Endproduct Receptor Signaling 5.3e-01
## Apoptosis Induced Dna Fragmentation 5.3e-01
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 5.3e-01
## Diseases Of Immune System 5.3e-01
## Dissolution Of Fibrin Clot 5.3e-01
## Erbb2 Activates Ptk6 Signaling 5.3e-01
## Irf3 Mediated Induction Of Type I Ifn 5.3e-01
## Mapk Targets Nuclear Events Mediated By Map Kinases 5.3e-01
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 5.3e-01
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 5.3e-01
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 5.3e-01
## Perk Regulates Gene Expression 5.5e-01
## Cd28 Co Stimulation 5.6e-01
## Golgi Cisternae Pericentriolar Stack Reorganization 5.6e-01
## Interleukin 15 Signaling 5.6e-01
## Shc1 Events In Egfr Signaling 5.6e-01
## Constitutive Signaling By Egfrviii 5.8e-01
## Depolymerisation Of The Nuclear Lamina 5.8e-01
## Erbb2 Regulates Cell Motility 5.8e-01
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 5.8e-01
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 5.8e-01
## Wnt5a Dependent Internalization Of Fzd4 5.8e-01
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 5.8e-01
## Costimulation By The Cd28 Family 6.1e-01
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 6.1e-01
## Grb2 Events In Erbb2 Signaling 6.1e-01
## Nod1 2 Signaling Pathway 6.1e-01
## Pi3k Events In Erbb2 Signaling 6.1e-01
## Signaling By Erbb2 Ecd Mutants 6.1e-01
## Sting Mediated Induction Of Host Immune Responses 6.1e-01
## Sumoylation Of Dna Methylation Proteins 6.1e-01
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 6.1e-01
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 6.3e-01
## Gab1 Signalosome 6.3e-01
## Interleukin 12 Family Signaling 6.3e-01
## Rip Mediated Nfkb Activation Via Zbp1 6.3e-01
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 6.4e-01
## Constitutive Signaling By Aberrant Pi3k In Cancer 6.5e-01
## Irak4 Deficiency Tlr2 4 6.5e-01
## Mecp2 Regulates Neuronal Receptors And Channels 6.5e-01
## Signaling By Cytosolic Fgfr1 Fusion Mutants 6.5e-01
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 6.5e-01
## Ngf Stimulated Transcription 6.6e-01
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 6.7e-01
## Initiation Of Nuclear Envelope Ne Reformation 6.7e-01
## Ldl Clearance 6.7e-01
## Phase 4 Resting Membrane Potential 6.7e-01
## Phosphorylation Of The Apc C 6.9e-01
## Pka Mediated Phosphorylation Of Creb 6.9e-01
## Signaling By Kit In Disease 6.9e-01
## Signaling By Pdgfr In Disease 6.9e-01
## Tnfr2 Non Canonical Nf Kb Pathway 6.9e-01
## Collagen Degradation 7.1e-01
## Regulation Of Tlr By Endogenous Ligand 7.1e-01
## Signaling By Scf Kit 7.1e-01
## Zbp1 Dai Mediated Induction Of Type I Ifns 7.1e-01
## E2f Mediated Regulation Of Dna Replication 7.2e-01
## Interleukin 2 Family Signaling 7.2e-01
## Pi3k Akt Signaling In Cancer 7.2e-01
## Shc1 Events In Erbb2 Signaling 7.2e-01
## Ikk Complex Recruitment Mediated By Rip1 7.4e-01
## Termination Of O Glycan Biosynthesis 7.4e-01
## Apc C Cdc20 Mediated Degradation Of Cyclin B 7.5e-01
## Growth Hormone Receptor Signaling 7.5e-01
## Interleukin 12 Signaling 7.5e-01
## Runx2 Regulates Osteoblast Differentiation 7.5e-01
## Traf6 Mediated Nf Kb Activation 7.5e-01
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 7.7e-01
## Cyclin A B1 B2 Associated Events During G2 M Transition 7.7e-01
## Inactivation Of Csf3 G Csf Signaling 7.7e-01
## Notch3 Activation And Transmission Of Signal To The Nucleus 7.7e-01
## Signaling By Egfr In Cancer 7.7e-01
## Constitutive Signaling By Akt1 E17k In Cancer 7.8e-01
## Dectin 2 Family 7.8e-01
## Interleukin 17 Signaling 7.8e-01
## Interleukin 20 Family Signaling 7.8e-01
## Negative Regulation Of The Pi3k Akt Network 7.8e-01
## Signaling By Erbb2 In Cancer 7.8e-01
## Wnt Ligand Biogenesis And Trafficking 7.8e-01
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 7.9e-01
## Eph Ephrin Mediated Repulsion Of Cells 7.9e-01
## G0 And Early G1 7.9e-01
## Interleukin Receptor Shc Signaling 7.9e-01
## Toll Like Receptor 9 Tlr9 Cascade 7.9e-01
## Vegfr2 Mediated Vascular Permeability 7.9e-01
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 8.1e-01
## Myd88 Independent Tlr4 Cascade 8.1e-01
## Dap12 Signaling 8.2e-01
## Downregulation Of Erbb2 Signaling 8.2e-01
## Downstream Signal Transduction 8.2e-01
## G1 S Specific Transcription 8.2e-01
## Interleukin 1 Family Signaling 8.2e-01
## Ripk1 Mediated Regulated Necrosis 8.2e-01
## Signaling By Ptk6 8.2e-01
## Signaling By Csf3 G Csf 8.3e-01
## Tnfr1 Induced Nfkappab Signaling Pathway 8.3e-01
## Egfr Downregulation 8.4e-01
## Fgfr1 Mutant Receptor Activation 8.4e-01
## Runx2 Regulates Bone Development 8.4e-01
## Transcriptional Regulation Of Pluripotent Stem Cells 8.4e-01
## Regulation Of Mecp2 Expression And Activity 8.5e-01
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 8.5e-01
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 8.5e-01
## Cargo Concentration In The Er 8.6e-01
## Plasma Lipoprotein Clearance 8.6e-01
## Sialic Acid Metabolism 8.6e-01
## Signaling By Notch2 8.6e-01
## Assembly Of Collagen Fibrils And Other Multimeric Structures 8.7e-01
## Gpvi Mediated Activation Cascade 8.7e-01
## Nuclear Events Kinase And Transcription Factor Activation 8.7e-01
## Regulation Of Tnfr1 Signaling 8.7e-01
## Signaling By Interleukins 8.7e-01
## Cytosolic Sensors Of Pathogen Associated Dna 8.8e-01
## Interleukin 7 Signaling 8.8e-01
## Nuclear Pore Complex Npc Disassembly 8.8e-01
## Ca Dependent Events 8.9e-01
## Metalloprotease Dubs 8.9e-01
## Ovarian Tumor Domain Proteases 8.9e-01
## Peptide Ligand Binding Receptors 8.9e-01
## Regulation Of Tp53 Expression And Degradation 8.9e-01
## Rhoh Gtpase Cycle 8.9e-01
## Senescence Associated Secretory Phenotype Sasp 8.9e-01
## Signaling By Fgfr1 In Disease 8.9e-01
## Toll Like Receptor Cascades 8.9e-01
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 8.9e-01
## Association Of Tric Cct With Target Proteins During Biosynthesis 9.0e-01
## Complement Cascade 9.0e-01
## Generation Of Second Messenger Molecules 9.0e-01
## Dag And Ip3 Signaling 9.1e-01
## Interferon Gamma Signaling 9.1e-01
## Transcriptional Regulation By Ventx 9.1e-01
## Beta Defensins 9.2e-01
## Circadian Clock 9.2e-01
## Rhob Gtpase Cycle 9.2e-01
## Rhof Gtpase Cycle 9.2e-01
## Sumoylation Of Transcription Cofactors 9.2e-01
## Tnf Signaling 9.2e-01
## Tp53 Regulates Transcription Of Cell Death Genes 9.2e-01
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 9.2e-01
## Rhoc Gtpase Cycle 9.3e-01
## Rhog Gtpase Cycle 9.3e-01
## Heme Signaling 9.4e-01
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 9.4e-01
## Irs Mediated Signalling 9.4e-01
## Retrograde Transport At The Trans Golgi Network 9.4e-01
## Signaling By Notch3 9.4e-01
## Toll Like Receptor Tlr1 Tlr2 Cascade 9.4e-01
## Tp53 Regulates Transcription Of Cell Cycle Genes 9.4e-01
## Antigen Processing Cross Presentation 9.5e-01
## Apoptotic Execution Phase 9.5e-01
## Cargo Recognition For Clathrin Mediated Endocytosis 9.5e-01
## Defensins 9.5e-01
## Rhod Gtpase Cycle 9.5e-01
## Signaling By Egfr 9.5e-01
## Signaling By Erbb2 9.5e-01
## Fceri Mediated Mapk Activation 9.6e-01
## G Protein Mediated Events 9.6e-01
## Insulin Receptor Signalling Cascade 9.6e-01
## Intrinsic Pathway For Apoptosis 9.6e-01
## Nuclear Envelope Breakdown 9.6e-01
## Rhoj Gtpase Cycle 9.6e-01
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 9.6e-01
## Transcriptional Activation Of Mitochondrial Biogenesis 9.6e-01
## Ca2 Pathway 9.7e-01
## Collagen Formation 9.7e-01
## Eph Ephrin Signaling 9.7e-01
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 9.7e-01
## Nrage Signals Death Through Jnk 9.7e-01
## O Linked Glycosylation Of Mucins 9.7e-01
## Rac2 Gtpase Cycle 9.7e-01
## Rhoq Gtpase Cycle 9.7e-01
## Signaling By Erbb4 9.7e-01
## Signaling By Pdgf 9.7e-01
## Tp53 Regulates Transcription Of Dna Repair Genes 9.7e-01
## Transcriptional Regulation Of Granulopoiesis 9.7e-01
## Unfolded Protein Response Upr 9.7e-01
## Asymmetric Localization Of Pcp Proteins 9.8e-01
## Class B 2 Secretin Family Receptors 9.8e-01
## Copi Mediated Anterograde Transport 9.8e-01
## Copii Mediated Vesicle Transport 9.8e-01
## Diseases Associated With O Glycosylation Of Proteins 9.8e-01
## Dna Methylation 9.8e-01
## Fcgr3a Mediated Il10 Synthesis 9.8e-01
## Interleukin 1 Signaling 9.8e-01
## Ncam Signaling For Neurite Out Growth 9.8e-01
## P75 Ntr Receptor Mediated Signalling 9.8e-01
## Rac3 Gtpase Cycle 9.8e-01
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 9.8e-01
## Signaling By Fgfr In Disease 9.8e-01
## Synthesis Of Substrates In N Glycan Biosythesis 9.8e-01
## Transcriptional Regulation By Mecp2 9.8e-01
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 9.9e-01
## Apc C Mediated Degradation Of Cell Cycle Proteins 9.9e-01
## Aurka Activation By Tpx2 9.9e-01
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 9.9e-01
## Cell Death Signalling Via Nrage Nrif And Nade 9.9e-01
## Clathrin Mediated Endocytosis 9.9e-01
## Condensation Of Prophase Chromosomes 9.9e-01
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 9.9e-01
## Death Receptor Signalling 9.9e-01
## Degradation Of The Extracellular Matrix 9.9e-01
## Ecm Proteoglycans 9.9e-01
## Fceri Mediated Ca 2 Mobilization 9.9e-01
## G Alpha 12 13 Signalling Events 9.9e-01
## Initial Triggering Of Complement 9.9e-01
## Integrin Cell Surface Interactions 9.9e-01
## Interferon Alpha Beta Signaling 9.9e-01
## L1cam Interactions 9.9e-01
## Nuclear Envelope Ne Reassembly 9.9e-01
## Plasma Lipoprotein Assembly Remodeling And Clearance 9.9e-01
## Potential Therapeutics For Sars 9.9e-01
## Prc2 Methylates Histones And Dna 9.9e-01
## Programmed Cell Death 9.9e-01
## Recruitment Of Mitotic Centrosome Proteins And Complexes 9.9e-01
## Regulation Of Plk1 Activity At G2 M Transition 9.9e-01
## Regulation Of Runx2 Expression And Activity 9.9e-01
## Rmts Methylate Histone Arginines 9.9e-01
## Signaling By Insulin Receptor 9.9e-01
## Signaling By Met 9.9e-01
## Signaling By Ntrks 9.9e-01
## Signaling By Tgf Beta Receptor Complex 9.9e-01
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 9.9e-01
## Transcriptional Regulation By Runx2 9.9e-01
## 2 Ltr Circle Formation 1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 1.0e+00
## Abacavir Metabolism 1.0e+00
## Abacavir Transmembrane Transport 1.0e+00
## Abacavir Transport And Metabolism 1.0e+00
## Abc Family Proteins Mediated Transport 1.0e+00
## Abc Transporter Disorders 1.0e+00
## Abc Transporters In Lipid Homeostasis 1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 1.0e+00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 1.0e+00
## Acetylcholine Binding And Downstream Events 1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 1.0e+00
## Acetylcholine Neurotransmitter Release Cycle 1.0e+00
## Acetylcholine Regulates Insulin Secretion 1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding 1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus 1.0e+00
## Activated Ntrk2 Signals Through Cdk5 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3 1.0e+00
## Activated Ntrk2 Signals Through Fyn 1.0e+00
## Activated Ntrk2 Signals Through Pi3k 1.0e+00
## Activated Ntrk2 Signals Through Ras 1.0e+00
## Activated Ntrk3 Signals Through Pi3k 1.0e+00
## Activated Ntrk3 Signals Through Ras 1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 1.0e+00
## Activated Tak1 Mediates P38 Mapk Activation 1.0e+00
## Activation Of Ampk Downstream Of Nmdars 1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 1.0e+00
## Activation Of Atr In Response To Replication Stress 1.0e+00
## Activation Of Bad And Translocation To Mitochondria 1.0e+00
## Activation Of Bh3 Only Proteins 1.0e+00
## Activation Of Caspases Through Apoptosome Mediated Cleavage 1.0e+00
## Activation Of Gene Expression By Srebf Srebp 1.0e+00
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding 1.0e+00
## Activation Of Nmda Receptors And Postsynaptic Events 1.0e+00
## Activation Of Noxa And Translocation To Mitochondria 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 1.0e+00
## Activation Of Puma And Translocation To Mitochondria 1.0e+00
## Activation Of Rac1 1.0e+00
## Activation Of Rac1 Downstream Of Nmdars 1.0e+00
## Activation Of Ras In B Cells 1.0e+00
## Activation Of Smo 1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 1.0e+00
## Activation Of The Phototransduction Cascade 1.0e+00
## Activation Of The Pre Replicative Complex 1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 1.0e+00
## Activation Of Trka Receptors 1.0e+00
## Acyl Chain Remodeling Of Cl 1.0e+00
## Acyl Chain Remodeling Of Dag And Tag 1.0e+00
## Acyl Chain Remodelling Of Pc 1.0e+00
## Acyl Chain Remodelling Of Pe 1.0e+00
## Acyl Chain Remodelling Of Pg 1.0e+00
## Acyl Chain Remodelling Of Pi 1.0e+00
## Acyl Chain Remodelling Of Ps 1.0e+00
## Adaptive Immune System 1.0e+00
## Adenylate Cyclase Activating Pathway 1.0e+00
## Adenylate Cyclase Inhibitory Pathway 1.0e+00
## Adherens Junctions Interactions 1.0e+00
## Adora2b Mediated Anti Inflammatory Cytokines Production 1.0e+00
## Adp Signalling Through P2y Purinoceptor 1 1.0e+00
## Adp Signalling Through P2y Purinoceptor 12 1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion 1.0e+00
## Adrenoceptors 1.0e+00
## Aflatoxin Activation And Detoxification 1.0e+00
## Aggrephagy 1.0e+00
## Akt Phosphorylates Targets In The Cytosol 1.0e+00
## Alpha Defensins 1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 1.0e+00
## Alpha Oxidation Of Phytanate 1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway 1.0e+00
## Alternative Complement Activation 1.0e+00
## Amine Ligand Binding Receptors 1.0e+00
## Amino Acid Conjugation 1.0e+00
## Amino Acid Transport Across The Plasma Membrane 1.0e+00
## Amino Acids Regulate Mtorc1 1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity 1.0e+00
## Amyloid Fiber Formation 1.0e+00
## Anchoring Fibril Formation 1.0e+00
## Anchoring Of The Basal Body To The Plasma Membrane 1.0e+00
## Androgen Biosynthesis 1.0e+00
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation 1.0e+00
## Antimicrobial Peptides 1.0e+00
## Antiviral Mechanism By Ifn Stimulated Genes 1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a 1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection 1.0e+00
## Apoptosis 1.0e+00
## Apoptotic Cleavage Of Cell Adhesion Proteins 1.0e+00
## Apoptotic Cleavage Of Cellular Proteins 1.0e+00
## Apoptotic Factor Mediated Response 1.0e+00
## Aquaporin Mediated Transport 1.0e+00
## Arachidonate Production From Dag 1.0e+00
## Arachidonic Acid Metabolism 1.0e+00
## Arms Mediated Activation 1.0e+00
## Aryl Hydrocarbon Receptor Signalling 1.0e+00
## Asparagine N Linked Glycosylation 1.0e+00
## Aspartate And Asparagine Metabolism 1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors 1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes 1.0e+00
## Assembly Of The Hiv Virion 1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication 1.0e+00
## Assembly Of The Pre Replicative Complex 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones 1.0e+00
## Attachment And Entry 1.0e+00
## Attachment Of Gpi Anchor To Upar 1.0e+00
## Attenuation Phase 1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 1.0e+00
## Autophagy 1.0e+00
## B Wich Complex Positively Regulates Rrna Expression 1.0e+00
## Base Excision Repair 1.0e+00
## Base Excision Repair Ap Site Formation 1.0e+00
## Basigin Interactions 1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium 1.0e+00
## Beta Catenin Independent Wnt Signaling 1.0e+00
## Beta Catenin Phosphorylation Cascade 1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 1.0e+00
## Beta Oxidation Of Pristanoyl Coa 1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids 1.0e+00
## Bicarbonate Transporters 1.0e+00
## Bile Acid And Bile Salt Metabolism 1.0e+00
## Binding And Uptake Of Ligands By Scavenger Receptors 1.0e+00
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 1.0e+00
## Biological Oxidations 1.0e+00
## Biosynthesis Of Epa Derived Spms 1.0e+00
## Biosynthesis Of Maresin Like Spms 1.0e+00
## Biosynthesis Of Maresins 1.0e+00
## Biosynthesis Of Specialized Proresolving Mediators Spms 1.0e+00
## Biotin Transport And Metabolism 1.0e+00
## Blood Group Systems Biosynthesis 1.0e+00
## Branched Chain Amino Acid Catabolism 1.0e+00
## Budding And Maturation Of Hiv Virion 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 1.0e+00
## Butyrophilin Btn Family Interactions 1.0e+00
## C Type Lectin Receptors Clrs 1.0e+00
## Ca2 Activated K Channels 1.0e+00
## Calcineurin Activates Nfat 1.0e+00
## Calcitonin Like Ligand Receptors 1.0e+00
## Calnexin Calreticulin Cycle 1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin 1.0e+00
## Cardiac Conduction 1.0e+00
## Cargo Trafficking To The Periciliary Membrane 1.0e+00
## Carnitine Metabolism 1.0e+00
## Caspase Activation Via Death Receptors In The Presence Of Ligand 1.0e+00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 1.0e+00
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 1.0e+00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 1.0e+00
## Cation Coupled Chloride Cotransporters 1.0e+00
## Cd209 Dc Sign Signaling 1.0e+00
## Cd22 Mediated Bcr Regulation 1.0e+00
## Cdc42 Gtpase Cycle 1.0e+00
## Cdc6 Association With The Orc Origin Complex 1.0e+00
## Cell Cell Communication 1.0e+00
## Cell Cell Junction Organization 1.0e+00
## Cell Cycle 1.0e+00
## Cell Cycle Checkpoints 1.0e+00
## Cell Cycle Mitotic 1.0e+00
## Cell Extracellular Matrix Interactions 1.0e+00
## Cell Junction Organization 1.0e+00
## Cell Surface Interactions At The Vascular Wall 1.0e+00
## Cellular Hexose Transport 1.0e+00
## Cellular Response To Chemical Stress 1.0e+00
## Cellular Response To Heat Stress 1.0e+00
## Cellular Response To Hypoxia 1.0e+00
## Cellular Response To Starvation 1.0e+00
## Cellular Responses To External Stimuli 1.0e+00
## Cellular Senescence 1.0e+00
## Cgmp Effects 1.0e+00
## Chaperone Mediated Autophagy 1.0e+00
## Chl1 Interactions 1.0e+00
## Cholesterol Biosynthesis 1.0e+00
## Choline Catabolism 1.0e+00
## Chondroitin Sulfate Biosynthesis 1.0e+00
## Chondroitin Sulfate Dermatan Sulfate Metabolism 1.0e+00
## Chrebp Activates Metabolic Gene Expression 1.0e+00
## Chromatin Modifying Enzymes 1.0e+00
## Chromosome Maintenance 1.0e+00
## Chylomicron Assembly 1.0e+00
## Chylomicron Clearance 1.0e+00
## Chylomicron Remodeling 1.0e+00
## Cilium Assembly 1.0e+00
## Citric Acid Cycle Tca Cycle 1.0e+00
## Class A 1 Rhodopsin Like Receptors 1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors 1.0e+00
## Class I Mhc Mediated Antigen Processing Presentation 1.0e+00
## Class I Peroxisomal Membrane Protein Import 1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation 1.0e+00
## Clec7a Dectin 1 Signaling 1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 1.0e+00
## Coenzyme A Biosynthesis 1.0e+00
## Cohesin Loading Onto Chromatin 1.0e+00
## Collagen Biosynthesis And Modifying Enzymes 1.0e+00
## Collagen Chain Trimerization 1.0e+00
## Common Pathway Of Fibrin Clot Formation 1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation 1.0e+00
## Complex I Biogenesis 1.0e+00
## Conjugation Of Benzoate With Glycine 1.0e+00
## Constitutive Signaling By Overexpressed Erbb2 1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic 1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic 1.0e+00
## Creatine Metabolism 1.0e+00
## Creation Of C4 And C2 Activators 1.0e+00
## Creb3 Factors Activate Genes 1.0e+00
## Cristae Formation 1.0e+00
## Crmps In Sema3a Signaling 1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 1.0e+00
## Crosslinking Of Collagen Fibrils 1.0e+00
## Cs Ds Degradation 1.0e+00
## Cyclin A Cdk2 Associated Events At S Phase Entry 1.0e+00
## Cyclin D Associated Events In G1 1.0e+00
## Cyp2e1 Reactions 1.0e+00
## Cytochrome C Mediated Apoptotic Response 1.0e+00
## Cytochrome P450 Arranged By Substrate Type 1.0e+00
## Cytokine Signaling In Immune System 1.0e+00
## Cytoprotection By Hmox1 1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly 1.0e+00
## Cytosolic Sulfonation Of Small Molecules 1.0e+00
## Cytosolic Trna Aminoacylation 1.0e+00
## Darpp 32 Events 1.0e+00
## Dcc Mediated Attractive Signaling 1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex 1.0e+00
## Deadenylation Dependent Mrna Decay 1.0e+00
## Deadenylation Of Mrna 1.0e+00
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type 1.0e+00
## Defective Cftr Causes Cystic Fibrosis 1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type 1.0e+00
## Defective Chst3 Causes Sedcjd 1.0e+00
## Defective Chst6 Causes Mcdc1 1.0e+00
## Defective Chsy1 Causes Tpbs 1.0e+00
## Defective Csf2rb Causes Smdp5 1.0e+00
## Defective Ext2 Causes Exostoses 2 1.0e+00
## Defective F9 Activation 1.0e+00
## Defective Factor Ix Causes Hemophilia B 1.0e+00
## Defective Factor Viii Causes Hemophilia A 1.0e+00
## Defective Lfng Causes Scdo3 1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis 1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15 1.0e+00
## Defects In Biotin Btn Metabolism 1.0e+00
## Defects In Cobalamin B12 Metabolism 1.0e+00
## Defects In Vitamin And Cofactor Metabolism 1.0e+00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 1.0e+00
## Degradation Of Axin 1.0e+00
## Degradation Of Beta Catenin By The Destruction Complex 1.0e+00
## Degradation Of Cysteine And Homocysteine 1.0e+00
## Degradation Of Dvl 1.0e+00
## Degradation Of Gli1 By The Proteasome 1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 1.0e+00
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 1.0e+00
## Dermatan Sulfate Biosynthesis 1.0e+00
## Detoxification Of Reactive Oxygen Species 1.0e+00
## Deubiquitination 1.0e+00
## Developmental Biology 1.0e+00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 1.0e+00
## Digestion 1.0e+00
## Digestion And Absorption 1.0e+00
## Digestion Of Dietary Carbohydrate 1.0e+00
## Digestion Of Dietary Lipid 1.0e+00
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism 1.0e+00
## Diseases Associated With Glycosylation Precursor Biosynthesis 1.0e+00
## Diseases Associated With N Glycosylation Of Proteins 1.0e+00
## Diseases Associated With Surfactant Metabolism 1.0e+00
## Diseases Of Base Excision Repair 1.0e+00
## Diseases Of Carbohydrate Metabolism 1.0e+00
## Diseases Of Dna Repair 1.0e+00
## Diseases Of Glycosylation 1.0e+00
## Diseases Of Metabolism 1.0e+00
## Diseases Of Mismatch Repair Mmr 1.0e+00
## Diseases Of Mitotic Cell Cycle 1.0e+00
## Diseases Of Programmed Cell Death 1.0e+00
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 1.0e+00
## Disinhibition Of Snare Formation 1.0e+00
## Disorders Of Transmembrane Transporters 1.0e+00
## Displacement Of Dna Glycosylase By Apex1 1.0e+00
## Dna Damage Bypass 1.0e+00
## Dna Damage Recognition In Gg Ner 1.0e+00
## Dna Damage Reversal 1.0e+00
## Dna Damage Telomere Stress Induced Senescence 1.0e+00
## Dna Double Strand Break Repair 1.0e+00
## Dna Double Strand Break Response 1.0e+00
## Dna Repair 1.0e+00
## Dna Replication 1.0e+00
## Dna Replication Initiation 1.0e+00
## Dna Replication Pre Initiation 1.0e+00
## Dna Strand Elongation 1.0e+00
## Dopamine Neurotransmitter Release Cycle 1.0e+00
## Dopamine Receptors 1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling 1.0e+00
## Downregulation Of Erbb4 Signaling 1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling 1.0e+00
## Downstream Signaling Events Of B Cell Receptor Bcr 1.0e+00
## Downstream Signaling Of Activated Fgfr1 1.0e+00
## Downstream Signaling Of Activated Fgfr2 1.0e+00
## Downstream Signaling Of Activated Fgfr3 1.0e+00
## Downstream Signaling Of Activated Fgfr4 1.0e+00
## Dscam Interactions 1.0e+00
## Dual Incision In Gg Ner 1.0e+00
## Dual Incision In Tc Ner 1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 1.0e+00
## Early Phase Of Hiv Life Cycle 1.0e+00
## Effects Of Pip2 Hydrolysis 1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 1.0e+00
## Eicosanoid Ligand Binding Receptors 1.0e+00
## Eicosanoids 1.0e+00
## Elastic Fibre Formation 1.0e+00
## Electric Transmission Across Gap Junctions 1.0e+00
## Elevation Of Cytosolic Ca2 Levels 1.0e+00
## Endogenous Sterols 1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt 1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 1.0e+00
## Enos Activation 1.0e+00
## Epha Mediated Growth Cone Collapse 1.0e+00
## Ephb Mediated Forward Signaling 1.0e+00
## Ephrin Signaling 1.0e+00
## Epigenetic Regulation Of Gene Expression 1.0e+00
## Er Quality Control Compartment Erqc 1.0e+00
## Er To Golgi Anterograde Transport 1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 1.0e+00
## Erk Mapk Targets 1.0e+00
## Erks Are Inactivated 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg 1.0e+00
## Erythropoietin Activates Ras 1.0e+00
## Erythropoietin Activates Stat5 1.0e+00
## Esr Mediated Signaling 1.0e+00
## Establishment Of Sister Chromatid Cohesion 1.0e+00
## Estrogen Biosynthesis 1.0e+00
## Estrogen Dependent Gene Expression 1.0e+00
## Estrogen Stimulated Signaling Through Prkcz 1.0e+00
## Ethanol Oxidation 1.0e+00
## Eukaryotic Translation Elongation 1.0e+00
## Eukaryotic Translation Initiation 1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus 1.0e+00
## Extension Of Telomeres 1.0e+00
## Extracellular Matrix Organization 1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Factors Involved In Megakaryocyte Development And Platelet Production 1.0e+00
## Fanconi Anemia Pathway 1.0e+00
## Fasl Cd95l Signaling 1.0e+00
## Fatty Acid Metabolism 1.0e+00
## Fatty Acids 1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 1.0e+00
## Fatty Acyl Coa Biosynthesis 1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer 1.0e+00
## Fc Epsilon Receptor Fceri Signaling 1.0e+00
## Fceri Mediated Nf Kb Activation 1.0e+00
## Fcgamma Receptor Fcgr Dependent Phagocytosis 1.0e+00
## Fcgr Activation 1.0e+00
## Fertilization 1.0e+00
## Fgfr1 Ligand Binding And Activation 1.0e+00
## Fgfr1b Ligand Binding And Activation 1.0e+00
## Fgfr1c Ligand Binding And Activation 1.0e+00
## Fgfr2 Alternative Splicing 1.0e+00
## Fgfr2 Ligand Binding And Activation 1.0e+00
## Fgfr2 Mutant Receptor Activation 1.0e+00
## Fgfr2b Ligand Binding And Activation 1.0e+00
## Fgfr2c Ligand Binding And Activation 1.0e+00
## Fgfr3 Ligand Binding And Activation 1.0e+00
## Fgfr3b Ligand Binding And Activation 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 1.0e+00
## Flt3 Signaling 1.0e+00
## Flt3 Signaling By Cbl Mutants 1.0e+00
## Flt3 Signaling In Disease 1.0e+00
## Flt3 Signaling Through Src Family Kinases 1.0e+00
## Folding Of Actin By Cct Tric 1.0e+00
## Formation Of Apoptosome 1.0e+00
## Formation Of Atp By Chemiosmotic Coupling 1.0e+00
## Formation Of Fibrin Clot Clotting Cascade 1.0e+00
## Formation Of Incision Complex In Gg Ner 1.0e+00
## Formation Of Rna Pol Ii Elongation Complex 1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf 1.0e+00
## Formation Of Tc Ner Pre Incision Complex 1.0e+00
## Formation Of The Beta Catenin Tcf Transactivating Complex 1.0e+00
## Formation Of The Cornified Envelope 1.0e+00
## Formation Of The Early Elongation Complex 1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric 1.0e+00
## Formation Of Xylulose 5 Phosphate 1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 1.0e+00
## Foxo Mediated Transcription 1.0e+00
## Foxo Mediated Transcription Of Cell Cycle Genes 1.0e+00
## Foxo Mediated Transcription Of Cell Death Genes 1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 1.0e+00
## Free Fatty Acid Receptors 1.0e+00
## Free Fatty Acids Regulate Insulin Secretion 1.0e+00
## Frs Mediated Fgfr1 Signaling 1.0e+00
## Frs Mediated Fgfr2 Signaling 1.0e+00
## Frs Mediated Fgfr3 Signaling 1.0e+00
## Frs Mediated Fgfr4 Signaling 1.0e+00
## Fructose Catabolism 1.0e+00
## Fructose Metabolism 1.0e+00
## G Alpha I Signalling Events 1.0e+00
## G Alpha Q Signalling Events 1.0e+00
## G Alpha S Signalling Events 1.0e+00
## G Alpha Z Signalling Events 1.0e+00
## G Beta Gamma Signalling Through Cdc42 1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma 1.0e+00
## G Protein Activation 1.0e+00
## G Protein Beta Gamma Signalling 1.0e+00
## G1 S Dna Damage Checkpoints 1.0e+00
## G2 M Checkpoints 1.0e+00
## G2 M Dna Damage Checkpoint 1.0e+00
## G2 Phase 1.0e+00
## Gaba B Receptor Activation 1.0e+00
## Gaba Receptor Activation 1.0e+00
## Gaba Synthesis Release Reuptake And Degradation 1.0e+00
## Galactose Catabolism 1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 1.0e+00
## Gap Junction Assembly 1.0e+00
## Gap Junction Degradation 1.0e+00
## Gap Junction Trafficking And Regulation 1.0e+00
## Gdp Fucose Biosynthesis 1.0e+00
## Gene Silencing By Rna 1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner 1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 1.0e+00
## Glucagon Signaling In Metabolic Regulation 1.0e+00
## Glucagon Type Ligand Receptors 1.0e+00
## Glucocorticoid Biosynthesis 1.0e+00
## Gluconeogenesis 1.0e+00
## Glucose Metabolism 1.0e+00
## Glucuronidation 1.0e+00
## Glutamate And Glutamine Metabolism 1.0e+00
## Glutamate Neurotransmitter Release Cycle 1.0e+00
## Glutathione Conjugation 1.0e+00
## Glutathione Synthesis And Recycling 1.0e+00
## Glycerophospholipid Biosynthesis 1.0e+00
## Glycerophospholipid Catabolism 1.0e+00
## Glycogen Breakdown Glycogenolysis 1.0e+00
## Glycogen Metabolism 1.0e+00
## Glycogen Storage Diseases 1.0e+00
## Glycogen Synthesis 1.0e+00
## Glycolysis 1.0e+00
## Glycosaminoglycan Metabolism 1.0e+00
## Glycosphingolipid Metabolism 1.0e+00
## Glyoxylate Metabolism And Glycine Degradation 1.0e+00
## Golgi Associated Vesicle Biogenesis 1.0e+00
## Golgi To Er Retrograde Transport 1.0e+00
## Gp1b Ix V Activation Signalling 1.0e+00
## Gpcr Ligand Binding 1.0e+00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 1.0e+00
## Grb7 Events In Erbb2 Signaling 1.0e+00
## Hats Acetylate Histones 1.0e+00
## Hcmv Early Events 1.0e+00
## Hcmv Infection 1.0e+00
## Hcmv Late Events 1.0e+00
## Hdacs Deacetylate Histones 1.0e+00
## Hdl Assembly 1.0e+00
## Hdl Clearance 1.0e+00
## Hdl Remodeling 1.0e+00
## Hdms Demethylate Histones 1.0e+00
## Hdr Through Homologous Recombination Hrr 1.0e+00
## Hdr Through Mmej Alt Nhej 1.0e+00
## Hdr Through Single Strand Annealing Ssa 1.0e+00
## Hedgehog Ligand Biogenesis 1.0e+00
## Hedgehog Off State 1.0e+00
## Hedgehog On State 1.0e+00
## Heme Biosynthesis 1.0e+00
## Heme Degradation 1.0e+00
## Hemostasis 1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism 1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 1.0e+00
## Histidine Catabolism 1.0e+00
## Hiv Elongation Arrest And Recovery 1.0e+00
## Hiv Infection 1.0e+00
## Hiv Life Cycle 1.0e+00
## Hiv Transcription Elongation 1.0e+00
## Hiv Transcription Initiation 1.0e+00
## Homologous Dna Pairing And Strand Exchange 1.0e+00
## Homology Directed Repair 1.0e+00
## Hormone Ligand Binding Receptors 1.0e+00
## Host Interactions Of Hiv Factors 1.0e+00
## Hs Gag Biosynthesis 1.0e+00
## Hs Gag Degradation 1.0e+00
## Hsf1 Activation 1.0e+00
## Hsf1 Dependent Transactivation 1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna 1.0e+00
## Hyaluronan Biosynthesis And Export 1.0e+00
## Hyaluronan Metabolism 1.0e+00
## Hyaluronan Uptake And Degradation 1.0e+00
## Hydrolysis Of Lpc 1.0e+00
## Ikba Variant Leads To Eda Id 1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions 1.0e+00
## Inactivation Of Cdc42 And Rac1 1.0e+00
## Incretin Synthesis Secretion And Inactivation 1.0e+00
## Infection With Mycobacterium Tuberculosis 1.0e+00
## Infectious Disease 1.0e+00
## Influenza Infection 1.0e+00
## Inhibition Of Dna Recombination At Telomere 1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 1.0e+00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 1.0e+00
## Innate Immune System 1.0e+00
## Inositol Phosphate Metabolism 1.0e+00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 1.0e+00
## Insulin Processing 1.0e+00
## Insulin Receptor Recycling 1.0e+00
## Integration Of Energy Metabolism 1.0e+00
## Integration Of Provirus 1.0e+00
## Integrin Signaling 1.0e+00
## Interaction Between L1 And Ankyrins 1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida 1.0e+00
## Interactions Of Rev With Host Cellular Proteins 1.0e+00
## Interactions Of Vpr With Host Cellular Proteins 1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates 1.0e+00
## Interferon Signaling 1.0e+00
## Interleukin 2 Signaling 1.0e+00
## Interleukin 36 Pathway 1.0e+00
## Intestinal Absorption 1.0e+00
## Intra Golgi And Retrograde Golgi To Er Traffic 1.0e+00
## Intra Golgi Traffic 1.0e+00
## Intracellular Signaling By Second Messengers 1.0e+00
## Intraflagellar Transport 1.0e+00
## Intrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Inwardly Rectifying K Channels 1.0e+00
## Ion Channel Transport 1.0e+00
## Ion Homeostasis 1.0e+00
## Ion Transport By P Type Atpases 1.0e+00
## Ionotropic Activity Of Kainate Receptors 1.0e+00
## Irak1 Recruits Ikk Complex 1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex 1.0e+00
## Ire1alpha Activates Chaperones 1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn 1.0e+00
## Iron Uptake And Transport 1.0e+00
## Irs Activation 1.0e+00
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 1.0e+00
## Josephin Domain Dubs 1.0e+00
## Keratan Sulfate Biosynthesis 1.0e+00
## Keratan Sulfate Degradation 1.0e+00
## Keratan Sulfate Keratin Metabolism 1.0e+00
## Keratinization 1.0e+00
## Ketone Body Metabolism 1.0e+00
## Kinesins 1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna 1.0e+00
## Lagging Strand Synthesis 1.0e+00
## Laminin Interactions 1.0e+00
## Late Endosomal Microautophagy 1.0e+00
## Lectin Pathway Of Complement Activation 1.0e+00
## Leishmania Infection 1.0e+00
## Leukotriene Receptors 1.0e+00
## Lgi Adam Interactions 1.0e+00
## Ligand Receptor Interactions 1.0e+00
## Linoleic Acid La Metabolism 1.0e+00
## Lipid Particle Organization 1.0e+00
## Lipophagy 1.0e+00
## Listeria Monocytogenes Entry Into Host Cells 1.0e+00
## Long Term Potentiation 1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome 1.0e+00
## Loss Of Function Of Smad2 3 In Cancer 1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 1.0e+00
## Ltc4 Cysltr Mediated Il4 Production 1.0e+00
## Lysine Catabolism 1.0e+00
## Lysosome Vesicle Biogenesis 1.0e+00
## Lysosphingolipid And Lpa Receptors 1.0e+00
## M Phase 1.0e+00
## Map2k And Mapk Activation 1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 1.0e+00
## Mapk Family Signaling Cascades 1.0e+00
## Mapk6 Mapk4 Signaling 1.0e+00
## Maturation Of Nucleoprotein 1.0e+00
## Maturation Of Protein 3a 1.0e+00
## Maturation Of Sars Cov 1 Spike Protein 1.0e+00
## Maturation Of Sars Cov 2 Spike Protein 1.0e+00
## Meiosis 1.0e+00
## Meiotic Recombination 1.0e+00
## Meiotic Synapsis 1.0e+00
## Melanin Biosynthesis 1.0e+00
## Membrane Trafficking 1.0e+00
## Met Activates Pi3k Akt Signaling 1.0e+00
## Met Activates Ptk2 Signaling 1.0e+00
## Met Activates Ptpn11 1.0e+00
## Met Activates Rap1 And Rac1 1.0e+00
## Met Activates Ras Signaling 1.0e+00
## Met Interacts With Tns Proteins 1.0e+00
## Met Promotes Cell Motility 1.0e+00
## Met Receptor Activation 1.0e+00
## Met Receptor Recycling 1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes 1.0e+00
## Metabolism Of Amine Derived Hormones 1.0e+00
## Metabolism Of Amino Acids And Derivatives 1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins 1.0e+00
## Metabolism Of Carbohydrates 1.0e+00
## Metabolism Of Cofactors 1.0e+00
## Metabolism Of Fat Soluble Vitamins 1.0e+00
## Metabolism Of Folate And Pterines 1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se 1.0e+00
## Metabolism Of Lipids 1.0e+00
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 1.0e+00
## Metabolism Of Nucleotides 1.0e+00
## Metabolism Of Polyamines 1.0e+00
## Metabolism Of Porphyrins 1.0e+00
## Metabolism Of Rna 1.0e+00
## Metabolism Of Steroid Hormones 1.0e+00
## Metabolism Of Steroids 1.0e+00
## Metabolism Of Vitamins And Cofactors 1.0e+00
## Metabolism Of Water Soluble Vitamins And Cofactors 1.0e+00
## Metal Ion Slc Transporters 1.0e+00
## Metal Sequestration By Antimicrobial Proteins 1.0e+00
## Metallothioneins Bind Metals 1.0e+00
## Methionine Salvage Pathway 1.0e+00
## Methylation 1.0e+00
## Mhc Class Ii Antigen Presentation 1.0e+00
## Microrna Mirna Biogenesis 1.0e+00
## Mineralocorticoid Biosynthesis 1.0e+00
## Miro Gtpase Cycle 1.0e+00
## Miscellaneous Substrates 1.0e+00
## Miscellaneous Transport And Binding Events 1.0e+00
## Mismatch Repair 1.0e+00
## Mitochondrial Biogenesis 1.0e+00
## Mitochondrial Calcium Ion Transport 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis 1.0e+00
## Mitochondrial Protein Import 1.0e+00
## Mitochondrial Translation 1.0e+00
## Mitochondrial Trna Aminoacylation 1.0e+00
## Mitochondrial Uncoupling 1.0e+00
## Mitophagy 1.0e+00
## Mitotic G1 Phase And G1 S Transition 1.0e+00
## Mitotic G2 G2 M Phases 1.0e+00
## Mitotic Metaphase And Anaphase 1.0e+00
## Mitotic Prometaphase 1.0e+00
## Mitotic Prophase 1.0e+00
## Mitotic Spindle Checkpoint 1.0e+00
## Mitotic Telophase Cytokinesis 1.0e+00
## Modulation By Mtb Of Host Immune System 1.0e+00
## Molecules Associated With Elastic Fibres 1.0e+00
## Molybdenum Cofactor Biosynthesis 1.0e+00
## Mrna Capping 1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease 1.0e+00
## Mrna Editing 1.0e+00
## Mrna Editing C To U Conversion 1.0e+00
## Mrna Splicing 1.0e+00
## Mrna Splicing Minor Pathway 1.0e+00
## Mtor Signalling 1.0e+00
## Mtorc1 Mediated Signalling 1.0e+00
## Mucopolysaccharidoses 1.0e+00
## Multifunctional Anion Exchangers 1.0e+00
## Muscarinic Acetylcholine Receptors 1.0e+00
## Muscle Contraction 1.0e+00
## Myoclonic Epilepsy Of Lafora 1.0e+00
## Myogenesis 1.0e+00
## N Glycan Antennae Elongation 1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi 1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi 1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 1.0e+00
## Na Cl Dependent Neurotransmitter Transporters 1.0e+00
## Nade Modulates Death Signalling 1.0e+00
## Ncam1 Interactions 1.0e+00
## Nectin Necl Trans Heterodimerization 1.0e+00
## Neddylation 1.0e+00
## Nef And Signal Transduction 1.0e+00
## Nef Mediated Cd4 Down Regulation 1.0e+00
## Nef Mediated Cd8 Down Regulation 1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 1.0e+00
## Negative Epigenetic Regulation Of Rrna Expression 1.0e+00
## Negative Feedback Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 1.0e+00
## Negative Regulation Of Fgfr1 Signaling 1.0e+00
## Negative Regulation Of Fgfr2 Signaling 1.0e+00
## Negative Regulation Of Fgfr3 Signaling 1.0e+00
## Negative Regulation Of Fgfr4 Signaling 1.0e+00
## Negative Regulation Of Flt3 1.0e+00
## Negative Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Met Activity 1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 1.0e+00
## Negative Regulation Of Notch4 Signaling 1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 1.0e+00
## Negative Regulators Of Ddx58 Ifih1 Signaling 1.0e+00
## Nephrin Family Interactions 1.0e+00
## Nervous System Development 1.0e+00
## Netrin 1 Signaling 1.0e+00
## Netrin Mediated Repulsion Signals 1.0e+00
## Neurexins And Neuroligins 1.0e+00
## Neurofascin Interactions 1.0e+00
## Neuronal System 1.0e+00
## Neurotoxicity Of Clostridium Toxins 1.0e+00
## Neurotransmitter Clearance 1.0e+00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 1.0e+00
## Neurotransmitter Release Cycle 1.0e+00
## Neutrophil Degranulation 1.0e+00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 1.0e+00
## Nf Kb Is Activated And Signals Survival 1.0e+00
## Ngf Independant Trka Activation 1.0e+00
## Nicotinamide Salvaging 1.0e+00
## Nicotinate Metabolism 1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase 1.0e+00
## Non Integrin Membrane Ecm Interactions 1.0e+00
## Noncanonical Activation Of Notch3 1.0e+00
## Nonhomologous End Joining Nhej 1.0e+00
## Nonsense Mediated Decay Nmd 1.0e+00
## Norepinephrine Neurotransmitter Release Cycle 1.0e+00
## Nostrin Mediated Enos Trafficking 1.0e+00
## Notch Hlh Transcription Pathway 1.0e+00
## Notch1 Intracellular Domain Regulates Transcription 1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch3 Intracellular Domain Regulates Transcription 1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Intracellular Domain Regulates Transcription 1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 1.0e+00
## Nrcam Interactions 1.0e+00
## Nrif Signals Cell Death From The Nucleus 1.0e+00
## Ns1 Mediated Effects On Host Pathways 1.0e+00
## Ntrk2 Activates Rac1 1.0e+00
## Nuclear Import Of Rev Protein 1.0e+00
## Nuclear Receptor Transcription Pathway 1.0e+00
## Nuclear Signaling By Erbb4 1.0e+00
## Nucleobase Biosynthesis 1.0e+00
## Nucleobase Catabolism 1.0e+00
## Nucleotide Excision Repair 1.0e+00
## Nucleotide Like Purinergic Receptors 1.0e+00
## Nucleotide Salvage 1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins 1.0e+00
## O Linked Glycosylation 1.0e+00
## Oas Antiviral Response 1.0e+00
## Olfactory Signaling Pathway 1.0e+00
## Oncogene Induced Senescence 1.0e+00
## Oncogenic Mapk Signaling 1.0e+00
## Opioid Signalling 1.0e+00
## Opsins 1.0e+00
## Orc1 Removal From Chromatin 1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 1.0e+00
## Organelle Biogenesis And Maintenance 1.0e+00
## Organic Anion Transport 1.0e+00
## Organic Anion Transporters 1.0e+00
## Organic Cation Anion Zwitterion Transport 1.0e+00
## Organic Cation Transport 1.0e+00
## Other Interleukin Signaling 1.0e+00
## Other Semaphorin Interactions 1.0e+00
## Oxidative Stress Induced Senescence 1.0e+00
## P130cas Linkage To Mapk Signaling For Integrins 1.0e+00
## P2y Receptors 1.0e+00
## P38mapk Events 1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1 1.0e+00
## P75ntr Recruits Signalling Complexes 1.0e+00
## P75ntr Signals Via Nf Kb 1.0e+00
## Parasite Infection 1.0e+00
## Passive Transport By Aquaporins 1.0e+00
## Pcna Dependent Long Patch Base Excision Repair 1.0e+00
## Pcp Ce Pathway 1.0e+00
## Pecam1 Interactions 1.0e+00
## Pentose Phosphate Pathway 1.0e+00
## Peptide Hormone Biosynthesis 1.0e+00
## Peptide Hormone Metabolism 1.0e+00
## Peroxisomal Lipid Metabolism 1.0e+00
## Peroxisomal Protein Import 1.0e+00
## Pexophagy 1.0e+00
## Phase 0 Rapid Depolarisation 1.0e+00
## Phase 1 Inactivation Of Fast Na Channels 1.0e+00
## Phase 2 Plateau Phase 1.0e+00
## Phase 3 Rapid Repolarisation 1.0e+00
## Phase I Functionalization Of Compounds 1.0e+00
## Phase Ii Conjugation Of Compounds 1.0e+00
## Phenylalanine And Tyrosine Metabolism 1.0e+00
## Phenylalanine Metabolism 1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins 1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins 1.0e+00
## Phospholipase C Mediated Cascade Fgfr2 1.0e+00
## Phospholipase C Mediated Cascade Fgfr4 1.0e+00
## Phospholipid Metabolism 1.0e+00
## Physiological Factors 1.0e+00
## Pi 3k Cascade Fgfr1 1.0e+00
## Pi 3k Cascade Fgfr2 1.0e+00
## Pi 3k Cascade Fgfr3 1.0e+00
## Pi 3k Cascade Fgfr4 1.0e+00
## Pi Metabolism 1.0e+00
## Pi3k Akt Activation 1.0e+00
## Pi3k Events In Erbb4 Signaling 1.0e+00
## Pi5p Regulates Tp53 Acetylation 1.0e+00
## Pink1 Prkn Mediated Mitophagy 1.0e+00
## Piwi Interacting Rna Pirna Biogenesis 1.0e+00
## Pka Activation In Glucagon Signalling 1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors 1.0e+00
## Pkmts Methylate Histone Lysines 1.0e+00
## Plasma Lipoprotein Assembly 1.0e+00
## Plasma Lipoprotein Remodeling 1.0e+00
## Platelet Activation Signaling And Aggregation 1.0e+00
## Platelet Adhesion To Exposed Collagen 1.0e+00
## Platelet Aggregation Plug Formation 1.0e+00
## Platelet Calcium Homeostasis 1.0e+00
## Platelet Homeostasis 1.0e+00
## Platelet Sensitization By Ldl 1.0e+00
## Polb Dependent Long Patch Base Excision Repair 1.0e+00
## Polo Like Kinase Mediated Events 1.0e+00
## Polymerase Switching 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression 1.0e+00
## Post Chaperonin Tubulin Folding Pathway 1.0e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation 1.0e+00
## Potassium Channels 1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 1.0e+00
## Pre Notch Expression And Processing 1.0e+00
## Pre Notch Processing In Golgi 1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum 1.0e+00
## Pregnenolone Biosynthesis 1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening 1.0e+00
## Presynaptic Function Of Kainate Receptors 1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion 1.0e+00
## Processing And Activation Of Sumo 1.0e+00
## Processing Of Capped Intron Containing Pre Mrna 1.0e+00
## Processing Of Capped Intronless Pre Mrna 1.0e+00
## Processing Of Dna Double Strand Break Ends 1.0e+00
## Processing Of Intronless Pre Mrnas 1.0e+00
## Processing Of Smdt1 1.0e+00
## Processive Synthesis On The C Strand Of The Telomere 1.0e+00
## Processive Synthesis On The Lagging Strand 1.0e+00
## Prolactin Receptor Signaling 1.0e+00
## Prolonged Erk Activation Events 1.0e+00
## Propionyl Coa Catabolism 1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor 1.0e+00
## Prostanoid Ligand Receptors 1.0e+00
## Protein Folding 1.0e+00
## Protein Localization 1.0e+00
## Protein Methylation 1.0e+00
## Protein Protein Interactions At Synapses 1.0e+00
## Protein Repair 1.0e+00
## Protein Ubiquitination 1.0e+00
## Proton Coupled Monocarboxylate Transport 1.0e+00
## Pten Regulation 1.0e+00
## Ptk6 Expression 1.0e+00
## Ptk6 Regulates Cell Cycle 1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing 1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 1.0e+00
## Purine Catabolism 1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis 1.0e+00
## Purine Salvage 1.0e+00
## Pyrimidine Catabolism 1.0e+00
## Pyrimidine Salvage 1.0e+00
## Pyruvate Metabolism 1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle 1.0e+00
## Ra Biosynthesis Pathway 1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs 1.0e+00
## Rab Geranylgeranylation 1.0e+00
## Rab Regulation Of Trafficking 1.0e+00
## Rac1 Gtpase Cycle 1.0e+00
## Raf Activation 1.0e+00
## Rap1 Signalling 1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 1.0e+00
## Ras Processing 1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway 1.0e+00
## Receptor Mediated Mitophagy 1.0e+00
## Receptor Type Tyrosine Protein Phosphatases 1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex 1.0e+00
## Recruitment Of Numa To Mitotic Centrosomes 1.0e+00
## Recycling Of Bile Acids And Salts 1.0e+00
## Recycling Of Eif2 Gdp 1.0e+00
## Recycling Pathway Of L1 1.0e+00
## Reduction Of Cytosolic Ca Levels 1.0e+00
## Reelin Signalling Pathway 1.0e+00
## Regulated Proteolysis Of P75ntr 1.0e+00
## Regulation By C Flip 1.0e+00
## Regulation Of Bach1 Activity 1.0e+00
## Regulation Of Beta Cell Development 1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 1.0e+00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 1.0e+00
## Regulation Of Expression Of Slits And Robos 1.0e+00
## Regulation Of Foxo Transcriptional Activity By Acetylation 1.0e+00
## Regulation Of Fzd By Ubiquitination 1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor 1.0e+00
## Regulation Of Gene Expression In Beta Cells 1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 1.0e+00
## Regulation Of Hmox1 Expression And Activity 1.0e+00
## Regulation Of Hsf1 Mediated Heat Shock Response 1.0e+00
## Regulation Of Ifna Signaling 1.0e+00
## Regulation Of Ifng Signaling 1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna 1.0e+00
## Regulation Of Insulin Secretion 1.0e+00
## Regulation Of Kit Signaling 1.0e+00
## Regulation Of Lipid Metabolism By Pparalpha 1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors 1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 1.0e+00
## Regulation Of Pten Gene Transcription 1.0e+00
## Regulation Of Pten Localization 1.0e+00
## Regulation Of Pten Mrna Translation 1.0e+00
## Regulation Of Pten Stability And Activity 1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 1.0e+00
## Regulation Of Ras By Gaps 1.0e+00
## Regulation Of Runx1 Expression And Activity 1.0e+00
## Regulation Of Runx3 Expression And Activity 1.0e+00
## Regulation Of Signaling By Cbl 1.0e+00
## Regulation Of Signaling By Nodal 1.0e+00
## Regulation Of Tp53 Activity 1.0e+00
## Regulation Of Tp53 Activity Through Acetylation 1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors 1.0e+00
## Regulation Of Tp53 Activity Through Methylation 1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation 1.0e+00
## Relaxin Receptors 1.0e+00
## Release Of Apoptotic Factors From The Mitochondria 1.0e+00
## Release Of Hh Np From The Secreting Cell 1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 1.0e+00
## Repression Of Wnt Target Genes 1.0e+00
## Reproduction 1.0e+00
## Resolution Of Abasic Sites Ap Sites 1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 1.0e+00
## Resolution Of D Loop Structures 1.0e+00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 1.0e+00
## Resolution Of Sister Chromatid Cohesion 1.0e+00
## Respiratory Electron Transport 1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency 1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 1.0e+00
## Response Of Mtb To Phagocytosis 1.0e+00
## Response To Elevated Platelet Cytosolic Ca2 1.0e+00
## Response To Metal Ions 1.0e+00
## Ret Signaling 1.0e+00
## Retinoid Cycle Disease Events 1.0e+00
## Retrograde Neurotrophin Signalling 1.0e+00
## Reversible Hydration Of Carbon Dioxide 1.0e+00
## Rho Gtpase Cycle 1.0e+00
## Rho Gtpase Effectors 1.0e+00
## Rho Gtpases Activate Cit 1.0e+00
## Rho Gtpases Activate Formins 1.0e+00
## Rho Gtpases Activate Iqgaps 1.0e+00
## Rho Gtpases Activate Ktn1 1.0e+00
## Rho Gtpases Activate Nadph Oxidases 1.0e+00
## Rho Gtpases Activate Paks 1.0e+00
## Rho Gtpases Activate Pkns 1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins 1.0e+00
## Rho Gtpases Activate Rocks 1.0e+00
## Rho Gtpases Activate Wasps And Waves 1.0e+00
## Rhoa Gtpase Cycle 1.0e+00
## Rhobtb Gtpase Cycle 1.0e+00
## Rhobtb1 Gtpase Cycle 1.0e+00
## Rhobtb2 Gtpase Cycle 1.0e+00
## Rhobtb3 Atpase Cycle 1.0e+00
## Rhot1 Gtpase Cycle 1.0e+00
## Rhou Gtpase Cycle 1.0e+00
## Rhov Gtpase Cycle 1.0e+00
## Rna Polymerase I Promoter Escape 1.0e+00
## Rna Polymerase I Transcription 1.0e+00
## Rna Polymerase I Transcription Initiation 1.0e+00
## Rna Polymerase I Transcription Termination 1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes 1.0e+00
## Rna Polymerase Ii Transcription Termination 1.0e+00
## Rna Polymerase Iii Chain Elongation 1.0e+00
## Rna Polymerase Iii Transcription 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Termination 1.0e+00
## Rnd1 Gtpase Cycle 1.0e+00
## Rnd2 Gtpase Cycle 1.0e+00
## Rnd3 Gtpase Cycle 1.0e+00
## Robo Receptors Bind Akap5 1.0e+00
## Role Of Abl In Robo Slit Signaling 1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization 1.0e+00
## Role Of Phospholipids In Phagocytosis 1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling 1.0e+00
## Rora Activates Gene Expression 1.0e+00
## Ros And Rns Production In Phagocytes 1.0e+00
## Rrna Modification In The Mitochondrion 1.0e+00
## Rrna Modification In The Nucleus And Cytosol 1.0e+00
## Rrna Processing 1.0e+00
## Rrna Processing In The Mitochondrion 1.0e+00
## Rsk Activation 1.0e+00
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription 1.0e+00
## Runx1 Regulates Expression Of Components Of Tight Junctions 1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription 1.0e+00
## Runx3 Regulates Cdkn1a Transcription 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration 1.0e+00
## Runx3 Regulates Notch Signaling 1.0e+00
## Runx3 Regulates P14 Arf 1.0e+00
## Runx3 Regulates Wnt Signaling 1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription 1.0e+00
## S Phase 1.0e+00
## Sars Cov 1 Genome Replication And Transcription 1.0e+00
## Sars Cov 1 Infection 1.0e+00
## Sars Cov 2 Infection 1.0e+00
## Sars Cov Infections 1.0e+00
## Scavenging By Class A Receptors 1.0e+00
## Scavenging By Class B Receptors 1.0e+00
## Scavenging By Class F Receptors 1.0e+00
## Scavenging Of Heme From Plasma 1.0e+00
## Scf Skp2 Mediated Degradation Of P27 P21 1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 1.0e+00
## Selective Autophagy 1.0e+00
## Selenoamino Acid Metabolism 1.0e+00
## Sema3a Pak Dependent Axon Repulsion 1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 1.0e+00
## Sema4d In Semaphorin Signaling 1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse 1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 1.0e+00
## Semaphorin Interactions 1.0e+00
## Sensing Of Dna Double Strand Breaks 1.0e+00
## Sensory Perception 1.0e+00
## Sensory Processing Of Sound 1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 1.0e+00
## Separation Of Sister Chromatids 1.0e+00
## Serine Biosynthesis 1.0e+00
## Serotonin And Melatonin Biosynthesis 1.0e+00
## Serotonin Neurotransmitter Release Cycle 1.0e+00
## Serotonin Receptors 1.0e+00
## Shc Mediated Cascade Fgfr1 1.0e+00
## Shc Mediated Cascade Fgfr3 1.0e+00
## Shc Mediated Cascade Fgfr4 1.0e+00
## Shc Related Events Triggered By Igf1r 1.0e+00
## Shc1 Events In Erbb4 Signaling 1.0e+00
## Signal Amplification 1.0e+00
## Signal Attenuation 1.0e+00
## Signal Regulatory Protein Family Interactions 1.0e+00
## Signaling By Activin 1.0e+00
## Signaling By Bmp 1.0e+00
## Signaling By Braf And Raf Fusions 1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants 1.0e+00
## Signaling By Erythropoietin 1.0e+00
## Signaling By Fgfr 1.0e+00
## Signaling By Fgfr1 1.0e+00
## Signaling By Fgfr2 1.0e+00
## Signaling By Fgfr2 Iiia Tm 1.0e+00
## Signaling By Fgfr2 In Disease 1.0e+00
## Signaling By Fgfr3 1.0e+00
## Signaling By Fgfr3 Fusions In Cancer 1.0e+00
## Signaling By Fgfr4 1.0e+00
## Signaling By Fgfr4 In Disease 1.0e+00
## Signaling By Flt3 Fusion Proteins 1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants 1.0e+00
## Signaling By Gpcr 1.0e+00
## Signaling By Hedgehog 1.0e+00
## Signaling By Hippo 1.0e+00
## Signaling By Lrp5 Mutants 1.0e+00
## Signaling By Mapk Mutants 1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 1.0e+00
## Signaling By Moderate Kinase Activity Braf Mutants 1.0e+00
## Signaling By Mras Complex Mutants 1.0e+00
## Signaling By Mst1 1.0e+00
## Signaling By Nodal 1.0e+00
## Signaling By Notch 1.0e+00
## Signaling By Notch1 1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 Pest Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 1.0e+00
## Signaling By Notch4 1.0e+00
## Signaling By Ntrk2 Trkb 1.0e+00
## Signaling By Ntrk3 Trkc 1.0e+00
## Signaling By Nuclear Receptors 1.0e+00
## Signaling By Receptor Tyrosine Kinases 1.0e+00
## Signaling By Retinoic Acid 1.0e+00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 1.0e+00
## Signaling By Rnf43 Mutants 1.0e+00
## Signaling By Robo Receptors 1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer 1.0e+00
## Signaling By Tgfb Family Members 1.0e+00
## Signaling By The B Cell Receptor Bcr 1.0e+00
## Signaling By Vegf 1.0e+00
## Signaling By Wnt 1.0e+00
## Signaling By Wnt In Cancer 1.0e+00
## Signalling To Erks 1.0e+00
## Signalling To P38 Via Rit And Rin 1.0e+00
## Signalling To Ras 1.0e+00
## Sirt1 Negatively Regulates Rrna Expression 1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 1.0e+00
## Slc Mediated Transmembrane Transport 1.0e+00
## Slc Transporter Disorders 1.0e+00
## Smac Xiap Regulated Apoptotic Response 1.0e+00
## Small Interfering Rna Sirna Biogenesis 1.0e+00
## Smooth Muscle Contraction 1.0e+00
## Snrnp Assembly 1.0e+00
## Sodium Calcium Exchangers 1.0e+00
## Sodium Coupled Phosphate Cotransporters 1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 1.0e+00
## Sodium Proton Exchangers 1.0e+00
## Sos Mediated Signalling 1.0e+00
## Sperm Motility And Taxes 1.0e+00
## Sphingolipid De Novo Biosynthesis 1.0e+00
## Sphingolipid Metabolism 1.0e+00
## Spry Regulation Of Fgf Signaling 1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane 1.0e+00
## Stabilization Of P53 1.0e+00
## Stat5 Activation 1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants 1.0e+00
## Stimuli Sensing Channels 1.0e+00
## Striated Muscle Contraction 1.0e+00
## Sulfide Oxidation To Sulfate 1.0e+00
## Sulfur Amino Acid Metabolism 1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1 1.0e+00
## Sumo Is Proteolytically Processed 1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 1.0e+00
## Sumoylation 1.0e+00
## Sumoylation Of Chromatin Organization Proteins 1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins 1.0e+00
## Sumoylation Of Dna Replication Proteins 1.0e+00
## Sumoylation Of Immune Response Proteins 1.0e+00
## Sumoylation Of Intracellular Receptors 1.0e+00
## Sumoylation Of Rna Binding Proteins 1.0e+00
## Sumoylation Of Sumoylation Proteins 1.0e+00
## Sumoylation Of Transcription Factors 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins 1.0e+00
## Suppression Of Apoptosis 1.0e+00
## Suppression Of Phagosomal Maturation 1.0e+00
## Surfactant Metabolism 1.0e+00
## Switching Of Origins To A Post Replicative State 1.0e+00
## Synaptic Adhesion Like Molecules 1.0e+00
## Syndecan Interactions 1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 1.0e+00
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids 1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 1.0e+00
## Synthesis Of Bile Acids And Bile Salts 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 1.0e+00
## Synthesis Of Diphthamide Eef2 1.0e+00
## Synthesis Of Dolichyl Phosphate 1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 1.0e+00
## Synthesis Of Gdp Mannose 1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi 1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol 1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol 1.0e+00
## Synthesis Of Ketone Bodies 1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex 1.0e+00
## Synthesis Of Lipoxins Lx 1.0e+00
## Synthesis Of Pa 1.0e+00
## Synthesis Of Pc 1.0e+00
## Synthesis Of Pe 1.0e+00
## Synthesis Of Pg 1.0e+00
## Synthesis Of Pi 1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Er Membrane 1.0e+00
## Synthesis Of Pips At The Golgi Membrane 1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Plasma Membrane 1.0e+00
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol 1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine 1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas 1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe 1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin 1.0e+00
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 1.0e+00
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 1.0e+00
## Tachykinin Receptors Bind Tachykinins 1.0e+00
## Tbc Rabgaps 1.0e+00
## Tcf Dependent Signaling In Response To Wnt 1.0e+00
## Tcr Signaling 1.0e+00
## Telomere C Strand Lagging Strand Synthesis 1.0e+00
## Telomere C Strand Synthesis Initiation 1.0e+00
## Telomere Extension By Telomerase 1.0e+00
## Telomere Maintenance 1.0e+00
## Terminal Pathway Of Complement 1.0e+00
## Termination Of Translesion Dna Synthesis 1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 1.0e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 1.0e+00
## Tgf Beta Receptor Signaling Activates Smads 1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 1.0e+00
## The Activation Of Arylsulfatases 1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport 1.0e+00
## The Fatty Acid Cycling Model 1.0e+00
## The Phototransduction Cascade 1.0e+00
## The Retinoid Cycle In Cones Daylight Vision 1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 1.0e+00
## Thrombin Signalling Through Proteinase Activated Receptors Pars 1.0e+00
## Thromboxane Signalling Through Tp Receptor 1.0e+00
## Thyroxine Biosynthesis 1.0e+00
## Tie2 Signaling 1.0e+00
## Tight Junction Interactions 1.0e+00
## Tnfr1 Induced Proapoptotic Signaling 1.0e+00
## Tnfr1 Mediated Ceramide Production 1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd 1.0e+00
## Tp53 Regulates Metabolic Genes 1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Traf3 Dependent Irf Activation Pathway 1.0e+00
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 1.0e+00
## Traf6 Mediated Irf7 Activation 1.0e+00
## Trafficking Of Ampa Receptors 1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors 1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium 1.0e+00
## Trail Signaling 1.0e+00
## Trans Golgi Network Vesicle Budding 1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner 1.0e+00
## Transcription Of E2f Targets Under Negative Control By Dream Complex 1.0e+00
## Transcription Of The Hiv Genome 1.0e+00
## Transcriptional Regulation By E2f6 1.0e+00
## Transcriptional Regulation By Runx1 1.0e+00
## Transcriptional Regulation By Runx3 1.0e+00
## Transcriptional Regulation By Small Rnas 1.0e+00
## Transcriptional Regulation By Tp53 1.0e+00
## Transcriptional Regulation Of Testis Differentiation 1.0e+00
## Transcriptional Regulation Of White Adipocyte Differentiation 1.0e+00
## Transferrin Endocytosis And Recycling 1.0e+00
## Translation 1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 1.0e+00
## Translation Of Sars Cov 1 Structural Proteins 1.0e+00
## Translation Of Sars Cov 2 Structural Proteins 1.0e+00
## Translesion Synthesis By Polh 1.0e+00
## Translesion Synthesis By Polk 1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1.0e+00
## Transmission Across Chemical Synapses 1.0e+00
## Transport And Synthesis Of Paps 1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 1.0e+00
## Transport Of Connexons To The Plasma Membrane 1.0e+00
## Transport Of Fatty Acids 1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts 1.0e+00
## Transport Of Mature Transcript To Cytoplasm 1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 1.0e+00
## Transport Of Nucleotide Sugars 1.0e+00
## Transport Of Organic Anions 1.0e+00
## Transport Of Small Molecules 1.0e+00
## Transport Of The Slbp Dependant Mature Mrna 1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules 1.0e+00
## Transport To The Golgi And Subsequent Modification 1.0e+00
## Trif Mediated Programmed Cell Death 1.0e+00
## Triglyceride Biosynthesis 1.0e+00
## Triglyceride Catabolism 1.0e+00
## Triglyceride Metabolism 1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 1.0e+00
## Trna Aminoacylation 1.0e+00
## Trna Modification In The Mitochondrion 1.0e+00
## Trna Modification In The Nucleus And Cytosol 1.0e+00
## Trna Processing 1.0e+00
## Trna Processing In The Mitochondrion 1.0e+00
## Trna Processing In The Nucleus 1.0e+00
## Trp Channels 1.0e+00
## Tryptophan Catabolism 1.0e+00
## Type I Hemidesmosome Assembly 1.0e+00
## Tyrosine Catabolism 1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins 1.0e+00
## Ub Specific Processing Proteases 1.0e+00
## Ubiquinol Biosynthesis 1.0e+00
## Uch Proteinases 1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 1.0e+00
## Unwinding Of Dna 1.0e+00
## Uptake And Actions Of Bacterial Toxins 1.0e+00
## Uptake And Function Of Anthrax Toxins 1.0e+00
## Uptake And Function Of Diphtheria Toxin 1.0e+00
## Urea Cycle 1.0e+00
## Vasopressin Like Receptors 1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 1.0e+00
## Vegf Ligand Receptor Interactions 1.0e+00
## Vegfr2 Mediated Cell Proliferation 1.0e+00
## Vesicle Mediated Transport 1.0e+00
## Viral Messenger Rna Synthesis 1.0e+00
## Visual Phototransduction 1.0e+00
## Vitamin B1 Thiamin Metabolism 1.0e+00
## Vitamin B2 Riboflavin Metabolism 1.0e+00
## Vitamin B5 Pantothenate Metabolism 1.0e+00
## Vitamin C Ascorbate Metabolism 1.0e+00
## Vitamin D Calciferol Metabolism 1.0e+00
## Vitamins 1.0e+00
## Vldl Assembly 1.0e+00
## Vldl Clearance 1.0e+00
## Voltage Gated Potassium Channels 1.0e+00
## Vxpx Cargo Targeting To Cilium 1.0e+00
## Wax And Plasmalogen Biosynthesis 1.0e+00
## Wnt Mediated Activation Of Dvl 1.0e+00
## Xenobiotics 1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family 1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family 1.0e+00
## Zinc Transporters 1.0e+00
## fdr
## Interleukin 10 Signaling 7e-04
## Interleukin 1 Processing 1e+00
## Chemokine Receptors Bind Chemokines 1e+00
## Interleukin 4 And Interleukin 13 Signaling 1e+00
## Purinergic Signaling In Leishmaniasis Infection 1e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 1e+00
## Pyroptosis 1e+00
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 1e+00
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 1e+00
## Cd163 Mediating An Anti Inflammatory Response 1e+00
## Egfr Transactivation By Gastrin 1e+00
## Mapk3 Erk1 Activation 1e+00
## Inflammasomes 1e+00
## Interleukin 6 Signaling 1e+00
## Cd28 Dependent Vav1 Pathway 1e+00
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 1e+00
## Trafficking And Processing Of Endosomal Tlr 1e+00
## Regulated Necrosis 1e+00
## Tnfs Bind Their Physiological Receptors 1e+00
## The Nlrp3 Inflammasome 1e+00
## G2 M Dna Replication Checkpoint 1e+00
## Mecp2 Regulates Transcription Factors 1e+00
## Runx2 Regulates Chondrocyte Maturation 1e+00
## Activation Of Matrix Metalloproteinases 1e+00
## Clec7a Inflammasome Pathway 1e+00
## Fibronectin Matrix Formation 1e+00
## Phosphorylation Of Emi1 1e+00
## Ptk6 Promotes Hif1a Stabilization 1e+00
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 1e+00
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 1e+00
## Activation Of Nima Kinases Nek9 Nek6 Nek7 1e+00
## Creb Phosphorylation 1e+00
## Ctla4 Inhibitory Signaling 1e+00
## Interleukin 37 Signaling 1e+00
## Signal Transduction By L1 1e+00
## Cd28 Dependent Pi3k Akt Signaling 1e+00
## Activation Of C3 And C5 1e+00
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 1e+00
## Interleukin 18 Signaling 1e+00
## Mecp2 Regulates Transcription Of Neuronal Ligands 1e+00
## Raf Independent Mapk1 3 Activation 1e+00
## Runx2 Regulates Genes Involved In Cell Migration 1e+00
## Interleukin 6 Family Signaling 1e+00
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 1e+00
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 1e+00
## E2f Enabled Inhibition Of Pre Replication Complex Formation 1e+00
## Egfr Interacts With Phospholipase C Gamma 1e+00
## Extra Nuclear Estrogen Signaling 1e+00
## Interleukin 23 Signaling 1e+00
## Interleukin 9 Signaling 1e+00
## Mapk1 Erk2 Activation 1e+00
## Activation Of The Ap 1 Family Of Transcription Factors 1e+00
## Akt Phosphorylates Targets In The Nucleus 1e+00
## Camk Iv Mediated Phosphorylation Of Creb 1e+00
## Interleukin 21 Signaling 1e+00
## Mastl Facilitates Mitotic Progression 1e+00
## P75ntr Regulates Axonogenesis 1e+00
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 1e+00
## Condensation Of Prometaphase Chromosomes 1e+00
## Dap12 Interactions 1e+00
## Endosomal Vacuolar Pathway 1e+00
## Interleukin 27 Signaling 1e+00
## Pd 1 Signaling 1e+00
## Signaling By Leptin 1e+00
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 1e+00
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 1e+00
## Interleukin 35 Signalling 1e+00
## Killing Mechanisms 1e+00
## Notch2 Intracellular Domain Regulates Transcription 1e+00
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 1e+00
## Tandem Pore Domain Potassium Channels 1e+00
## Ticam1 Dependent Activation Of Irf3 Irf7 1e+00
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 1e+00
## Vldlr Internalisation And Degradation 1e+00
## Advanced Glycosylation Endproduct Receptor Signaling 1e+00
## Apoptosis Induced Dna Fragmentation 1e+00
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 1e+00
## Diseases Of Immune System 1e+00
## Dissolution Of Fibrin Clot 1e+00
## Erbb2 Activates Ptk6 Signaling 1e+00
## Irf3 Mediated Induction Of Type I Ifn 1e+00
## Mapk Targets Nuclear Events Mediated By Map Kinases 1e+00
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 1e+00
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 1e+00
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 1e+00
## Perk Regulates Gene Expression 1e+00
## Cd28 Co Stimulation 1e+00
## Golgi Cisternae Pericentriolar Stack Reorganization 1e+00
## Interleukin 15 Signaling 1e+00
## Shc1 Events In Egfr Signaling 1e+00
## Constitutive Signaling By Egfrviii 1e+00
## Depolymerisation Of The Nuclear Lamina 1e+00
## Erbb2 Regulates Cell Motility 1e+00
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 1e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 1e+00
## Wnt5a Dependent Internalization Of Fzd4 1e+00
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 1e+00
## Costimulation By The Cd28 Family 1e+00
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 1e+00
## Grb2 Events In Erbb2 Signaling 1e+00
## Nod1 2 Signaling Pathway 1e+00
## Pi3k Events In Erbb2 Signaling 1e+00
## Signaling By Erbb2 Ecd Mutants 1e+00
## Sting Mediated Induction Of Host Immune Responses 1e+00
## Sumoylation Of Dna Methylation Proteins 1e+00
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 1e+00
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 1e+00
## Gab1 Signalosome 1e+00
## Interleukin 12 Family Signaling 1e+00
## Rip Mediated Nfkb Activation Via Zbp1 1e+00
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 1e+00
## Constitutive Signaling By Aberrant Pi3k In Cancer 1e+00
## Irak4 Deficiency Tlr2 4 1e+00
## Mecp2 Regulates Neuronal Receptors And Channels 1e+00
## Signaling By Cytosolic Fgfr1 Fusion Mutants 1e+00
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 1e+00
## Ngf Stimulated Transcription 1e+00
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 1e+00
## Initiation Of Nuclear Envelope Ne Reformation 1e+00
## Ldl Clearance 1e+00
## Phase 4 Resting Membrane Potential 1e+00
## Phosphorylation Of The Apc C 1e+00
## Pka Mediated Phosphorylation Of Creb 1e+00
## Signaling By Kit In Disease 1e+00
## Signaling By Pdgfr In Disease 1e+00
## Tnfr2 Non Canonical Nf Kb Pathway 1e+00
## Collagen Degradation 1e+00
## Regulation Of Tlr By Endogenous Ligand 1e+00
## Signaling By Scf Kit 1e+00
## Zbp1 Dai Mediated Induction Of Type I Ifns 1e+00
## E2f Mediated Regulation Of Dna Replication 1e+00
## Interleukin 2 Family Signaling 1e+00
## Pi3k Akt Signaling In Cancer 1e+00
## Shc1 Events In Erbb2 Signaling 1e+00
## Ikk Complex Recruitment Mediated By Rip1 1e+00
## Termination Of O Glycan Biosynthesis 1e+00
## Apc C Cdc20 Mediated Degradation Of Cyclin B 1e+00
## Growth Hormone Receptor Signaling 1e+00
## Interleukin 12 Signaling 1e+00
## Runx2 Regulates Osteoblast Differentiation 1e+00
## Traf6 Mediated Nf Kb Activation 1e+00
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 1e+00
## Cyclin A B1 B2 Associated Events During G2 M Transition 1e+00
## Inactivation Of Csf3 G Csf Signaling 1e+00
## Notch3 Activation And Transmission Of Signal To The Nucleus 1e+00
## Signaling By Egfr In Cancer 1e+00
## Constitutive Signaling By Akt1 E17k In Cancer 1e+00
## Dectin 2 Family 1e+00
## Interleukin 17 Signaling 1e+00
## Interleukin 20 Family Signaling 1e+00
## Negative Regulation Of The Pi3k Akt Network 1e+00
## Signaling By Erbb2 In Cancer 1e+00
## Wnt Ligand Biogenesis And Trafficking 1e+00
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 1e+00
## Eph Ephrin Mediated Repulsion Of Cells 1e+00
## G0 And Early G1 1e+00
## Interleukin Receptor Shc Signaling 1e+00
## Toll Like Receptor 9 Tlr9 Cascade 1e+00
## Vegfr2 Mediated Vascular Permeability 1e+00
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 1e+00
## Myd88 Independent Tlr4 Cascade 1e+00
## Dap12 Signaling 1e+00
## Downregulation Of Erbb2 Signaling 1e+00
## Downstream Signal Transduction 1e+00
## G1 S Specific Transcription 1e+00
## Interleukin 1 Family Signaling 1e+00
## Ripk1 Mediated Regulated Necrosis 1e+00
## Signaling By Ptk6 1e+00
## Signaling By Csf3 G Csf 1e+00
## Tnfr1 Induced Nfkappab Signaling Pathway 1e+00
## Egfr Downregulation 1e+00
## Fgfr1 Mutant Receptor Activation 1e+00
## Runx2 Regulates Bone Development 1e+00
## Transcriptional Regulation Of Pluripotent Stem Cells 1e+00
## Regulation Of Mecp2 Expression And Activity 1e+00
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 1e+00
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 1e+00
## Cargo Concentration In The Er 1e+00
## Plasma Lipoprotein Clearance 1e+00
## Sialic Acid Metabolism 1e+00
## Signaling By Notch2 1e+00
## Assembly Of Collagen Fibrils And Other Multimeric Structures 1e+00
## Gpvi Mediated Activation Cascade 1e+00
## Nuclear Events Kinase And Transcription Factor Activation 1e+00
## Regulation Of Tnfr1 Signaling 1e+00
## Signaling By Interleukins 1e+00
## Cytosolic Sensors Of Pathogen Associated Dna 1e+00
## Interleukin 7 Signaling 1e+00
## Nuclear Pore Complex Npc Disassembly 1e+00
## Ca Dependent Events 1e+00
## Metalloprotease Dubs 1e+00
## Ovarian Tumor Domain Proteases 1e+00
## Peptide Ligand Binding Receptors 1e+00
## Regulation Of Tp53 Expression And Degradation 1e+00
## Rhoh Gtpase Cycle 1e+00
## Senescence Associated Secretory Phenotype Sasp 1e+00
## Signaling By Fgfr1 In Disease 1e+00
## Toll Like Receptor Cascades 1e+00
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 1e+00
## Association Of Tric Cct With Target Proteins During Biosynthesis 1e+00
## Complement Cascade 1e+00
## Generation Of Second Messenger Molecules 1e+00
## Dag And Ip3 Signaling 1e+00
## Interferon Gamma Signaling 1e+00
## Transcriptional Regulation By Ventx 1e+00
## Beta Defensins 1e+00
## Circadian Clock 1e+00
## Rhob Gtpase Cycle 1e+00
## Rhof Gtpase Cycle 1e+00
## Sumoylation Of Transcription Cofactors 1e+00
## Tnf Signaling 1e+00
## Tp53 Regulates Transcription Of Cell Death Genes 1e+00
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 1e+00
## Rhoc Gtpase Cycle 1e+00
## Rhog Gtpase Cycle 1e+00
## Heme Signaling 1e+00
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 1e+00
## Irs Mediated Signalling 1e+00
## Retrograde Transport At The Trans Golgi Network 1e+00
## Signaling By Notch3 1e+00
## Toll Like Receptor Tlr1 Tlr2 Cascade 1e+00
## Tp53 Regulates Transcription Of Cell Cycle Genes 1e+00
## Antigen Processing Cross Presentation 1e+00
## Apoptotic Execution Phase 1e+00
## Cargo Recognition For Clathrin Mediated Endocytosis 1e+00
## Defensins 1e+00
## Rhod Gtpase Cycle 1e+00
## Signaling By Egfr 1e+00
## Signaling By Erbb2 1e+00
## Fceri Mediated Mapk Activation 1e+00
## G Protein Mediated Events 1e+00
## Insulin Receptor Signalling Cascade 1e+00
## Intrinsic Pathway For Apoptosis 1e+00
## Nuclear Envelope Breakdown 1e+00
## Rhoj Gtpase Cycle 1e+00
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 1e+00
## Transcriptional Activation Of Mitochondrial Biogenesis 1e+00
## Ca2 Pathway 1e+00
## Collagen Formation 1e+00
## Eph Ephrin Signaling 1e+00
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 1e+00
## Nrage Signals Death Through Jnk 1e+00
## O Linked Glycosylation Of Mucins 1e+00
## Rac2 Gtpase Cycle 1e+00
## Rhoq Gtpase Cycle 1e+00
## Signaling By Erbb4 1e+00
## Signaling By Pdgf 1e+00
## Tp53 Regulates Transcription Of Dna Repair Genes 1e+00
## Transcriptional Regulation Of Granulopoiesis 1e+00
## Unfolded Protein Response Upr 1e+00
## Asymmetric Localization Of Pcp Proteins 1e+00
## Class B 2 Secretin Family Receptors 1e+00
## Copi Mediated Anterograde Transport 1e+00
## Copii Mediated Vesicle Transport 1e+00
## Diseases Associated With O Glycosylation Of Proteins 1e+00
## Dna Methylation 1e+00
## Fcgr3a Mediated Il10 Synthesis 1e+00
## Interleukin 1 Signaling 1e+00
## Ncam Signaling For Neurite Out Growth 1e+00
## P75 Ntr Receptor Mediated Signalling 1e+00
## Rac3 Gtpase Cycle 1e+00
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 1e+00
## Signaling By Fgfr In Disease 1e+00
## Synthesis Of Substrates In N Glycan Biosythesis 1e+00
## Transcriptional Regulation By Mecp2 1e+00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1e+00
## Apc C Mediated Degradation Of Cell Cycle Proteins 1e+00
## Aurka Activation By Tpx2 1e+00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1e+00
## Cell Death Signalling Via Nrage Nrif And Nade 1e+00
## Clathrin Mediated Endocytosis 1e+00
## Condensation Of Prophase Chromosomes 1e+00
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 1e+00
## Death Receptor Signalling 1e+00
## Degradation Of The Extracellular Matrix 1e+00
## Ecm Proteoglycans 1e+00
## Fceri Mediated Ca 2 Mobilization 1e+00
## G Alpha 12 13 Signalling Events 1e+00
## Initial Triggering Of Complement 1e+00
## Integrin Cell Surface Interactions 1e+00
## Interferon Alpha Beta Signaling 1e+00
## L1cam Interactions 1e+00
## Nuclear Envelope Ne Reassembly 1e+00
## Plasma Lipoprotein Assembly Remodeling And Clearance 1e+00
## Potential Therapeutics For Sars 1e+00
## Prc2 Methylates Histones And Dna 1e+00
## Programmed Cell Death 1e+00
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1e+00
## Regulation Of Plk1 Activity At G2 M Transition 1e+00
## Regulation Of Runx2 Expression And Activity 1e+00
## Rmts Methylate Histone Arginines 1e+00
## Signaling By Insulin Receptor 1e+00
## Signaling By Met 1e+00
## Signaling By Ntrks 1e+00
## Signaling By Tgf Beta Receptor Complex 1e+00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1e+00
## Transcriptional Regulation By Runx2 1e+00
## 2 Ltr Circle Formation 1e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 1e+00
## Abacavir Metabolism 1e+00
## Abacavir Transmembrane Transport 1e+00
## Abacavir Transport And Metabolism 1e+00
## Abc Family Proteins Mediated Transport 1e+00
## Abc Transporter Disorders 1e+00
## Abc Transporters In Lipid Homeostasis 1e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 1e+00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 1e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 1e+00
## Acetylcholine Binding And Downstream Events 1e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 1e+00
## Acetylcholine Neurotransmitter Release Cycle 1e+00
## Acetylcholine Regulates Insulin Secretion 1e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding 1e+00
## Activated Notch1 Transmits Signal To The Nucleus 1e+00
## Activated Ntrk2 Signals Through Cdk5 1e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3 1e+00
## Activated Ntrk2 Signals Through Fyn 1e+00
## Activated Ntrk2 Signals Through Pi3k 1e+00
## Activated Ntrk2 Signals Through Ras 1e+00
## Activated Ntrk3 Signals Through Pi3k 1e+00
## Activated Ntrk3 Signals Through Ras 1e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 1e+00
## Activated Tak1 Mediates P38 Mapk Activation 1e+00
## Activation Of Ampk Downstream Of Nmdars 1e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 1e+00
## Activation Of Atr In Response To Replication Stress 1e+00
## Activation Of Bad And Translocation To Mitochondria 1e+00
## Activation Of Bh3 Only Proteins 1e+00
## Activation Of Caspases Through Apoptosome Mediated Cleavage 1e+00
## Activation Of Gene Expression By Srebf Srebp 1e+00
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 1e+00
## Activation Of Kainate Receptors Upon Glutamate Binding 1e+00
## Activation Of Nmda Receptors And Postsynaptic Events 1e+00
## Activation Of Noxa And Translocation To Mitochondria 1e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 1e+00
## Activation Of Puma And Translocation To Mitochondria 1e+00
## Activation Of Rac1 1e+00
## Activation Of Rac1 Downstream Of Nmdars 1e+00
## Activation Of Ras In B Cells 1e+00
## Activation Of Smo 1e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 1e+00
## Activation Of The Phototransduction Cascade 1e+00
## Activation Of The Pre Replicative Complex 1e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 1e+00
## Activation Of Trka Receptors 1e+00
## Acyl Chain Remodeling Of Cl 1e+00
## Acyl Chain Remodeling Of Dag And Tag 1e+00
## Acyl Chain Remodelling Of Pc 1e+00
## Acyl Chain Remodelling Of Pe 1e+00
## Acyl Chain Remodelling Of Pg 1e+00
## Acyl Chain Remodelling Of Pi 1e+00
## Acyl Chain Remodelling Of Ps 1e+00
## Adaptive Immune System 1e+00
## Adenylate Cyclase Activating Pathway 1e+00
## Adenylate Cyclase Inhibitory Pathway 1e+00
## Adherens Junctions Interactions 1e+00
## Adora2b Mediated Anti Inflammatory Cytokines Production 1e+00
## Adp Signalling Through P2y Purinoceptor 1 1e+00
## Adp Signalling Through P2y Purinoceptor 12 1e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion 1e+00
## Adrenoceptors 1e+00
## Aflatoxin Activation And Detoxification 1e+00
## Aggrephagy 1e+00
## Akt Phosphorylates Targets In The Cytosol 1e+00
## Alpha Defensins 1e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 1e+00
## Alpha Oxidation Of Phytanate 1e+00
## Alpha Protein Kinase 1 Signaling Pathway 1e+00
## Alternative Complement Activation 1e+00
## Amine Ligand Binding Receptors 1e+00
## Amino Acid Conjugation 1e+00
## Amino Acid Transport Across The Plasma Membrane 1e+00
## Amino Acids Regulate Mtorc1 1e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity 1e+00
## Amyloid Fiber Formation 1e+00
## Anchoring Fibril Formation 1e+00
## Anchoring Of The Basal Body To The Plasma Membrane 1e+00
## Androgen Biosynthesis 1e+00
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 1e+00
## Antigen Processing Ubiquitination Proteasome Degradation 1e+00
## Antimicrobial Peptides 1e+00
## Antiviral Mechanism By Ifn Stimulated Genes 1e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 1e+00
## Apc Cdc20 Mediated Degradation Of Nek2a 1e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 1e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection 1e+00
## Apoptosis 1e+00
## Apoptotic Cleavage Of Cell Adhesion Proteins 1e+00
## Apoptotic Cleavage Of Cellular Proteins 1e+00
## Apoptotic Factor Mediated Response 1e+00
## Aquaporin Mediated Transport 1e+00
## Arachidonate Production From Dag 1e+00
## Arachidonic Acid Metabolism 1e+00
## Arms Mediated Activation 1e+00
## Aryl Hydrocarbon Receptor Signalling 1e+00
## Asparagine N Linked Glycosylation 1e+00
## Aspartate And Asparagine Metabolism 1e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors 1e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes 1e+00
## Assembly Of The Hiv Virion 1e+00
## Assembly Of The Orc Complex At The Origin Of Replication 1e+00
## Assembly Of The Pre Replicative Complex 1e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes 1e+00
## Atf6 Atf6 Alpha Activates Chaperones 1e+00
## Attachment And Entry 1e+00
## Attachment Of Gpi Anchor To Upar 1e+00
## Attenuation Phase 1e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 1e+00
## Autophagy 1e+00
## B Wich Complex Positively Regulates Rrna Expression 1e+00
## Base Excision Repair 1e+00
## Base Excision Repair Ap Site Formation 1e+00
## Basigin Interactions 1e+00
## Bbsome Mediated Cargo Targeting To Cilium 1e+00
## Beta Catenin Independent Wnt Signaling 1e+00
## Beta Catenin Phosphorylation Cascade 1e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 1e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 1e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 1e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 1e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 1e+00
## Beta Oxidation Of Pristanoyl Coa 1e+00
## Beta Oxidation Of Very Long Chain Fatty Acids 1e+00
## Bicarbonate Transporters 1e+00
## Bile Acid And Bile Salt Metabolism 1e+00
## Binding And Uptake Of Ligands By Scavenger Receptors 1e+00
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 1e+00
## Biological Oxidations 1e+00
## Biosynthesis Of Epa Derived Spms 1e+00
## Biosynthesis Of Maresin Like Spms 1e+00
## Biosynthesis Of Maresins 1e+00
## Biosynthesis Of Specialized Proresolving Mediators Spms 1e+00
## Biotin Transport And Metabolism 1e+00
## Blood Group Systems Biosynthesis 1e+00
## Branched Chain Amino Acid Catabolism 1e+00
## Budding And Maturation Of Hiv Virion 1e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 1e+00
## Butyrophilin Btn Family Interactions 1e+00
## C Type Lectin Receptors Clrs 1e+00
## Ca2 Activated K Channels 1e+00
## Calcineurin Activates Nfat 1e+00
## Calcitonin Like Ligand Receptors 1e+00
## Calnexin Calreticulin Cycle 1e+00
## Carboxyterminal Post Translational Modifications Of Tubulin 1e+00
## Cardiac Conduction 1e+00
## Cargo Trafficking To The Periciliary Membrane 1e+00
## Carnitine Metabolism 1e+00
## Caspase Activation Via Death Receptors In The Presence Of Ligand 1e+00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 1e+00
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 1e+00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 1e+00
## Cation Coupled Chloride Cotransporters 1e+00
## Cd209 Dc Sign Signaling 1e+00
## Cd22 Mediated Bcr Regulation 1e+00
## Cdc42 Gtpase Cycle 1e+00
## Cdc6 Association With The Orc Origin Complex 1e+00
## Cell Cell Communication 1e+00
## Cell Cell Junction Organization 1e+00
## Cell Cycle 1e+00
## Cell Cycle Checkpoints 1e+00
## Cell Cycle Mitotic 1e+00
## Cell Extracellular Matrix Interactions 1e+00
## Cell Junction Organization 1e+00
## Cell Surface Interactions At The Vascular Wall 1e+00
## Cellular Hexose Transport 1e+00
## Cellular Response To Chemical Stress 1e+00
## Cellular Response To Heat Stress 1e+00
## Cellular Response To Hypoxia 1e+00
## Cellular Response To Starvation 1e+00
## Cellular Responses To External Stimuli 1e+00
## Cellular Senescence 1e+00
## Cgmp Effects 1e+00
## Chaperone Mediated Autophagy 1e+00
## Chl1 Interactions 1e+00
## Cholesterol Biosynthesis 1e+00
## Choline Catabolism 1e+00
## Chondroitin Sulfate Biosynthesis 1e+00
## Chondroitin Sulfate Dermatan Sulfate Metabolism 1e+00
## Chrebp Activates Metabolic Gene Expression 1e+00
## Chromatin Modifying Enzymes 1e+00
## Chromosome Maintenance 1e+00
## Chylomicron Assembly 1e+00
## Chylomicron Clearance 1e+00
## Chylomicron Remodeling 1e+00
## Cilium Assembly 1e+00
## Citric Acid Cycle Tca Cycle 1e+00
## Class A 1 Rhodopsin Like Receptors 1e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors 1e+00
## Class I Mhc Mediated Antigen Processing Presentation 1e+00
## Class I Peroxisomal Membrane Protein Import 1e+00
## Clec7a Dectin 1 Induces Nfat Activation 1e+00
## Clec7a Dectin 1 Signaling 1e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 1e+00
## Coenzyme A Biosynthesis 1e+00
## Cohesin Loading Onto Chromatin 1e+00
## Collagen Biosynthesis And Modifying Enzymes 1e+00
## Collagen Chain Trimerization 1e+00
## Common Pathway Of Fibrin Clot Formation 1e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation 1e+00
## Complex I Biogenesis 1e+00
## Conjugation Of Benzoate With Glycine 1e+00
## Constitutive Signaling By Overexpressed Erbb2 1e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 1e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 1e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 1e+00
## Copi Dependent Golgi To Er Retrograde Traffic 1e+00
## Copi Independent Golgi To Er Retrograde Traffic 1e+00
## Creatine Metabolism 1e+00
## Creation Of C4 And C2 Activators 1e+00
## Creb3 Factors Activate Genes 1e+00
## Cristae Formation 1e+00
## Crmps In Sema3a Signaling 1e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 1e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 1e+00
## Crosslinking Of Collagen Fibrils 1e+00
## Cs Ds Degradation 1e+00
## Cyclin A Cdk2 Associated Events At S Phase Entry 1e+00
## Cyclin D Associated Events In G1 1e+00
## Cyp2e1 Reactions 1e+00
## Cytochrome C Mediated Apoptotic Response 1e+00
## Cytochrome P450 Arranged By Substrate Type 1e+00
## Cytokine Signaling In Immune System 1e+00
## Cytoprotection By Hmox1 1e+00
## Cytosolic Iron Sulfur Cluster Assembly 1e+00
## Cytosolic Sulfonation Of Small Molecules 1e+00
## Cytosolic Trna Aminoacylation 1e+00
## Darpp 32 Events 1e+00
## Dcc Mediated Attractive Signaling 1e+00
## Deactivation Of The Beta Catenin Transactivating Complex 1e+00
## Deadenylation Dependent Mrna Decay 1e+00
## Deadenylation Of Mrna 1e+00
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 1e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 1e+00
## Defective B4galt7 Causes Eds Progeroid Type 1e+00
## Defective Cftr Causes Cystic Fibrosis 1e+00
## Defective Chst14 Causes Eds Musculocontractural Type 1e+00
## Defective Chst3 Causes Sedcjd 1e+00
## Defective Chst6 Causes Mcdc1 1e+00
## Defective Chsy1 Causes Tpbs 1e+00
## Defective Csf2rb Causes Smdp5 1e+00
## Defective Ext2 Causes Exostoses 2 1e+00
## Defective F9 Activation 1e+00
## Defective Factor Ix Causes Hemophilia B 1e+00
## Defective Factor Viii Causes Hemophilia A 1e+00
## Defective Lfng Causes Scdo3 1e+00
## Defective Ripk1 Mediated Regulated Necrosis 1e+00
## Defective St3gal3 Causes Mct12 And Eiee15 1e+00
## Defects In Biotin Btn Metabolism 1e+00
## Defects In Cobalamin B12 Metabolism 1e+00
## Defects In Vitamin And Cofactor Metabolism 1e+00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 1e+00
## Degradation Of Axin 1e+00
## Degradation Of Beta Catenin By The Destruction Complex 1e+00
## Degradation Of Cysteine And Homocysteine 1e+00
## Degradation Of Dvl 1e+00
## Degradation Of Gli1 By The Proteasome 1e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 1e+00
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 1e+00
## Dermatan Sulfate Biosynthesis 1e+00
## Detoxification Of Reactive Oxygen Species 1e+00
## Deubiquitination 1e+00
## Developmental Biology 1e+00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 1e+00
## Digestion 1e+00
## Digestion And Absorption 1e+00
## Digestion Of Dietary Carbohydrate 1e+00
## Digestion Of Dietary Lipid 1e+00
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 1e+00
## Diseases Associated With Glycosaminoglycan Metabolism 1e+00
## Diseases Associated With Glycosylation Precursor Biosynthesis 1e+00
## Diseases Associated With N Glycosylation Of Proteins 1e+00
## Diseases Associated With Surfactant Metabolism 1e+00
## Diseases Of Base Excision Repair 1e+00
## Diseases Of Carbohydrate Metabolism 1e+00
## Diseases Of Dna Repair 1e+00
## Diseases Of Glycosylation 1e+00
## Diseases Of Metabolism 1e+00
## Diseases Of Mismatch Repair Mmr 1e+00
## Diseases Of Mitotic Cell Cycle 1e+00
## Diseases Of Programmed Cell Death 1e+00
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 1e+00
## Disinhibition Of Snare Formation 1e+00
## Disorders Of Transmembrane Transporters 1e+00
## Displacement Of Dna Glycosylase By Apex1 1e+00
## Dna Damage Bypass 1e+00
## Dna Damage Recognition In Gg Ner 1e+00
## Dna Damage Reversal 1e+00
## Dna Damage Telomere Stress Induced Senescence 1e+00
## Dna Double Strand Break Repair 1e+00
## Dna Double Strand Break Response 1e+00
## Dna Repair 1e+00
## Dna Replication 1e+00
## Dna Replication Initiation 1e+00
## Dna Replication Pre Initiation 1e+00
## Dna Strand Elongation 1e+00
## Dopamine Neurotransmitter Release Cycle 1e+00
## Dopamine Receptors 1e+00
## Downregulation Of Erbb2 Erbb3 Signaling 1e+00
## Downregulation Of Erbb4 Signaling 1e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 1e+00
## Downregulation Of Tgf Beta Receptor Signaling 1e+00
## Downstream Signaling Events Of B Cell Receptor Bcr 1e+00
## Downstream Signaling Of Activated Fgfr1 1e+00
## Downstream Signaling Of Activated Fgfr2 1e+00
## Downstream Signaling Of Activated Fgfr3 1e+00
## Downstream Signaling Of Activated Fgfr4 1e+00
## Dscam Interactions 1e+00
## Dual Incision In Gg Ner 1e+00
## Dual Incision In Tc Ner 1e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 1e+00
## Early Phase Of Hiv Life Cycle 1e+00
## Effects Of Pip2 Hydrolysis 1e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 1e+00
## Eicosanoid Ligand Binding Receptors 1e+00
## Eicosanoids 1e+00
## Elastic Fibre Formation 1e+00
## Electric Transmission Across Gap Junctions 1e+00
## Elevation Of Cytosolic Ca2 Levels 1e+00
## Endogenous Sterols 1e+00
## Endosomal Sorting Complex Required For Transport Escrt 1e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 1e+00
## Enos Activation 1e+00
## Epha Mediated Growth Cone Collapse 1e+00
## Ephb Mediated Forward Signaling 1e+00
## Ephrin Signaling 1e+00
## Epigenetic Regulation Of Gene Expression 1e+00
## Er Quality Control Compartment Erqc 1e+00
## Er To Golgi Anterograde Transport 1e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 1e+00
## Erk Mapk Targets 1e+00
## Erks Are Inactivated 1e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 1e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 1e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 1e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg 1e+00
## Erythropoietin Activates Ras 1e+00
## Erythropoietin Activates Stat5 1e+00
## Esr Mediated Signaling 1e+00
## Establishment Of Sister Chromatid Cohesion 1e+00
## Estrogen Biosynthesis 1e+00
## Estrogen Dependent Gene Expression 1e+00
## Estrogen Stimulated Signaling Through Prkcz 1e+00
## Ethanol Oxidation 1e+00
## Eukaryotic Translation Elongation 1e+00
## Eukaryotic Translation Initiation 1e+00
## Export Of Viral Ribonucleoproteins From Nucleus 1e+00
## Extension Of Telomeres 1e+00
## Extracellular Matrix Organization 1e+00
## Extrinsic Pathway Of Fibrin Clot Formation 1e+00
## Factors Involved In Megakaryocyte Development And Platelet Production 1e+00
## Fanconi Anemia Pathway 1e+00
## Fasl Cd95l Signaling 1e+00
## Fatty Acid Metabolism 1e+00
## Fatty Acids 1e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 1e+00
## Fatty Acyl Coa Biosynthesis 1e+00
## Fbxw7 Mutants And Notch1 In Cancer 1e+00
## Fc Epsilon Receptor Fceri Signaling 1e+00
## Fceri Mediated Nf Kb Activation 1e+00
## Fcgamma Receptor Fcgr Dependent Phagocytosis 1e+00
## Fcgr Activation 1e+00
## Fertilization 1e+00
## Fgfr1 Ligand Binding And Activation 1e+00
## Fgfr1b Ligand Binding And Activation 1e+00
## Fgfr1c Ligand Binding And Activation 1e+00
## Fgfr2 Alternative Splicing 1e+00
## Fgfr2 Ligand Binding And Activation 1e+00
## Fgfr2 Mutant Receptor Activation 1e+00
## Fgfr2b Ligand Binding And Activation 1e+00
## Fgfr2c Ligand Binding And Activation 1e+00
## Fgfr3 Ligand Binding And Activation 1e+00
## Fgfr3b Ligand Binding And Activation 1e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling 1e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 1e+00
## Flt3 Signaling 1e+00
## Flt3 Signaling By Cbl Mutants 1e+00
## Flt3 Signaling In Disease 1e+00
## Flt3 Signaling Through Src Family Kinases 1e+00
## Folding Of Actin By Cct Tric 1e+00
## Formation Of Apoptosome 1e+00
## Formation Of Atp By Chemiosmotic Coupling 1e+00
## Formation Of Fibrin Clot Clotting Cascade 1e+00
## Formation Of Incision Complex In Gg Ner 1e+00
## Formation Of Rna Pol Ii Elongation Complex 1e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf 1e+00
## Formation Of Tc Ner Pre Incision Complex 1e+00
## Formation Of The Beta Catenin Tcf Transactivating Complex 1e+00
## Formation Of The Cornified Envelope 1e+00
## Formation Of The Early Elongation Complex 1e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric 1e+00
## Formation Of Xylulose 5 Phosphate 1e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 1e+00
## Foxo Mediated Transcription 1e+00
## Foxo Mediated Transcription Of Cell Cycle Genes 1e+00
## Foxo Mediated Transcription Of Cell Death Genes 1e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 1e+00
## Free Fatty Acid Receptors 1e+00
## Free Fatty Acids Regulate Insulin Secretion 1e+00
## Frs Mediated Fgfr1 Signaling 1e+00
## Frs Mediated Fgfr2 Signaling 1e+00
## Frs Mediated Fgfr3 Signaling 1e+00
## Frs Mediated Fgfr4 Signaling 1e+00
## Fructose Catabolism 1e+00
## Fructose Metabolism 1e+00
## G Alpha I Signalling Events 1e+00
## G Alpha Q Signalling Events 1e+00
## G Alpha S Signalling Events 1e+00
## G Alpha Z Signalling Events 1e+00
## G Beta Gamma Signalling Through Cdc42 1e+00
## G Beta Gamma Signalling Through Pi3kgamma 1e+00
## G Protein Activation 1e+00
## G Protein Beta Gamma Signalling 1e+00
## G1 S Dna Damage Checkpoints 1e+00
## G2 M Checkpoints 1e+00
## G2 M Dna Damage Checkpoint 1e+00
## G2 Phase 1e+00
## Gaba B Receptor Activation 1e+00
## Gaba Receptor Activation 1e+00
## Gaba Synthesis Release Reuptake And Degradation 1e+00
## Galactose Catabolism 1e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 1e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 1e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 1e+00
## Gap Junction Assembly 1e+00
## Gap Junction Degradation 1e+00
## Gap Junction Trafficking And Regulation 1e+00
## Gdp Fucose Biosynthesis 1e+00
## Gene Silencing By Rna 1e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 1e+00
## Global Genome Nucleotide Excision Repair Gg Ner 1e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 1e+00
## Glucagon Signaling In Metabolic Regulation 1e+00
## Glucagon Type Ligand Receptors 1e+00
## Glucocorticoid Biosynthesis 1e+00
## Gluconeogenesis 1e+00
## Glucose Metabolism 1e+00
## Glucuronidation 1e+00
## Glutamate And Glutamine Metabolism 1e+00
## Glutamate Neurotransmitter Release Cycle 1e+00
## Glutathione Conjugation 1e+00
## Glutathione Synthesis And Recycling 1e+00
## Glycerophospholipid Biosynthesis 1e+00
## Glycerophospholipid Catabolism 1e+00
## Glycogen Breakdown Glycogenolysis 1e+00
## Glycogen Metabolism 1e+00
## Glycogen Storage Diseases 1e+00
## Glycogen Synthesis 1e+00
## Glycolysis 1e+00
## Glycosaminoglycan Metabolism 1e+00
## Glycosphingolipid Metabolism 1e+00
## Glyoxylate Metabolism And Glycine Degradation 1e+00
## Golgi Associated Vesicle Biogenesis 1e+00
## Golgi To Er Retrograde Transport 1e+00
## Gp1b Ix V Activation Signalling 1e+00
## Gpcr Ligand Binding 1e+00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 1e+00
## Grb7 Events In Erbb2 Signaling 1e+00
## Hats Acetylate Histones 1e+00
## Hcmv Early Events 1e+00
## Hcmv Infection 1e+00
## Hcmv Late Events 1e+00
## Hdacs Deacetylate Histones 1e+00
## Hdl Assembly 1e+00
## Hdl Clearance 1e+00
## Hdl Remodeling 1e+00
## Hdms Demethylate Histones 1e+00
## Hdr Through Homologous Recombination Hrr 1e+00
## Hdr Through Mmej Alt Nhej 1e+00
## Hdr Through Single Strand Annealing Ssa 1e+00
## Hedgehog Ligand Biogenesis 1e+00
## Hedgehog Off State 1e+00
## Hedgehog On State 1e+00
## Heme Biosynthesis 1e+00
## Heme Degradation 1e+00
## Hemostasis 1e+00
## Heparan Sulfate Heparin Hs Gag Metabolism 1e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 1e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 1e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 1e+00
## Histidine Catabolism 1e+00
## Hiv Elongation Arrest And Recovery 1e+00
## Hiv Infection 1e+00
## Hiv Life Cycle 1e+00
## Hiv Transcription Elongation 1e+00
## Hiv Transcription Initiation 1e+00
## Homologous Dna Pairing And Strand Exchange 1e+00
## Homology Directed Repair 1e+00
## Hormone Ligand Binding Receptors 1e+00
## Host Interactions Of Hiv Factors 1e+00
## Hs Gag Biosynthesis 1e+00
## Hs Gag Degradation 1e+00
## Hsf1 Activation 1e+00
## Hsf1 Dependent Transactivation 1e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 1e+00
## Hur Elavl1 Binds And Stabilizes Mrna 1e+00
## Hyaluronan Biosynthesis And Export 1e+00
## Hyaluronan Metabolism 1e+00
## Hyaluronan Uptake And Degradation 1e+00
## Hydrolysis Of Lpc 1e+00
## Ikba Variant Leads To Eda Id 1e+00
## Il 6 Type Cytokine Receptor Ligand Interactions 1e+00
## Inactivation Of Cdc42 And Rac1 1e+00
## Incretin Synthesis Secretion And Inactivation 1e+00
## Infection With Mycobacterium Tuberculosis 1e+00
## Infectious Disease 1e+00
## Influenza Infection 1e+00
## Inhibition Of Dna Recombination At Telomere 1e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 1e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 1e+00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 1e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 1e+00
## Innate Immune System 1e+00
## Inositol Phosphate Metabolism 1e+00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 1e+00
## Insulin Processing 1e+00
## Insulin Receptor Recycling 1e+00
## Integration Of Energy Metabolism 1e+00
## Integration Of Provirus 1e+00
## Integrin Signaling 1e+00
## Interaction Between L1 And Ankyrins 1e+00
## Interaction With Cumulus Cells And The Zona Pellucida 1e+00
## Interactions Of Rev With Host Cellular Proteins 1e+00
## Interactions Of Vpr With Host Cellular Proteins 1e+00
## Interconversion Of Nucleotide Di And Triphosphates 1e+00
## Interferon Signaling 1e+00
## Interleukin 2 Signaling 1e+00
## Interleukin 36 Pathway 1e+00
## Intestinal Absorption 1e+00
## Intra Golgi And Retrograde Golgi To Er Traffic 1e+00
## Intra Golgi Traffic 1e+00
## Intracellular Signaling By Second Messengers 1e+00
## Intraflagellar Transport 1e+00
## Intrinsic Pathway Of Fibrin Clot Formation 1e+00
## Inwardly Rectifying K Channels 1e+00
## Ion Channel Transport 1e+00
## Ion Homeostasis 1e+00
## Ion Transport By P Type Atpases 1e+00
## Ionotropic Activity Of Kainate Receptors 1e+00
## Irak1 Recruits Ikk Complex 1e+00
## Irak2 Mediated Activation Of Tak1 Complex 1e+00
## Ire1alpha Activates Chaperones 1e+00
## Irf3 Mediated Activation Of Type 1 Ifn 1e+00
## Iron Uptake And Transport 1e+00
## Irs Activation 1e+00
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 1e+00
## Josephin Domain Dubs 1e+00
## Keratan Sulfate Biosynthesis 1e+00
## Keratan Sulfate Degradation 1e+00
## Keratan Sulfate Keratin Metabolism 1e+00
## Keratinization 1e+00
## Ketone Body Metabolism 1e+00
## Kinesins 1e+00
## Ksrp Khsrp Binds And Destabilizes Mrna 1e+00
## Lagging Strand Synthesis 1e+00
## Laminin Interactions 1e+00
## Late Endosomal Microautophagy 1e+00
## Lectin Pathway Of Complement Activation 1e+00
## Leishmania Infection 1e+00
## Leukotriene Receptors 1e+00
## Lgi Adam Interactions 1e+00
## Ligand Receptor Interactions 1e+00
## Linoleic Acid La Metabolism 1e+00
## Lipid Particle Organization 1e+00
## Lipophagy 1e+00
## Listeria Monocytogenes Entry Into Host Cells 1e+00
## Long Term Potentiation 1e+00
## Loss Of Function Of Mecp2 In Rett Syndrome 1e+00
## Loss Of Function Of Smad2 3 In Cancer 1e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 1e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 1e+00
## Ltc4 Cysltr Mediated Il4 Production 1e+00
## Lysine Catabolism 1e+00
## Lysosome Vesicle Biogenesis 1e+00
## Lysosphingolipid And Lpa Receptors 1e+00
## M Phase 1e+00
## Map2k And Mapk Activation 1e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 1e+00
## Mapk Family Signaling Cascades 1e+00
## Mapk6 Mapk4 Signaling 1e+00
## Maturation Of Nucleoprotein 1e+00
## Maturation Of Protein 3a 1e+00
## Maturation Of Sars Cov 1 Spike Protein 1e+00
## Maturation Of Sars Cov 2 Spike Protein 1e+00
## Meiosis 1e+00
## Meiotic Recombination 1e+00
## Meiotic Synapsis 1e+00
## Melanin Biosynthesis 1e+00
## Membrane Trafficking 1e+00
## Met Activates Pi3k Akt Signaling 1e+00
## Met Activates Ptk2 Signaling 1e+00
## Met Activates Ptpn11 1e+00
## Met Activates Rap1 And Rac1 1e+00
## Met Activates Ras Signaling 1e+00
## Met Interacts With Tns Proteins 1e+00
## Met Promotes Cell Motility 1e+00
## Met Receptor Activation 1e+00
## Met Receptor Recycling 1e+00
## Metabolic Disorders Of Biological Oxidation Enzymes 1e+00
## Metabolism Of Amine Derived Hormones 1e+00
## Metabolism Of Amino Acids And Derivatives 1e+00
## Metabolism Of Angiotensinogen To Angiotensins 1e+00
## Metabolism Of Carbohydrates 1e+00
## Metabolism Of Cofactors 1e+00
## Metabolism Of Fat Soluble Vitamins 1e+00
## Metabolism Of Folate And Pterines 1e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se 1e+00
## Metabolism Of Lipids 1e+00
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 1e+00
## Metabolism Of Nucleotides 1e+00
## Metabolism Of Polyamines 1e+00
## Metabolism Of Porphyrins 1e+00
## Metabolism Of Rna 1e+00
## Metabolism Of Steroid Hormones 1e+00
## Metabolism Of Steroids 1e+00
## Metabolism Of Vitamins And Cofactors 1e+00
## Metabolism Of Water Soluble Vitamins And Cofactors 1e+00
## Metal Ion Slc Transporters 1e+00
## Metal Sequestration By Antimicrobial Proteins 1e+00
## Metallothioneins Bind Metals 1e+00
## Methionine Salvage Pathway 1e+00
## Methylation 1e+00
## Mhc Class Ii Antigen Presentation 1e+00
## Microrna Mirna Biogenesis 1e+00
## Mineralocorticoid Biosynthesis 1e+00
## Miro Gtpase Cycle 1e+00
## Miscellaneous Substrates 1e+00
## Miscellaneous Transport And Binding Events 1e+00
## Mismatch Repair 1e+00
## Mitochondrial Biogenesis 1e+00
## Mitochondrial Calcium Ion Transport 1e+00
## Mitochondrial Fatty Acid Beta Oxidation 1e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 1e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 1e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis 1e+00
## Mitochondrial Protein Import 1e+00
## Mitochondrial Translation 1e+00
## Mitochondrial Trna Aminoacylation 1e+00
## Mitochondrial Uncoupling 1e+00
## Mitophagy 1e+00
## Mitotic G1 Phase And G1 S Transition 1e+00
## Mitotic G2 G2 M Phases 1e+00
## Mitotic Metaphase And Anaphase 1e+00
## Mitotic Prometaphase 1e+00
## Mitotic Prophase 1e+00
## Mitotic Spindle Checkpoint 1e+00
## Mitotic Telophase Cytokinesis 1e+00
## Modulation By Mtb Of Host Immune System 1e+00
## Molecules Associated With Elastic Fibres 1e+00
## Molybdenum Cofactor Biosynthesis 1e+00
## Mrna Capping 1e+00
## Mrna Decay By 3 To 5 Exoribonuclease 1e+00
## Mrna Decay By 5 To 3 Exoribonuclease 1e+00
## Mrna Editing 1e+00
## Mrna Editing C To U Conversion 1e+00
## Mrna Splicing 1e+00
## Mrna Splicing Minor Pathway 1e+00
## Mtor Signalling 1e+00
## Mtorc1 Mediated Signalling 1e+00
## Mucopolysaccharidoses 1e+00
## Multifunctional Anion Exchangers 1e+00
## Muscarinic Acetylcholine Receptors 1e+00
## Muscle Contraction 1e+00
## Myoclonic Epilepsy Of Lafora 1e+00
## Myogenesis 1e+00
## N Glycan Antennae Elongation 1e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi 1e+00
## N Glycan Trimming And Elongation In The Cis Golgi 1e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 1e+00
## Na Cl Dependent Neurotransmitter Transporters 1e+00
## Nade Modulates Death Signalling 1e+00
## Ncam1 Interactions 1e+00
## Nectin Necl Trans Heterodimerization 1e+00
## Neddylation 1e+00
## Nef And Signal Transduction 1e+00
## Nef Mediated Cd4 Down Regulation 1e+00
## Nef Mediated Cd8 Down Regulation 1e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 1e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 1e+00
## Negative Epigenetic Regulation Of Rrna Expression 1e+00
## Negative Feedback Regulation Of Mapk Pathway 1e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 1e+00
## Negative Regulation Of Fgfr1 Signaling 1e+00
## Negative Regulation Of Fgfr2 Signaling 1e+00
## Negative Regulation Of Fgfr3 Signaling 1e+00
## Negative Regulation Of Fgfr4 Signaling 1e+00
## Negative Regulation Of Flt3 1e+00
## Negative Regulation Of Mapk Pathway 1e+00
## Negative Regulation Of Met Activity 1e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 1e+00
## Negative Regulation Of Notch4 Signaling 1e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 1e+00
## Negative Regulators Of Ddx58 Ifih1 Signaling 1e+00
## Nephrin Family Interactions 1e+00
## Nervous System Development 1e+00
## Netrin 1 Signaling 1e+00
## Netrin Mediated Repulsion Signals 1e+00
## Neurexins And Neuroligins 1e+00
## Neurofascin Interactions 1e+00
## Neuronal System 1e+00
## Neurotoxicity Of Clostridium Toxins 1e+00
## Neurotransmitter Clearance 1e+00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 1e+00
## Neurotransmitter Release Cycle 1e+00
## Neutrophil Degranulation 1e+00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 1e+00
## Nf Kb Is Activated And Signals Survival 1e+00
## Ngf Independant Trka Activation 1e+00
## Nicotinamide Salvaging 1e+00
## Nicotinate Metabolism 1e+00
## Nitric Oxide Stimulates Guanylate Cyclase 1e+00
## Non Integrin Membrane Ecm Interactions 1e+00
## Noncanonical Activation Of Notch3 1e+00
## Nonhomologous End Joining Nhej 1e+00
## Nonsense Mediated Decay Nmd 1e+00
## Norepinephrine Neurotransmitter Release Cycle 1e+00
## Nostrin Mediated Enos Trafficking 1e+00
## Notch Hlh Transcription Pathway 1e+00
## Notch1 Intracellular Domain Regulates Transcription 1e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus 1e+00
## Notch3 Intracellular Domain Regulates Transcription 1e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus 1e+00
## Notch4 Intracellular Domain Regulates Transcription 1e+00
## Nr1h2 And Nr1h3 Mediated Signaling 1e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 1e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 1e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 1e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 1e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 1e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 1e+00
## Nrcam Interactions 1e+00
## Nrif Signals Cell Death From The Nucleus 1e+00
## Ns1 Mediated Effects On Host Pathways 1e+00
## Ntrk2 Activates Rac1 1e+00
## Nuclear Import Of Rev Protein 1e+00
## Nuclear Receptor Transcription Pathway 1e+00
## Nuclear Signaling By Erbb4 1e+00
## Nucleobase Biosynthesis 1e+00
## Nucleobase Catabolism 1e+00
## Nucleotide Excision Repair 1e+00
## Nucleotide Like Purinergic Receptors 1e+00
## Nucleotide Salvage 1e+00
## O Glycosylation Of Tsr Domain Containing Proteins 1e+00
## O Linked Glycosylation 1e+00
## Oas Antiviral Response 1e+00
## Olfactory Signaling Pathway 1e+00
## Oncogene Induced Senescence 1e+00
## Oncogenic Mapk Signaling 1e+00
## Opioid Signalling 1e+00
## Opsins 1e+00
## Orc1 Removal From Chromatin 1e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 1e+00
## Organelle Biogenesis And Maintenance 1e+00
## Organic Anion Transport 1e+00
## Organic Anion Transporters 1e+00
## Organic Cation Anion Zwitterion Transport 1e+00
## Organic Cation Transport 1e+00
## Other Interleukin Signaling 1e+00
## Other Semaphorin Interactions 1e+00
## Oxidative Stress Induced Senescence 1e+00
## P130cas Linkage To Mapk Signaling For Integrins 1e+00
## P2y Receptors 1e+00
## P38mapk Events 1e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1 1e+00
## P75ntr Recruits Signalling Complexes 1e+00
## P75ntr Signals Via Nf Kb 1e+00
## Parasite Infection 1e+00
## Passive Transport By Aquaporins 1e+00
## Pcna Dependent Long Patch Base Excision Repair 1e+00
## Pcp Ce Pathway 1e+00
## Pecam1 Interactions 1e+00
## Pentose Phosphate Pathway 1e+00
## Peptide Hormone Biosynthesis 1e+00
## Peptide Hormone Metabolism 1e+00
## Peroxisomal Lipid Metabolism 1e+00
## Peroxisomal Protein Import 1e+00
## Pexophagy 1e+00
## Phase 0 Rapid Depolarisation 1e+00
## Phase 1 Inactivation Of Fast Na Channels 1e+00
## Phase 2 Plateau Phase 1e+00
## Phase 3 Rapid Repolarisation 1e+00
## Phase I Functionalization Of Compounds 1e+00
## Phase Ii Conjugation Of Compounds 1e+00
## Phenylalanine And Tyrosine Metabolism 1e+00
## Phenylalanine Metabolism 1e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins 1e+00
## Phosphate Bond Hydrolysis By Nudt Proteins 1e+00
## Phospholipase C Mediated Cascade Fgfr2 1e+00
## Phospholipase C Mediated Cascade Fgfr4 1e+00
## Phospholipid Metabolism 1e+00
## Physiological Factors 1e+00
## Pi 3k Cascade Fgfr1 1e+00
## Pi 3k Cascade Fgfr2 1e+00
## Pi 3k Cascade Fgfr3 1e+00
## Pi 3k Cascade Fgfr4 1e+00
## Pi Metabolism 1e+00
## Pi3k Akt Activation 1e+00
## Pi3k Events In Erbb4 Signaling 1e+00
## Pi5p Regulates Tp53 Acetylation 1e+00
## Pink1 Prkn Mediated Mitophagy 1e+00
## Piwi Interacting Rna Pirna Biogenesis 1e+00
## Pka Activation In Glucagon Signalling 1e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors 1e+00
## Pkmts Methylate Histone Lysines 1e+00
## Plasma Lipoprotein Assembly 1e+00
## Plasma Lipoprotein Remodeling 1e+00
## Platelet Activation Signaling And Aggregation 1e+00
## Platelet Adhesion To Exposed Collagen 1e+00
## Platelet Aggregation Plug Formation 1e+00
## Platelet Calcium Homeostasis 1e+00
## Platelet Homeostasis 1e+00
## Platelet Sensitization By Ldl 1e+00
## Polb Dependent Long Patch Base Excision Repair 1e+00
## Polo Like Kinase Mediated Events 1e+00
## Polymerase Switching 1e+00
## Polymerase Switching On The C Strand Of The Telomere 1e+00
## Positive Epigenetic Regulation Of Rrna Expression 1e+00
## Post Chaperonin Tubulin Folding Pathway 1e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1e+00
## Postmitotic Nuclear Pore Complex Npc Reformation 1e+00
## Potassium Channels 1e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 1e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 1e+00
## Pre Notch Expression And Processing 1e+00
## Pre Notch Processing In Golgi 1e+00
## Pre Notch Processing In The Endoplasmic Reticulum 1e+00
## Pregnenolone Biosynthesis 1e+00
## Presynaptic Depolarization And Calcium Channel Opening 1e+00
## Presynaptic Function Of Kainate Receptors 1e+00
## Prevention Of Phagosomal Lysosomal Fusion 1e+00
## Processing And Activation Of Sumo 1e+00
## Processing Of Capped Intron Containing Pre Mrna 1e+00
## Processing Of Capped Intronless Pre Mrna 1e+00
## Processing Of Dna Double Strand Break Ends 1e+00
## Processing Of Intronless Pre Mrnas 1e+00
## Processing Of Smdt1 1e+00
## Processive Synthesis On The C Strand Of The Telomere 1e+00
## Processive Synthesis On The Lagging Strand 1e+00
## Prolactin Receptor Signaling 1e+00
## Prolonged Erk Activation Events 1e+00
## Propionyl Coa Catabolism 1e+00
## Prostacyclin Signalling Through Prostacyclin Receptor 1e+00
## Prostanoid Ligand Receptors 1e+00
## Protein Folding 1e+00
## Protein Localization 1e+00
## Protein Methylation 1e+00
## Protein Protein Interactions At Synapses 1e+00
## Protein Repair 1e+00
## Protein Ubiquitination 1e+00
## Proton Coupled Monocarboxylate Transport 1e+00
## Pten Regulation 1e+00
## Ptk6 Expression 1e+00
## Ptk6 Regulates Cell Cycle 1e+00
## Ptk6 Regulates Proteins Involved In Rna Processing 1e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 1e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 1e+00
## Purine Catabolism 1e+00
## Purine Ribonucleoside Monophosphate Biosynthesis 1e+00
## Purine Salvage 1e+00
## Pyrimidine Catabolism 1e+00
## Pyrimidine Salvage 1e+00
## Pyruvate Metabolism 1e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle 1e+00
## Ra Biosynthesis Pathway 1e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs 1e+00
## Rab Geranylgeranylation 1e+00
## Rab Regulation Of Trafficking 1e+00
## Rac1 Gtpase Cycle 1e+00
## Raf Activation 1e+00
## Rap1 Signalling 1e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 1e+00
## Ras Processing 1e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 1e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway 1e+00
## Receptor Mediated Mitophagy 1e+00
## Receptor Type Tyrosine Protein Phosphatases 1e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 1e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex 1e+00
## Recruitment Of Numa To Mitotic Centrosomes 1e+00
## Recycling Of Bile Acids And Salts 1e+00
## Recycling Of Eif2 Gdp 1e+00
## Recycling Pathway Of L1 1e+00
## Reduction Of Cytosolic Ca Levels 1e+00
## Reelin Signalling Pathway 1e+00
## Regulated Proteolysis Of P75ntr 1e+00
## Regulation By C Flip 1e+00
## Regulation Of Bach1 Activity 1e+00
## Regulation Of Beta Cell Development 1e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 1e+00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 1e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 1e+00
## Regulation Of Expression Of Slits And Robos 1e+00
## Regulation Of Foxo Transcriptional Activity By Acetylation 1e+00
## Regulation Of Fzd By Ubiquitination 1e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor 1e+00
## Regulation Of Gene Expression In Beta Cells 1e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 1e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 1e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 1e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 1e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 1e+00
## Regulation Of Hmox1 Expression And Activity 1e+00
## Regulation Of Hsf1 Mediated Heat Shock Response 1e+00
## Regulation Of Ifna Signaling 1e+00
## Regulation Of Ifng Signaling 1e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna 1e+00
## Regulation Of Insulin Secretion 1e+00
## Regulation Of Kit Signaling 1e+00
## Regulation Of Lipid Metabolism By Pparalpha 1e+00
## Regulation Of Localization Of Foxo Transcription Factors 1e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 1e+00
## Regulation Of Pten Gene Transcription 1e+00
## Regulation Of Pten Localization 1e+00
## Regulation Of Pten Mrna Translation 1e+00
## Regulation Of Pten Stability And Activity 1e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 1e+00
## Regulation Of Ras By Gaps 1e+00
## Regulation Of Runx1 Expression And Activity 1e+00
## Regulation Of Runx3 Expression And Activity 1e+00
## Regulation Of Signaling By Cbl 1e+00
## Regulation Of Signaling By Nodal 1e+00
## Regulation Of Tp53 Activity 1e+00
## Regulation Of Tp53 Activity Through Acetylation 1e+00
## Regulation Of Tp53 Activity Through Association With Co Factors 1e+00
## Regulation Of Tp53 Activity Through Methylation 1e+00
## Regulation Of Tp53 Activity Through Phosphorylation 1e+00
## Relaxin Receptors 1e+00
## Release Of Apoptotic Factors From The Mitochondria 1e+00
## Release Of Hh Np From The Secreting Cell 1e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 1e+00
## Repression Of Wnt Target Genes 1e+00
## Reproduction 1e+00
## Resolution Of Abasic Sites Ap Sites 1e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 1e+00
## Resolution Of D Loop Structures 1e+00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 1e+00
## Resolution Of Sister Chromatid Cohesion 1e+00
## Respiratory Electron Transport 1e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 1e+00
## Response Of Eif2ak1 Hri To Heme Deficiency 1e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 1e+00
## Response Of Mtb To Phagocytosis 1e+00
## Response To Elevated Platelet Cytosolic Ca2 1e+00
## Response To Metal Ions 1e+00
## Ret Signaling 1e+00
## Retinoid Cycle Disease Events 1e+00
## Retrograde Neurotrophin Signalling 1e+00
## Reversible Hydration Of Carbon Dioxide 1e+00
## Rho Gtpase Cycle 1e+00
## Rho Gtpase Effectors 1e+00
## Rho Gtpases Activate Cit 1e+00
## Rho Gtpases Activate Formins 1e+00
## Rho Gtpases Activate Iqgaps 1e+00
## Rho Gtpases Activate Ktn1 1e+00
## Rho Gtpases Activate Nadph Oxidases 1e+00
## Rho Gtpases Activate Paks 1e+00
## Rho Gtpases Activate Pkns 1e+00
## Rho Gtpases Activate Rhotekin And Rhophilins 1e+00
## Rho Gtpases Activate Rocks 1e+00
## Rho Gtpases Activate Wasps And Waves 1e+00
## Rhoa Gtpase Cycle 1e+00
## Rhobtb Gtpase Cycle 1e+00
## Rhobtb1 Gtpase Cycle 1e+00
## Rhobtb2 Gtpase Cycle 1e+00
## Rhobtb3 Atpase Cycle 1e+00
## Rhot1 Gtpase Cycle 1e+00
## Rhou Gtpase Cycle 1e+00
## Rhov Gtpase Cycle 1e+00
## Rna Polymerase I Promoter Escape 1e+00
## Rna Polymerase I Transcription 1e+00
## Rna Polymerase I Transcription Initiation 1e+00
## Rna Polymerase I Transcription Termination 1e+00
## Rna Polymerase Ii Transcribes Snrna Genes 1e+00
## Rna Polymerase Ii Transcription Termination 1e+00
## Rna Polymerase Iii Chain Elongation 1e+00
## Rna Polymerase Iii Transcription 1e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 1e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 1e+00
## Rna Polymerase Iii Transcription Termination 1e+00
## Rnd1 Gtpase Cycle 1e+00
## Rnd2 Gtpase Cycle 1e+00
## Rnd3 Gtpase Cycle 1e+00
## Robo Receptors Bind Akap5 1e+00
## Role Of Abl In Robo Slit Signaling 1e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization 1e+00
## Role Of Phospholipids In Phagocytosis 1e+00
## Role Of Second Messengers In Netrin 1 Signaling 1e+00
## Rora Activates Gene Expression 1e+00
## Ros And Rns Production In Phagocytes 1e+00
## Rrna Modification In The Mitochondrion 1e+00
## Rrna Modification In The Nucleus And Cytosol 1e+00
## Rrna Processing 1e+00
## Rrna Processing In The Mitochondrion 1e+00
## Rsk Activation 1e+00
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 1e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 1e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription 1e+00
## Runx1 Regulates Expression Of Components Of Tight Junctions 1e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 1e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 1e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 1e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 1e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 1e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 1e+00
## Runx3 Regulates Bcl2l11 Bim Transcription 1e+00
## Runx3 Regulates Cdkn1a Transcription 1e+00
## Runx3 Regulates Immune Response And Cell Migration 1e+00
## Runx3 Regulates Notch Signaling 1e+00
## Runx3 Regulates P14 Arf 1e+00
## Runx3 Regulates Wnt Signaling 1e+00
## Runx3 Regulates Yap1 Mediated Transcription 1e+00
## S Phase 1e+00
## Sars Cov 1 Genome Replication And Transcription 1e+00
## Sars Cov 1 Infection 1e+00
## Sars Cov 2 Infection 1e+00
## Sars Cov Infections 1e+00
## Scavenging By Class A Receptors 1e+00
## Scavenging By Class B Receptors 1e+00
## Scavenging By Class F Receptors 1e+00
## Scavenging Of Heme From Plasma 1e+00
## Scf Skp2 Mediated Degradation Of P27 P21 1e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 1e+00
## Selective Autophagy 1e+00
## Selenoamino Acid Metabolism 1e+00
## Sema3a Pak Dependent Axon Repulsion 1e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 1e+00
## Sema4d In Semaphorin Signaling 1e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse 1e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 1e+00
## Semaphorin Interactions 1e+00
## Sensing Of Dna Double Strand Breaks 1e+00
## Sensory Perception 1e+00
## Sensory Processing Of Sound 1e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 1e+00
## Separation Of Sister Chromatids 1e+00
## Serine Biosynthesis 1e+00
## Serotonin And Melatonin Biosynthesis 1e+00
## Serotonin Neurotransmitter Release Cycle 1e+00
## Serotonin Receptors 1e+00
## Shc Mediated Cascade Fgfr1 1e+00
## Shc Mediated Cascade Fgfr3 1e+00
## Shc Mediated Cascade Fgfr4 1e+00
## Shc Related Events Triggered By Igf1r 1e+00
## Shc1 Events In Erbb4 Signaling 1e+00
## Signal Amplification 1e+00
## Signal Attenuation 1e+00
## Signal Regulatory Protein Family Interactions 1e+00
## Signaling By Activin 1e+00
## Signaling By Bmp 1e+00
## Signaling By Braf And Raf Fusions 1e+00
## Signaling By Ctnnb1 Phospho Site Mutants 1e+00
## Signaling By Erythropoietin 1e+00
## Signaling By Fgfr 1e+00
## Signaling By Fgfr1 1e+00
## Signaling By Fgfr2 1e+00
## Signaling By Fgfr2 Iiia Tm 1e+00
## Signaling By Fgfr2 In Disease 1e+00
## Signaling By Fgfr3 1e+00
## Signaling By Fgfr3 Fusions In Cancer 1e+00
## Signaling By Fgfr4 1e+00
## Signaling By Fgfr4 In Disease 1e+00
## Signaling By Flt3 Fusion Proteins 1e+00
## Signaling By Flt3 Itd And Tkd Mutants 1e+00
## Signaling By Gpcr 1e+00
## Signaling By Hedgehog 1e+00
## Signaling By Hippo 1e+00
## Signaling By Lrp5 Mutants 1e+00
## Signaling By Mapk Mutants 1e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 1e+00
## Signaling By Moderate Kinase Activity Braf Mutants 1e+00
## Signaling By Mras Complex Mutants 1e+00
## Signaling By Mst1 1e+00
## Signaling By Nodal 1e+00
## Signaling By Notch 1e+00
## Signaling By Notch1 1e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer 1e+00
## Signaling By Notch1 Pest Domain Mutants In Cancer 1e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 1e+00
## Signaling By Notch4 1e+00
## Signaling By Ntrk2 Trkb 1e+00
## Signaling By Ntrk3 Trkc 1e+00
## Signaling By Nuclear Receptors 1e+00
## Signaling By Receptor Tyrosine Kinases 1e+00
## Signaling By Retinoic Acid 1e+00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 1e+00
## Signaling By Rnf43 Mutants 1e+00
## Signaling By Robo Receptors 1e+00
## Signaling By Tgf Beta Receptor Complex In Cancer 1e+00
## Signaling By Tgfb Family Members 1e+00
## Signaling By The B Cell Receptor Bcr 1e+00
## Signaling By Vegf 1e+00
## Signaling By Wnt 1e+00
## Signaling By Wnt In Cancer 1e+00
## Signalling To Erks 1e+00
## Signalling To P38 Via Rit And Rin 1e+00
## Signalling To Ras 1e+00
## Sirt1 Negatively Regulates Rrna Expression 1e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 1e+00
## Slc Mediated Transmembrane Transport 1e+00
## Slc Transporter Disorders 1e+00
## Smac Xiap Regulated Apoptotic Response 1e+00
## Small Interfering Rna Sirna Biogenesis 1e+00
## Smooth Muscle Contraction 1e+00
## Snrnp Assembly 1e+00
## Sodium Calcium Exchangers 1e+00
## Sodium Coupled Phosphate Cotransporters 1e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 1e+00
## Sodium Proton Exchangers 1e+00
## Sos Mediated Signalling 1e+00
## Sperm Motility And Taxes 1e+00
## Sphingolipid De Novo Biosynthesis 1e+00
## Sphingolipid Metabolism 1e+00
## Spry Regulation Of Fgf Signaling 1e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane 1e+00
## Stabilization Of P53 1e+00
## Stat5 Activation 1e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants 1e+00
## Stimuli Sensing Channels 1e+00
## Striated Muscle Contraction 1e+00
## Sulfide Oxidation To Sulfate 1e+00
## Sulfur Amino Acid Metabolism 1e+00
## Sumo Is Conjugated To E1 Uba2 Sae1 1e+00
## Sumo Is Proteolytically Processed 1e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 1e+00
## Sumoylation 1e+00
## Sumoylation Of Chromatin Organization Proteins 1e+00
## Sumoylation Of Dna Damage Response And Repair Proteins 1e+00
## Sumoylation Of Dna Replication Proteins 1e+00
## Sumoylation Of Immune Response Proteins 1e+00
## Sumoylation Of Intracellular Receptors 1e+00
## Sumoylation Of Rna Binding Proteins 1e+00
## Sumoylation Of Sumoylation Proteins 1e+00
## Sumoylation Of Transcription Factors 1e+00
## Sumoylation Of Ubiquitinylation Proteins 1e+00
## Suppression Of Apoptosis 1e+00
## Suppression Of Phagosomal Maturation 1e+00
## Surfactant Metabolism 1e+00
## Switching Of Origins To A Post Replicative State 1e+00
## Synaptic Adhesion Like Molecules 1e+00
## Syndecan Interactions 1e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 1e+00
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 1e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 1e+00
## Synthesis Of 5 Eicosatetraenoic Acids 1e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 1e+00
## Synthesis Of Bile Acids And Bile Salts 1e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 1e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 1e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 1e+00
## Synthesis Of Diphthamide Eef2 1e+00
## Synthesis Of Dolichyl Phosphate 1e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 1e+00
## Synthesis Of Gdp Mannose 1e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi 1e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol 1e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol 1e+00
## Synthesis Of Ketone Bodies 1e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex 1e+00
## Synthesis Of Lipoxins Lx 1e+00
## Synthesis Of Pa 1e+00
## Synthesis Of Pc 1e+00
## Synthesis Of Pe 1e+00
## Synthesis Of Pg 1e+00
## Synthesis Of Pi 1e+00
## Synthesis Of Pips At The Early Endosome Membrane 1e+00
## Synthesis Of Pips At The Er Membrane 1e+00
## Synthesis Of Pips At The Golgi Membrane 1e+00
## Synthesis Of Pips At The Late Endosome Membrane 1e+00
## Synthesis Of Pips At The Plasma Membrane 1e+00
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 1e+00
## Synthesis Of Pyrophosphates In The Cytosol 1e+00
## Synthesis Of Udp N Acetyl Glucosamine 1e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas 1e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe 1e+00
## Synthesis Secretion And Deacylation Of Ghrelin 1e+00
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 1e+00
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 1e+00
## Tachykinin Receptors Bind Tachykinins 1e+00
## Tbc Rabgaps 1e+00
## Tcf Dependent Signaling In Response To Wnt 1e+00
## Tcr Signaling 1e+00
## Telomere C Strand Lagging Strand Synthesis 1e+00
## Telomere C Strand Synthesis Initiation 1e+00
## Telomere Extension By Telomerase 1e+00
## Telomere Maintenance 1e+00
## Terminal Pathway Of Complement 1e+00
## Termination Of Translesion Dna Synthesis 1e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 1e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 1e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 1e+00
## Tgf Beta Receptor Signaling Activates Smads 1e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 1e+00
## The Activation Of Arylsulfatases 1e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision 1e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport 1e+00
## The Fatty Acid Cycling Model 1e+00
## The Phototransduction Cascade 1e+00
## The Retinoid Cycle In Cones Daylight Vision 1e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 1e+00
## Thrombin Signalling Through Proteinase Activated Receptors Pars 1e+00
## Thromboxane Signalling Through Tp Receptor 1e+00
## Thyroxine Biosynthesis 1e+00
## Tie2 Signaling 1e+00
## Tight Junction Interactions 1e+00
## Tnfr1 Induced Proapoptotic Signaling 1e+00
## Tnfr1 Mediated Ceramide Production 1e+00
## Toxicity Of Botulinum Toxin Type D Botd 1e+00
## Tp53 Regulates Metabolic Genes 1e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 1e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands 1e+00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 1e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 1e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1e+00
## Traf3 Dependent Irf Activation Pathway 1e+00
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 1e+00
## Traf6 Mediated Irf7 Activation 1e+00
## Trafficking Of Ampa Receptors 1e+00
## Trafficking Of Glur2 Containing Ampa Receptors 1e+00
## Trafficking Of Myristoylated Proteins To The Cilium 1e+00
## Trail Signaling 1e+00
## Trans Golgi Network Vesicle Budding 1e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner 1e+00
## Transcription Of E2f Targets Under Negative Control By Dream Complex 1e+00
## Transcription Of The Hiv Genome 1e+00
## Transcriptional Regulation By E2f6 1e+00
## Transcriptional Regulation By Runx1 1e+00
## Transcriptional Regulation By Runx3 1e+00
## Transcriptional Regulation By Small Rnas 1e+00
## Transcriptional Regulation By Tp53 1e+00
## Transcriptional Regulation Of Testis Differentiation 1e+00
## Transcriptional Regulation Of White Adipocyte Differentiation 1e+00
## Transferrin Endocytosis And Recycling 1e+00
## Translation 1e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 1e+00
## Translation Of Sars Cov 1 Structural Proteins 1e+00
## Translation Of Sars Cov 2 Structural Proteins 1e+00
## Translesion Synthesis By Polh 1e+00
## Translesion Synthesis By Polk 1e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 1e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1e+00
## Transmission Across Chemical Synapses 1e+00
## Transport And Synthesis Of Paps 1e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 1e+00
## Transport Of Connexons To The Plasma Membrane 1e+00
## Transport Of Fatty Acids 1e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 1e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts 1e+00
## Transport Of Mature Transcript To Cytoplasm 1e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 1e+00
## Transport Of Nucleotide Sugars 1e+00
## Transport Of Organic Anions 1e+00
## Transport Of Small Molecules 1e+00
## Transport Of The Slbp Dependant Mature Mrna 1e+00
## Transport Of Vitamins Nucleosides And Related Molecules 1e+00
## Transport To The Golgi And Subsequent Modification 1e+00
## Trif Mediated Programmed Cell Death 1e+00
## Triglyceride Biosynthesis 1e+00
## Triglyceride Catabolism 1e+00
## Triglyceride Metabolism 1e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 1e+00
## Trna Aminoacylation 1e+00
## Trna Modification In The Mitochondrion 1e+00
## Trna Modification In The Nucleus And Cytosol 1e+00
## Trna Processing 1e+00
## Trna Processing In The Mitochondrion 1e+00
## Trna Processing In The Nucleus 1e+00
## Trp Channels 1e+00
## Tryptophan Catabolism 1e+00
## Type I Hemidesmosome Assembly 1e+00
## Tyrosine Catabolism 1e+00
## Tysnd1 Cleaves Peroxisomal Proteins 1e+00
## Ub Specific Processing Proteases 1e+00
## Ubiquinol Biosynthesis 1e+00
## Uch Proteinases 1e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 1e+00
## Unwinding Of Dna 1e+00
## Uptake And Actions Of Bacterial Toxins 1e+00
## Uptake And Function Of Anthrax Toxins 1e+00
## Uptake And Function Of Diphtheria Toxin 1e+00
## Urea Cycle 1e+00
## Vasopressin Like Receptors 1e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 1e+00
## Vegf Ligand Receptor Interactions 1e+00
## Vegfr2 Mediated Cell Proliferation 1e+00
## Vesicle Mediated Transport 1e+00
## Viral Messenger Rna Synthesis 1e+00
## Visual Phototransduction 1e+00
## Vitamin B1 Thiamin Metabolism 1e+00
## Vitamin B2 Riboflavin Metabolism 1e+00
## Vitamin B5 Pantothenate Metabolism 1e+00
## Vitamin C Ascorbate Metabolism 1e+00
## Vitamin D Calciferol Metabolism 1e+00
## Vitamins 1e+00
## Vldl Assembly 1e+00
## Vldl Clearance 1e+00
## Voltage Gated Potassium Channels 1e+00
## Vxpx Cargo Targeting To Cilium 1e+00
## Wax And Plasmalogen Biosynthesis 1e+00
## Wnt Mediated Activation Of Dvl 1e+00
## Xenobiotics 1e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family 1e+00
## Zinc Influx Into Cells By The Slc39 Gene Family 1e+00
## Zinc Transporters 1e+00
## signature
## Interleukin 10 Signaling 73
## Interleukin 1 Processing 73
## Chemokine Receptors Bind Chemokines 73
## Interleukin 4 And Interleukin 13 Signaling 73
## Purinergic Signaling In Leishmaniasis Infection 73
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 73
## Pyroptosis 73
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 73
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 73
## Cd163 Mediating An Anti Inflammatory Response 73
## Egfr Transactivation By Gastrin 73
## Mapk3 Erk1 Activation 73
## Inflammasomes 73
## Interleukin 6 Signaling 73
## Cd28 Dependent Vav1 Pathway 73
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 73
## Trafficking And Processing Of Endosomal Tlr 73
## Regulated Necrosis 73
## Tnfs Bind Their Physiological Receptors 73
## The Nlrp3 Inflammasome 73
## G2 M Dna Replication Checkpoint 73
## Mecp2 Regulates Transcription Factors 73
## Runx2 Regulates Chondrocyte Maturation 73
## Activation Of Matrix Metalloproteinases 73
## Clec7a Inflammasome Pathway 73
## Fibronectin Matrix Formation 73
## Phosphorylation Of Emi1 73
## Ptk6 Promotes Hif1a Stabilization 73
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 73
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 73
## Activation Of Nima Kinases Nek9 Nek6 Nek7 73
## Creb Phosphorylation 73
## Ctla4 Inhibitory Signaling 73
## Interleukin 37 Signaling 73
## Signal Transduction By L1 73
## Cd28 Dependent Pi3k Akt Signaling 73
## Activation Of C3 And C5 73
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 73
## Interleukin 18 Signaling 73
## Mecp2 Regulates Transcription Of Neuronal Ligands 73
## Raf Independent Mapk1 3 Activation 73
## Runx2 Regulates Genes Involved In Cell Migration 73
## Interleukin 6 Family Signaling 73
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 73
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 73
## E2f Enabled Inhibition Of Pre Replication Complex Formation 73
## Egfr Interacts With Phospholipase C Gamma 73
## Extra Nuclear Estrogen Signaling 73
## Interleukin 23 Signaling 73
## Interleukin 9 Signaling 73
## Mapk1 Erk2 Activation 73
## Activation Of The Ap 1 Family Of Transcription Factors 73
## Akt Phosphorylates Targets In The Nucleus 73
## Camk Iv Mediated Phosphorylation Of Creb 73
## Interleukin 21 Signaling 73
## Mastl Facilitates Mitotic Progression 73
## P75ntr Regulates Axonogenesis 73
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 73
## Condensation Of Prometaphase Chromosomes 73
## Dap12 Interactions 73
## Endosomal Vacuolar Pathway 73
## Interleukin 27 Signaling 73
## Pd 1 Signaling 73
## Signaling By Leptin 73
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 73
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 73
## Interleukin 35 Signalling 73
## Killing Mechanisms 73
## Notch2 Intracellular Domain Regulates Transcription 73
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 73
## Tandem Pore Domain Potassium Channels 73
## Ticam1 Dependent Activation Of Irf3 Irf7 73
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 73
## Vldlr Internalisation And Degradation 73
## Advanced Glycosylation Endproduct Receptor Signaling 73
## Apoptosis Induced Dna Fragmentation 73
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 73
## Diseases Of Immune System 73
## Dissolution Of Fibrin Clot 73
## Erbb2 Activates Ptk6 Signaling 73
## Irf3 Mediated Induction Of Type I Ifn 73
## Mapk Targets Nuclear Events Mediated By Map Kinases 73
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 73
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 73
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 73
## Perk Regulates Gene Expression 73
## Cd28 Co Stimulation 73
## Golgi Cisternae Pericentriolar Stack Reorganization 73
## Interleukin 15 Signaling 73
## Shc1 Events In Egfr Signaling 73
## Constitutive Signaling By Egfrviii 73
## Depolymerisation Of The Nuclear Lamina 73
## Erbb2 Regulates Cell Motility 73
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 73
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 73
## Wnt5a Dependent Internalization Of Fzd4 73
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 73
## Costimulation By The Cd28 Family 73
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 73
## Grb2 Events In Erbb2 Signaling 73
## Nod1 2 Signaling Pathway 73
## Pi3k Events In Erbb2 Signaling 73
## Signaling By Erbb2 Ecd Mutants 73
## Sting Mediated Induction Of Host Immune Responses 73
## Sumoylation Of Dna Methylation Proteins 73
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 73
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 73
## Gab1 Signalosome 73
## Interleukin 12 Family Signaling 73
## Rip Mediated Nfkb Activation Via Zbp1 73
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 73
## Constitutive Signaling By Aberrant Pi3k In Cancer 73
## Irak4 Deficiency Tlr2 4 73
## Mecp2 Regulates Neuronal Receptors And Channels 73
## Signaling By Cytosolic Fgfr1 Fusion Mutants 73
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 73
## Ngf Stimulated Transcription 73
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 73
## Initiation Of Nuclear Envelope Ne Reformation 73
## Ldl Clearance 73
## Phase 4 Resting Membrane Potential 73
## Phosphorylation Of The Apc C 73
## Pka Mediated Phosphorylation Of Creb 73
## Signaling By Kit In Disease 73
## Signaling By Pdgfr In Disease 73
## Tnfr2 Non Canonical Nf Kb Pathway 73
## Collagen Degradation 73
## Regulation Of Tlr By Endogenous Ligand 73
## Signaling By Scf Kit 73
## Zbp1 Dai Mediated Induction Of Type I Ifns 73
## E2f Mediated Regulation Of Dna Replication 73
## Interleukin 2 Family Signaling 73
## Pi3k Akt Signaling In Cancer 73
## Shc1 Events In Erbb2 Signaling 73
## Ikk Complex Recruitment Mediated By Rip1 73
## Termination Of O Glycan Biosynthesis 73
## Apc C Cdc20 Mediated Degradation Of Cyclin B 73
## Growth Hormone Receptor Signaling 73
## Interleukin 12 Signaling 73
## Runx2 Regulates Osteoblast Differentiation 73
## Traf6 Mediated Nf Kb Activation 73
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 73
## Cyclin A B1 B2 Associated Events During G2 M Transition 73
## Inactivation Of Csf3 G Csf Signaling 73
## Notch3 Activation And Transmission Of Signal To The Nucleus 73
## Signaling By Egfr In Cancer 73
## Constitutive Signaling By Akt1 E17k In Cancer 73
## Dectin 2 Family 73
## Interleukin 17 Signaling 73
## Interleukin 20 Family Signaling 73
## Negative Regulation Of The Pi3k Akt Network 73
## Signaling By Erbb2 In Cancer 73
## Wnt Ligand Biogenesis And Trafficking 73
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 73
## Eph Ephrin Mediated Repulsion Of Cells 73
## G0 And Early G1 73
## Interleukin Receptor Shc Signaling 73
## Toll Like Receptor 9 Tlr9 Cascade 73
## Vegfr2 Mediated Vascular Permeability 73
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 73
## Myd88 Independent Tlr4 Cascade 73
## Dap12 Signaling 73
## Downregulation Of Erbb2 Signaling 73
## Downstream Signal Transduction 73
## G1 S Specific Transcription 73
## Interleukin 1 Family Signaling 73
## Ripk1 Mediated Regulated Necrosis 73
## Signaling By Ptk6 73
## Signaling By Csf3 G Csf 73
## Tnfr1 Induced Nfkappab Signaling Pathway 73
## Egfr Downregulation 73
## Fgfr1 Mutant Receptor Activation 73
## Runx2 Regulates Bone Development 73
## Transcriptional Regulation Of Pluripotent Stem Cells 73
## Regulation Of Mecp2 Expression And Activity 73
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 73
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 73
## Cargo Concentration In The Er 73
## Plasma Lipoprotein Clearance 73
## Sialic Acid Metabolism 73
## Signaling By Notch2 73
## Assembly Of Collagen Fibrils And Other Multimeric Structures 73
## Gpvi Mediated Activation Cascade 73
## Nuclear Events Kinase And Transcription Factor Activation 73
## Regulation Of Tnfr1 Signaling 73
## Signaling By Interleukins 73
## Cytosolic Sensors Of Pathogen Associated Dna 73
## Interleukin 7 Signaling 73
## Nuclear Pore Complex Npc Disassembly 73
## Ca Dependent Events 73
## Metalloprotease Dubs 73
## Ovarian Tumor Domain Proteases 73
## Peptide Ligand Binding Receptors 73
## Regulation Of Tp53 Expression And Degradation 73
## Rhoh Gtpase Cycle 73
## Senescence Associated Secretory Phenotype Sasp 73
## Signaling By Fgfr1 In Disease 73
## Toll Like Receptor Cascades 73
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 73
## Association Of Tric Cct With Target Proteins During Biosynthesis 73
## Complement Cascade 73
## Generation Of Second Messenger Molecules 73
## Dag And Ip3 Signaling 73
## Interferon Gamma Signaling 73
## Transcriptional Regulation By Ventx 73
## Beta Defensins 73
## Circadian Clock 73
## Rhob Gtpase Cycle 73
## Rhof Gtpase Cycle 73
## Sumoylation Of Transcription Cofactors 73
## Tnf Signaling 73
## Tp53 Regulates Transcription Of Cell Death Genes 73
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 73
## Rhoc Gtpase Cycle 73
## Rhog Gtpase Cycle 73
## Heme Signaling 73
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 73
## Irs Mediated Signalling 73
## Retrograde Transport At The Trans Golgi Network 73
## Signaling By Notch3 73
## Toll Like Receptor Tlr1 Tlr2 Cascade 73
## Tp53 Regulates Transcription Of Cell Cycle Genes 73
## Antigen Processing Cross Presentation 73
## Apoptotic Execution Phase 73
## Cargo Recognition For Clathrin Mediated Endocytosis 73
## Defensins 73
## Rhod Gtpase Cycle 73
## Signaling By Egfr 73
## Signaling By Erbb2 73
## Fceri Mediated Mapk Activation 73
## G Protein Mediated Events 73
## Insulin Receptor Signalling Cascade 73
## Intrinsic Pathway For Apoptosis 73
## Nuclear Envelope Breakdown 73
## Rhoj Gtpase Cycle 73
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 73
## Transcriptional Activation Of Mitochondrial Biogenesis 73
## Ca2 Pathway 73
## Collagen Formation 73
## Eph Ephrin Signaling 73
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 73
## Nrage Signals Death Through Jnk 73
## O Linked Glycosylation Of Mucins 73
## Rac2 Gtpase Cycle 73
## Rhoq Gtpase Cycle 73
## Signaling By Erbb4 73
## Signaling By Pdgf 73
## Tp53 Regulates Transcription Of Dna Repair Genes 73
## Transcriptional Regulation Of Granulopoiesis 73
## Unfolded Protein Response Upr 73
## Asymmetric Localization Of Pcp Proteins 73
## Class B 2 Secretin Family Receptors 73
## Copi Mediated Anterograde Transport 73
## Copii Mediated Vesicle Transport 73
## Diseases Associated With O Glycosylation Of Proteins 73
## Dna Methylation 73
## Fcgr3a Mediated Il10 Synthesis 73
## Interleukin 1 Signaling 73
## Ncam Signaling For Neurite Out Growth 73
## P75 Ntr Receptor Mediated Signalling 73
## Rac3 Gtpase Cycle 73
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 73
## Signaling By Fgfr In Disease 73
## Synthesis Of Substrates In N Glycan Biosythesis 73
## Transcriptional Regulation By Mecp2 73
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 73
## Apc C Mediated Degradation Of Cell Cycle Proteins 73
## Aurka Activation By Tpx2 73
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 73
## Cell Death Signalling Via Nrage Nrif And Nade 73
## Clathrin Mediated Endocytosis 73
## Condensation Of Prophase Chromosomes 73
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 73
## Death Receptor Signalling 73
## Degradation Of The Extracellular Matrix 73
## Ecm Proteoglycans 73
## Fceri Mediated Ca 2 Mobilization 73
## G Alpha 12 13 Signalling Events 73
## Initial Triggering Of Complement 73
## Integrin Cell Surface Interactions 73
## Interferon Alpha Beta Signaling 73
## L1cam Interactions 73
## Nuclear Envelope Ne Reassembly 73
## Plasma Lipoprotein Assembly Remodeling And Clearance 73
## Potential Therapeutics For Sars 73
## Prc2 Methylates Histones And Dna 73
## Programmed Cell Death 73
## Recruitment Of Mitotic Centrosome Proteins And Complexes 73
## Regulation Of Plk1 Activity At G2 M Transition 73
## Regulation Of Runx2 Expression And Activity 73
## Rmts Methylate Histone Arginines 73
## Signaling By Insulin Receptor 73
## Signaling By Met 73
## Signaling By Ntrks 73
## Signaling By Tgf Beta Receptor Complex 73
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 73
## Transcriptional Regulation By Runx2 73
## 2 Ltr Circle Formation 73
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 73
## Abacavir Metabolism 73
## Abacavir Transmembrane Transport 73
## Abacavir Transport And Metabolism 73
## Abc Family Proteins Mediated Transport 73
## Abc Transporter Disorders 73
## Abc Transporters In Lipid Homeostasis 73
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 73
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 73
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 73
## Acetylcholine Binding And Downstream Events 73
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 73
## Acetylcholine Neurotransmitter Release Cycle 73
## Acetylcholine Regulates Insulin Secretion 73
## Acrosome Reaction And Sperm Oocyte Membrane Binding 73
## Activated Notch1 Transmits Signal To The Nucleus 73
## Activated Ntrk2 Signals Through Cdk5 73
## Activated Ntrk2 Signals Through Frs2 And Frs3 73
## Activated Ntrk2 Signals Through Fyn 73
## Activated Ntrk2 Signals Through Pi3k 73
## Activated Ntrk2 Signals Through Ras 73
## Activated Ntrk3 Signals Through Pi3k 73
## Activated Ntrk3 Signals Through Ras 73
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 73
## Activated Tak1 Mediates P38 Mapk Activation 73
## Activation Of Ampk Downstream Of Nmdars 73
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 73
## Activation Of Atr In Response To Replication Stress 73
## Activation Of Bad And Translocation To Mitochondria 73
## Activation Of Bh3 Only Proteins 73
## Activation Of Caspases Through Apoptosome Mediated Cleavage 73
## Activation Of Gene Expression By Srebf Srebp 73
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 73
## Activation Of Kainate Receptors Upon Glutamate Binding 73
## Activation Of Nmda Receptors And Postsynaptic Events 73
## Activation Of Noxa And Translocation To Mitochondria 73
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 73
## Activation Of Puma And Translocation To Mitochondria 73
## Activation Of Rac1 73
## Activation Of Rac1 Downstream Of Nmdars 73
## Activation Of Ras In B Cells 73
## Activation Of Smo 73
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 73
## Activation Of The Phototransduction Cascade 73
## Activation Of The Pre Replicative Complex 73
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 73
## Activation Of Trka Receptors 73
## Acyl Chain Remodeling Of Cl 73
## Acyl Chain Remodeling Of Dag And Tag 73
## Acyl Chain Remodelling Of Pc 73
## Acyl Chain Remodelling Of Pe 73
## Acyl Chain Remodelling Of Pg 73
## Acyl Chain Remodelling Of Pi 73
## Acyl Chain Remodelling Of Ps 73
## Adaptive Immune System 73
## Adenylate Cyclase Activating Pathway 73
## Adenylate Cyclase Inhibitory Pathway 73
## Adherens Junctions Interactions 73
## Adora2b Mediated Anti Inflammatory Cytokines Production 73
## Adp Signalling Through P2y Purinoceptor 1 73
## Adp Signalling Through P2y Purinoceptor 12 73
## Adrenaline Noradrenaline Inhibits Insulin Secretion 73
## Adrenoceptors 73
## Aflatoxin Activation And Detoxification 73
## Aggrephagy 73
## Akt Phosphorylates Targets In The Cytosol 73
## Alpha Defensins 73
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 73
## Alpha Oxidation Of Phytanate 73
## Alpha Protein Kinase 1 Signaling Pathway 73
## Alternative Complement Activation 73
## Amine Ligand Binding Receptors 73
## Amino Acid Conjugation 73
## Amino Acid Transport Across The Plasma Membrane 73
## Amino Acids Regulate Mtorc1 73
## Ampk Inhibits Chrebp Transcriptional Activation Activity 73
## Amyloid Fiber Formation 73
## Anchoring Fibril Formation 73
## Anchoring Of The Basal Body To The Plasma Membrane 73
## Androgen Biosynthesis 73
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 73
## Antigen Processing Ubiquitination Proteasome Degradation 73
## Antimicrobial Peptides 73
## Antiviral Mechanism By Ifn Stimulated Genes 73
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 73
## Apc Cdc20 Mediated Degradation Of Nek2a 73
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 73
## Apobec3g Mediated Resistance To Hiv 1 Infection 73
## Apoptosis 73
## Apoptotic Cleavage Of Cell Adhesion Proteins 73
## Apoptotic Cleavage Of Cellular Proteins 73
## Apoptotic Factor Mediated Response 73
## Aquaporin Mediated Transport 73
## Arachidonate Production From Dag 73
## Arachidonic Acid Metabolism 73
## Arms Mediated Activation 73
## Aryl Hydrocarbon Receptor Signalling 73
## Asparagine N Linked Glycosylation 73
## Aspartate And Asparagine Metabolism 73
## Assembly And Cell Surface Presentation Of Nmda Receptors 73
## Assembly Of Active Lpl And Lipc Lipase Complexes 73
## Assembly Of The Hiv Virion 73
## Assembly Of The Orc Complex At The Origin Of Replication 73
## Assembly Of The Pre Replicative Complex 73
## Atf6 Atf6 Alpha Activates Chaperone Genes 73
## Atf6 Atf6 Alpha Activates Chaperones 73
## Attachment And Entry 73
## Attachment Of Gpi Anchor To Upar 73
## Attenuation Phase 73
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 73
## Autophagy 73
## B Wich Complex Positively Regulates Rrna Expression 73
## Base Excision Repair 73
## Base Excision Repair Ap Site Formation 73
## Basigin Interactions 73
## Bbsome Mediated Cargo Targeting To Cilium 73
## Beta Catenin Independent Wnt Signaling 73
## Beta Catenin Phosphorylation Cascade 73
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 73
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 73
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 73
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 73
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 73
## Beta Oxidation Of Pristanoyl Coa 73
## Beta Oxidation Of Very Long Chain Fatty Acids 73
## Bicarbonate Transporters 73
## Bile Acid And Bile Salt Metabolism 73
## Binding And Uptake Of Ligands By Scavenger Receptors 73
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 73
## Biological Oxidations 73
## Biosynthesis Of Epa Derived Spms 73
## Biosynthesis Of Maresin Like Spms 73
## Biosynthesis Of Maresins 73
## Biosynthesis Of Specialized Proresolving Mediators Spms 73
## Biotin Transport And Metabolism 73
## Blood Group Systems Biosynthesis 73
## Branched Chain Amino Acid Catabolism 73
## Budding And Maturation Of Hiv Virion 73
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 73
## Butyrophilin Btn Family Interactions 73
## C Type Lectin Receptors Clrs 73
## Ca2 Activated K Channels 73
## Calcineurin Activates Nfat 73
## Calcitonin Like Ligand Receptors 73
## Calnexin Calreticulin Cycle 73
## Carboxyterminal Post Translational Modifications Of Tubulin 73
## Cardiac Conduction 73
## Cargo Trafficking To The Periciliary Membrane 73
## Carnitine Metabolism 73
## Caspase Activation Via Death Receptors In The Presence Of Ligand 73
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 73
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 73
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 73
## Cation Coupled Chloride Cotransporters 73
## Cd209 Dc Sign Signaling 73
## Cd22 Mediated Bcr Regulation 73
## Cdc42 Gtpase Cycle 73
## Cdc6 Association With The Orc Origin Complex 73
## Cell Cell Communication 73
## Cell Cell Junction Organization 73
## Cell Cycle 73
## Cell Cycle Checkpoints 73
## Cell Cycle Mitotic 73
## Cell Extracellular Matrix Interactions 73
## Cell Junction Organization 73
## Cell Surface Interactions At The Vascular Wall 73
## Cellular Hexose Transport 73
## Cellular Response To Chemical Stress 73
## Cellular Response To Heat Stress 73
## Cellular Response To Hypoxia 73
## Cellular Response To Starvation 73
## Cellular Responses To External Stimuli 73
## Cellular Senescence 73
## Cgmp Effects 73
## Chaperone Mediated Autophagy 73
## Chl1 Interactions 73
## Cholesterol Biosynthesis 73
## Choline Catabolism 73
## Chondroitin Sulfate Biosynthesis 73
## Chondroitin Sulfate Dermatan Sulfate Metabolism 73
## Chrebp Activates Metabolic Gene Expression 73
## Chromatin Modifying Enzymes 73
## Chromosome Maintenance 73
## Chylomicron Assembly 73
## Chylomicron Clearance 73
## Chylomicron Remodeling 73
## Cilium Assembly 73
## Citric Acid Cycle Tca Cycle 73
## Class A 1 Rhodopsin Like Receptors 73
## Class C 3 Metabotropic Glutamate Pheromone Receptors 73
## Class I Mhc Mediated Antigen Processing Presentation 73
## Class I Peroxisomal Membrane Protein Import 73
## Clec7a Dectin 1 Induces Nfat Activation 73
## Clec7a Dectin 1 Signaling 73
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 73
## Coenzyme A Biosynthesis 73
## Cohesin Loading Onto Chromatin 73
## Collagen Biosynthesis And Modifying Enzymes 73
## Collagen Chain Trimerization 73
## Common Pathway Of Fibrin Clot Formation 73
## Competing Endogenous Rnas Cernas Regulate Pten Translation 73
## Complex I Biogenesis 73
## Conjugation Of Benzoate With Glycine 73
## Constitutive Signaling By Overexpressed Erbb2 73
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 73
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 73
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 73
## Copi Dependent Golgi To Er Retrograde Traffic 73
## Copi Independent Golgi To Er Retrograde Traffic 73
## Creatine Metabolism 73
## Creation Of C4 And C2 Activators 73
## Creb3 Factors Activate Genes 73
## Cristae Formation 73
## Crmps In Sema3a Signaling 73
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 73
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 73
## Crosslinking Of Collagen Fibrils 73
## Cs Ds Degradation 73
## Cyclin A Cdk2 Associated Events At S Phase Entry 73
## Cyclin D Associated Events In G1 73
## Cyp2e1 Reactions 73
## Cytochrome C Mediated Apoptotic Response 73
## Cytochrome P450 Arranged By Substrate Type 73
## Cytokine Signaling In Immune System 73
## Cytoprotection By Hmox1 73
## Cytosolic Iron Sulfur Cluster Assembly 73
## Cytosolic Sulfonation Of Small Molecules 73
## Cytosolic Trna Aminoacylation 73
## Darpp 32 Events 73
## Dcc Mediated Attractive Signaling 73
## Deactivation Of The Beta Catenin Transactivating Complex 73
## Deadenylation Dependent Mrna Decay 73
## Deadenylation Of Mrna 73
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 73
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 73
## Defective B4galt7 Causes Eds Progeroid Type 73
## Defective Cftr Causes Cystic Fibrosis 73
## Defective Chst14 Causes Eds Musculocontractural Type 73
## Defective Chst3 Causes Sedcjd 73
## Defective Chst6 Causes Mcdc1 73
## Defective Chsy1 Causes Tpbs 73
## Defective Csf2rb Causes Smdp5 73
## Defective Ext2 Causes Exostoses 2 73
## Defective F9 Activation 73
## Defective Factor Ix Causes Hemophilia B 73
## Defective Factor Viii Causes Hemophilia A 73
## Defective Lfng Causes Scdo3 73
## Defective Ripk1 Mediated Regulated Necrosis 73
## Defective St3gal3 Causes Mct12 And Eiee15 73
## Defects In Biotin Btn Metabolism 73
## Defects In Cobalamin B12 Metabolism 73
## Defects In Vitamin And Cofactor Metabolism 73
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 73
## Degradation Of Axin 73
## Degradation Of Beta Catenin By The Destruction Complex 73
## Degradation Of Cysteine And Homocysteine 73
## Degradation Of Dvl 73
## Degradation Of Gli1 By The Proteasome 73
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 73
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 73
## Dermatan Sulfate Biosynthesis 73
## Detoxification Of Reactive Oxygen Species 73
## Deubiquitination 73
## Developmental Biology 73
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 73
## Digestion 73
## Digestion And Absorption 73
## Digestion Of Dietary Carbohydrate 73
## Digestion Of Dietary Lipid 73
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 73
## Diseases Associated With Glycosaminoglycan Metabolism 73
## Diseases Associated With Glycosylation Precursor Biosynthesis 73
## Diseases Associated With N Glycosylation Of Proteins 73
## Diseases Associated With Surfactant Metabolism 73
## Diseases Of Base Excision Repair 73
## Diseases Of Carbohydrate Metabolism 73
## Diseases Of Dna Repair 73
## Diseases Of Glycosylation 73
## Diseases Of Metabolism 73
## Diseases Of Mismatch Repair Mmr 73
## Diseases Of Mitotic Cell Cycle 73
## Diseases Of Programmed Cell Death 73
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 73
## Disinhibition Of Snare Formation 73
## Disorders Of Transmembrane Transporters 73
## Displacement Of Dna Glycosylase By Apex1 73
## Dna Damage Bypass 73
## Dna Damage Recognition In Gg Ner 73
## Dna Damage Reversal 73
## Dna Damage Telomere Stress Induced Senescence 73
## Dna Double Strand Break Repair 73
## Dna Double Strand Break Response 73
## Dna Repair 73
## Dna Replication 73
## Dna Replication Initiation 73
## Dna Replication Pre Initiation 73
## Dna Strand Elongation 73
## Dopamine Neurotransmitter Release Cycle 73
## Dopamine Receptors 73
## Downregulation Of Erbb2 Erbb3 Signaling 73
## Downregulation Of Erbb4 Signaling 73
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 73
## Downregulation Of Tgf Beta Receptor Signaling 73
## Downstream Signaling Events Of B Cell Receptor Bcr 73
## Downstream Signaling Of Activated Fgfr1 73
## Downstream Signaling Of Activated Fgfr2 73
## Downstream Signaling Of Activated Fgfr3 73
## Downstream Signaling Of Activated Fgfr4 73
## Dscam Interactions 73
## Dual Incision In Gg Ner 73
## Dual Incision In Tc Ner 73
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 73
## Early Phase Of Hiv Life Cycle 73
## Effects Of Pip2 Hydrolysis 73
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 73
## Eicosanoid Ligand Binding Receptors 73
## Eicosanoids 73
## Elastic Fibre Formation 73
## Electric Transmission Across Gap Junctions 73
## Elevation Of Cytosolic Ca2 Levels 73
## Endogenous Sterols 73
## Endosomal Sorting Complex Required For Transport Escrt 73
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 73
## Enos Activation 73
## Epha Mediated Growth Cone Collapse 73
## Ephb Mediated Forward Signaling 73
## Ephrin Signaling 73
## Epigenetic Regulation Of Gene Expression 73
## Er Quality Control Compartment Erqc 73
## Er To Golgi Anterograde Transport 73
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 73
## Erk Mapk Targets 73
## Erks Are Inactivated 73
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 73
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 73
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 73
## Erythropoietin Activates Phospholipase C Gamma Plcg 73
## Erythropoietin Activates Ras 73
## Erythropoietin Activates Stat5 73
## Esr Mediated Signaling 73
## Establishment Of Sister Chromatid Cohesion 73
## Estrogen Biosynthesis 73
## Estrogen Dependent Gene Expression 73
## Estrogen Stimulated Signaling Through Prkcz 73
## Ethanol Oxidation 73
## Eukaryotic Translation Elongation 73
## Eukaryotic Translation Initiation 73
## Export Of Viral Ribonucleoproteins From Nucleus 73
## Extension Of Telomeres 73
## Extracellular Matrix Organization 73
## Extrinsic Pathway Of Fibrin Clot Formation 73
## Factors Involved In Megakaryocyte Development And Platelet Production 73
## Fanconi Anemia Pathway 73
## Fasl Cd95l Signaling 73
## Fatty Acid Metabolism 73
## Fatty Acids 73
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 73
## Fatty Acyl Coa Biosynthesis 73
## Fbxw7 Mutants And Notch1 In Cancer 73
## Fc Epsilon Receptor Fceri Signaling 73
## Fceri Mediated Nf Kb Activation 73
## Fcgamma Receptor Fcgr Dependent Phagocytosis 73
## Fcgr Activation 73
## Fertilization 73
## Fgfr1 Ligand Binding And Activation 73
## Fgfr1b Ligand Binding And Activation 73
## Fgfr1c Ligand Binding And Activation 73
## Fgfr2 Alternative Splicing 73
## Fgfr2 Ligand Binding And Activation 73
## Fgfr2 Mutant Receptor Activation 73
## Fgfr2b Ligand Binding And Activation 73
## Fgfr2c Ligand Binding And Activation 73
## Fgfr3 Ligand Binding And Activation 73
## Fgfr3b Ligand Binding And Activation 73
## Fgfrl1 Modulation Of Fgfr1 Signaling 73
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 73
## Flt3 Signaling 73
## Flt3 Signaling By Cbl Mutants 73
## Flt3 Signaling In Disease 73
## Flt3 Signaling Through Src Family Kinases 73
## Folding Of Actin By Cct Tric 73
## Formation Of Apoptosome 73
## Formation Of Atp By Chemiosmotic Coupling 73
## Formation Of Fibrin Clot Clotting Cascade 73
## Formation Of Incision Complex In Gg Ner 73
## Formation Of Rna Pol Ii Elongation Complex 73
## Formation Of Senescence Associated Heterochromatin Foci Sahf 73
## Formation Of Tc Ner Pre Incision Complex 73
## Formation Of The Beta Catenin Tcf Transactivating Complex 73
## Formation Of The Cornified Envelope 73
## Formation Of The Early Elongation Complex 73
## Formation Of Tubulin Folding Intermediates By Cct Tric 73
## Formation Of Xylulose 5 Phosphate 73
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 73
## Foxo Mediated Transcription 73
## Foxo Mediated Transcription Of Cell Cycle Genes 73
## Foxo Mediated Transcription Of Cell Death Genes 73
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 73
## Free Fatty Acid Receptors 73
## Free Fatty Acids Regulate Insulin Secretion 73
## Frs Mediated Fgfr1 Signaling 73
## Frs Mediated Fgfr2 Signaling 73
## Frs Mediated Fgfr3 Signaling 73
## Frs Mediated Fgfr4 Signaling 73
## Fructose Catabolism 73
## Fructose Metabolism 73
## G Alpha I Signalling Events 73
## G Alpha Q Signalling Events 73
## G Alpha S Signalling Events 73
## G Alpha Z Signalling Events 73
## G Beta Gamma Signalling Through Cdc42 73
## G Beta Gamma Signalling Through Pi3kgamma 73
## G Protein Activation 73
## G Protein Beta Gamma Signalling 73
## G1 S Dna Damage Checkpoints 73
## G2 M Checkpoints 73
## G2 M Dna Damage Checkpoint 73
## G2 Phase 73
## Gaba B Receptor Activation 73
## Gaba Receptor Activation 73
## Gaba Synthesis Release Reuptake And Degradation 73
## Galactose Catabolism 73
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 73
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 73
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 73
## Gap Junction Assembly 73
## Gap Junction Degradation 73
## Gap Junction Trafficking And Regulation 73
## Gdp Fucose Biosynthesis 73
## Gene Silencing By Rna 73
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 73
## Global Genome Nucleotide Excision Repair Gg Ner 73
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 73
## Glucagon Signaling In Metabolic Regulation 73
## Glucagon Type Ligand Receptors 73
## Glucocorticoid Biosynthesis 73
## Gluconeogenesis 73
## Glucose Metabolism 73
## Glucuronidation 73
## Glutamate And Glutamine Metabolism 73
## Glutamate Neurotransmitter Release Cycle 73
## Glutathione Conjugation 73
## Glutathione Synthesis And Recycling 73
## Glycerophospholipid Biosynthesis 73
## Glycerophospholipid Catabolism 73
## Glycogen Breakdown Glycogenolysis 73
## Glycogen Metabolism 73
## Glycogen Storage Diseases 73
## Glycogen Synthesis 73
## Glycolysis 73
## Glycosaminoglycan Metabolism 73
## Glycosphingolipid Metabolism 73
## Glyoxylate Metabolism And Glycine Degradation 73
## Golgi Associated Vesicle Biogenesis 73
## Golgi To Er Retrograde Transport 73
## Gp1b Ix V Activation Signalling 73
## Gpcr Ligand Binding 73
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 73
## Grb7 Events In Erbb2 Signaling 73
## Hats Acetylate Histones 73
## Hcmv Early Events 73
## Hcmv Infection 73
## Hcmv Late Events 73
## Hdacs Deacetylate Histones 73
## Hdl Assembly 73
## Hdl Clearance 73
## Hdl Remodeling 73
## Hdms Demethylate Histones 73
## Hdr Through Homologous Recombination Hrr 73
## Hdr Through Mmej Alt Nhej 73
## Hdr Through Single Strand Annealing Ssa 73
## Hedgehog Ligand Biogenesis 73
## Hedgehog Off State 73
## Hedgehog On State 73
## Heme Biosynthesis 73
## Heme Degradation 73
## Hemostasis 73
## Heparan Sulfate Heparin Hs Gag Metabolism 73
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 73
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 73
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 73
## Histidine Catabolism 73
## Hiv Elongation Arrest And Recovery 73
## Hiv Infection 73
## Hiv Life Cycle 73
## Hiv Transcription Elongation 73
## Hiv Transcription Initiation 73
## Homologous Dna Pairing And Strand Exchange 73
## Homology Directed Repair 73
## Hormone Ligand Binding Receptors 73
## Host Interactions Of Hiv Factors 73
## Hs Gag Biosynthesis 73
## Hs Gag Degradation 73
## Hsf1 Activation 73
## Hsf1 Dependent Transactivation 73
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 73
## Hur Elavl1 Binds And Stabilizes Mrna 73
## Hyaluronan Biosynthesis And Export 73
## Hyaluronan Metabolism 73
## Hyaluronan Uptake And Degradation 73
## Hydrolysis Of Lpc 73
## Ikba Variant Leads To Eda Id 73
## Il 6 Type Cytokine Receptor Ligand Interactions 73
## Inactivation Of Cdc42 And Rac1 73
## Incretin Synthesis Secretion And Inactivation 73
## Infection With Mycobacterium Tuberculosis 73
## Infectious Disease 73
## Influenza Infection 73
## Inhibition Of Dna Recombination At Telomere 73
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 73
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 73
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 73
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 73
## Innate Immune System 73
## Inositol Phosphate Metabolism 73
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 73
## Insulin Processing 73
## Insulin Receptor Recycling 73
## Integration Of Energy Metabolism 73
## Integration Of Provirus 73
## Integrin Signaling 73
## Interaction Between L1 And Ankyrins 73
## Interaction With Cumulus Cells And The Zona Pellucida 73
## Interactions Of Rev With Host Cellular Proteins 73
## Interactions Of Vpr With Host Cellular Proteins 73
## Interconversion Of Nucleotide Di And Triphosphates 73
## Interferon Signaling 73
## Interleukin 2 Signaling 73
## Interleukin 36 Pathway 73
## Intestinal Absorption 73
## Intra Golgi And Retrograde Golgi To Er Traffic 73
## Intra Golgi Traffic 73
## Intracellular Signaling By Second Messengers 73
## Intraflagellar Transport 73
## Intrinsic Pathway Of Fibrin Clot Formation 73
## Inwardly Rectifying K Channels 73
## Ion Channel Transport 73
## Ion Homeostasis 73
## Ion Transport By P Type Atpases 73
## Ionotropic Activity Of Kainate Receptors 73
## Irak1 Recruits Ikk Complex 73
## Irak2 Mediated Activation Of Tak1 Complex 73
## Ire1alpha Activates Chaperones 73
## Irf3 Mediated Activation Of Type 1 Ifn 73
## Iron Uptake And Transport 73
## Irs Activation 73
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 73
## Josephin Domain Dubs 73
## Keratan Sulfate Biosynthesis 73
## Keratan Sulfate Degradation 73
## Keratan Sulfate Keratin Metabolism 73
## Keratinization 73
## Ketone Body Metabolism 73
## Kinesins 73
## Ksrp Khsrp Binds And Destabilizes Mrna 73
## Lagging Strand Synthesis 73
## Laminin Interactions 73
## Late Endosomal Microautophagy 73
## Lectin Pathway Of Complement Activation 73
## Leishmania Infection 73
## Leukotriene Receptors 73
## Lgi Adam Interactions 73
## Ligand Receptor Interactions 73
## Linoleic Acid La Metabolism 73
## Lipid Particle Organization 73
## Lipophagy 73
## Listeria Monocytogenes Entry Into Host Cells 73
## Long Term Potentiation 73
## Loss Of Function Of Mecp2 In Rett Syndrome 73
## Loss Of Function Of Smad2 3 In Cancer 73
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 73
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 73
## Ltc4 Cysltr Mediated Il4 Production 73
## Lysine Catabolism 73
## Lysosome Vesicle Biogenesis 73
## Lysosphingolipid And Lpa Receptors 73
## M Phase 73
## Map2k And Mapk Activation 73
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 73
## Mapk Family Signaling Cascades 73
## Mapk6 Mapk4 Signaling 73
## Maturation Of Nucleoprotein 73
## Maturation Of Protein 3a 73
## Maturation Of Sars Cov 1 Spike Protein 73
## Maturation Of Sars Cov 2 Spike Protein 73
## Meiosis 73
## Meiotic Recombination 73
## Meiotic Synapsis 73
## Melanin Biosynthesis 73
## Membrane Trafficking 73
## Met Activates Pi3k Akt Signaling 73
## Met Activates Ptk2 Signaling 73
## Met Activates Ptpn11 73
## Met Activates Rap1 And Rac1 73
## Met Activates Ras Signaling 73
## Met Interacts With Tns Proteins 73
## Met Promotes Cell Motility 73
## Met Receptor Activation 73
## Met Receptor Recycling 73
## Metabolic Disorders Of Biological Oxidation Enzymes 73
## Metabolism Of Amine Derived Hormones 73
## Metabolism Of Amino Acids And Derivatives 73
## Metabolism Of Angiotensinogen To Angiotensins 73
## Metabolism Of Carbohydrates 73
## Metabolism Of Cofactors 73
## Metabolism Of Fat Soluble Vitamins 73
## Metabolism Of Folate And Pterines 73
## Metabolism Of Ingested Semet Sec Mesec Into H2se 73
## Metabolism Of Lipids 73
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 73
## Metabolism Of Nucleotides 73
## Metabolism Of Polyamines 73
## Metabolism Of Porphyrins 73
## Metabolism Of Rna 73
## Metabolism Of Steroid Hormones 73
## Metabolism Of Steroids 73
## Metabolism Of Vitamins And Cofactors 73
## Metabolism Of Water Soluble Vitamins And Cofactors 73
## Metal Ion Slc Transporters 73
## Metal Sequestration By Antimicrobial Proteins 73
## Metallothioneins Bind Metals 73
## Methionine Salvage Pathway 73
## Methylation 73
## Mhc Class Ii Antigen Presentation 73
## Microrna Mirna Biogenesis 73
## Mineralocorticoid Biosynthesis 73
## Miro Gtpase Cycle 73
## Miscellaneous Substrates 73
## Miscellaneous Transport And Binding Events 73
## Mismatch Repair 73
## Mitochondrial Biogenesis 73
## Mitochondrial Calcium Ion Transport 73
## Mitochondrial Fatty Acid Beta Oxidation 73
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 73
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 73
## Mitochondrial Iron Sulfur Cluster Biogenesis 73
## Mitochondrial Protein Import 73
## Mitochondrial Translation 73
## Mitochondrial Trna Aminoacylation 73
## Mitochondrial Uncoupling 73
## Mitophagy 73
## Mitotic G1 Phase And G1 S Transition 73
## Mitotic G2 G2 M Phases 73
## Mitotic Metaphase And Anaphase 73
## Mitotic Prometaphase 73
## Mitotic Prophase 73
## Mitotic Spindle Checkpoint 73
## Mitotic Telophase Cytokinesis 73
## Modulation By Mtb Of Host Immune System 73
## Molecules Associated With Elastic Fibres 73
## Molybdenum Cofactor Biosynthesis 73
## Mrna Capping 73
## Mrna Decay By 3 To 5 Exoribonuclease 73
## Mrna Decay By 5 To 3 Exoribonuclease 73
## Mrna Editing 73
## Mrna Editing C To U Conversion 73
## Mrna Splicing 73
## Mrna Splicing Minor Pathway 73
## Mtor Signalling 73
## Mtorc1 Mediated Signalling 73
## Mucopolysaccharidoses 73
## Multifunctional Anion Exchangers 73
## Muscarinic Acetylcholine Receptors 73
## Muscle Contraction 73
## Myoclonic Epilepsy Of Lafora 73
## Myogenesis 73
## N Glycan Antennae Elongation 73
## N Glycan Antennae Elongation In The Medial Trans Golgi 73
## N Glycan Trimming And Elongation In The Cis Golgi 73
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 73
## Na Cl Dependent Neurotransmitter Transporters 73
## Nade Modulates Death Signalling 73
## Ncam1 Interactions 73
## Nectin Necl Trans Heterodimerization 73
## Neddylation 73
## Nef And Signal Transduction 73
## Nef Mediated Cd4 Down Regulation 73
## Nef Mediated Cd8 Down Regulation 73
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 73
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 73
## Negative Epigenetic Regulation Of Rrna Expression 73
## Negative Feedback Regulation Of Mapk Pathway 73
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 73
## Negative Regulation Of Fgfr1 Signaling 73
## Negative Regulation Of Fgfr2 Signaling 73
## Negative Regulation Of Fgfr3 Signaling 73
## Negative Regulation Of Fgfr4 Signaling 73
## Negative Regulation Of Flt3 73
## Negative Regulation Of Mapk Pathway 73
## Negative Regulation Of Met Activity 73
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 73
## Negative Regulation Of Notch4 Signaling 73
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 73
## Negative Regulators Of Ddx58 Ifih1 Signaling 73
## Nephrin Family Interactions 73
## Nervous System Development 73
## Netrin 1 Signaling 73
## Netrin Mediated Repulsion Signals 73
## Neurexins And Neuroligins 73
## Neurofascin Interactions 73
## Neuronal System 73
## Neurotoxicity Of Clostridium Toxins 73
## Neurotransmitter Clearance 73
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 73
## Neurotransmitter Release Cycle 73
## Neutrophil Degranulation 73
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 73
## Nf Kb Is Activated And Signals Survival 73
## Ngf Independant Trka Activation 73
## Nicotinamide Salvaging 73
## Nicotinate Metabolism 73
## Nitric Oxide Stimulates Guanylate Cyclase 73
## Non Integrin Membrane Ecm Interactions 73
## Noncanonical Activation Of Notch3 73
## Nonhomologous End Joining Nhej 73
## Nonsense Mediated Decay Nmd 73
## Norepinephrine Neurotransmitter Release Cycle 73
## Nostrin Mediated Enos Trafficking 73
## Notch Hlh Transcription Pathway 73
## Notch1 Intracellular Domain Regulates Transcription 73
## Notch2 Activation And Transmission Of Signal To The Nucleus 73
## Notch3 Intracellular Domain Regulates Transcription 73
## Notch4 Activation And Transmission Of Signal To The Nucleus 73
## Notch4 Intracellular Domain Regulates Transcription 73
## Nr1h2 And Nr1h3 Mediated Signaling 73
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 73
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 73
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 73
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 73
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 73
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 73
## Nrcam Interactions 73
## Nrif Signals Cell Death From The Nucleus 73
## Ns1 Mediated Effects On Host Pathways 73
## Ntrk2 Activates Rac1 73
## Nuclear Import Of Rev Protein 73
## Nuclear Receptor Transcription Pathway 73
## Nuclear Signaling By Erbb4 73
## Nucleobase Biosynthesis 73
## Nucleobase Catabolism 73
## Nucleotide Excision Repair 73
## Nucleotide Like Purinergic Receptors 73
## Nucleotide Salvage 73
## O Glycosylation Of Tsr Domain Containing Proteins 73
## O Linked Glycosylation 73
## Oas Antiviral Response 73
## Olfactory Signaling Pathway 73
## Oncogene Induced Senescence 73
## Oncogenic Mapk Signaling 73
## Opioid Signalling 73
## Opsins 73
## Orc1 Removal From Chromatin 73
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 73
## Organelle Biogenesis And Maintenance 73
## Organic Anion Transport 73
## Organic Anion Transporters 73
## Organic Cation Anion Zwitterion Transport 73
## Organic Cation Transport 73
## Other Interleukin Signaling 73
## Other Semaphorin Interactions 73
## Oxidative Stress Induced Senescence 73
## P130cas Linkage To Mapk Signaling For Integrins 73
## P2y Receptors 73
## P38mapk Events 73
## P75ntr Negatively Regulates Cell Cycle Via Sc1 73
## P75ntr Recruits Signalling Complexes 73
## P75ntr Signals Via Nf Kb 73
## Parasite Infection 73
## Passive Transport By Aquaporins 73
## Pcna Dependent Long Patch Base Excision Repair 73
## Pcp Ce Pathway 73
## Pecam1 Interactions 73
## Pentose Phosphate Pathway 73
## Peptide Hormone Biosynthesis 73
## Peptide Hormone Metabolism 73
## Peroxisomal Lipid Metabolism 73
## Peroxisomal Protein Import 73
## Pexophagy 73
## Phase 0 Rapid Depolarisation 73
## Phase 1 Inactivation Of Fast Na Channels 73
## Phase 2 Plateau Phase 73
## Phase 3 Rapid Repolarisation 73
## Phase I Functionalization Of Compounds 73
## Phase Ii Conjugation Of Compounds 73
## Phenylalanine And Tyrosine Metabolism 73
## Phenylalanine Metabolism 73
## Phosphate Bond Hydrolysis By Ntpdase Proteins 73
## Phosphate Bond Hydrolysis By Nudt Proteins 73
## Phospholipase C Mediated Cascade Fgfr2 73
## Phospholipase C Mediated Cascade Fgfr4 73
## Phospholipid Metabolism 73
## Physiological Factors 73
## Pi 3k Cascade Fgfr1 73
## Pi 3k Cascade Fgfr2 73
## Pi 3k Cascade Fgfr3 73
## Pi 3k Cascade Fgfr4 73
## Pi Metabolism 73
## Pi3k Akt Activation 73
## Pi3k Events In Erbb4 Signaling 73
## Pi5p Regulates Tp53 Acetylation 73
## Pink1 Prkn Mediated Mitophagy 73
## Piwi Interacting Rna Pirna Biogenesis 73
## Pka Activation In Glucagon Signalling 73
## Pka Mediated Phosphorylation Of Key Metabolic Factors 73
## Pkmts Methylate Histone Lysines 73
## Plasma Lipoprotein Assembly 73
## Plasma Lipoprotein Remodeling 73
## Platelet Activation Signaling And Aggregation 73
## Platelet Adhesion To Exposed Collagen 73
## Platelet Aggregation Plug Formation 73
## Platelet Calcium Homeostasis 73
## Platelet Homeostasis 73
## Platelet Sensitization By Ldl 73
## Polb Dependent Long Patch Base Excision Repair 73
## Polo Like Kinase Mediated Events 73
## Polymerase Switching 73
## Polymerase Switching On The C Strand Of The Telomere 73
## Positive Epigenetic Regulation Of Rrna Expression 73
## Post Chaperonin Tubulin Folding Pathway 73
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 73
## Postmitotic Nuclear Pore Complex Npc Reformation 73
## Potassium Channels 73
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 73
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 73
## Pre Notch Expression And Processing 73
## Pre Notch Processing In Golgi 73
## Pre Notch Processing In The Endoplasmic Reticulum 73
## Pregnenolone Biosynthesis 73
## Presynaptic Depolarization And Calcium Channel Opening 73
## Presynaptic Function Of Kainate Receptors 73
## Prevention Of Phagosomal Lysosomal Fusion 73
## Processing And Activation Of Sumo 73
## Processing Of Capped Intron Containing Pre Mrna 73
## Processing Of Capped Intronless Pre Mrna 73
## Processing Of Dna Double Strand Break Ends 73
## Processing Of Intronless Pre Mrnas 73
## Processing Of Smdt1 73
## Processive Synthesis On The C Strand Of The Telomere 73
## Processive Synthesis On The Lagging Strand 73
## Prolactin Receptor Signaling 73
## Prolonged Erk Activation Events 73
## Propionyl Coa Catabolism 73
## Prostacyclin Signalling Through Prostacyclin Receptor 73
## Prostanoid Ligand Receptors 73
## Protein Folding 73
## Protein Localization 73
## Protein Methylation 73
## Protein Protein Interactions At Synapses 73
## Protein Repair 73
## Protein Ubiquitination 73
## Proton Coupled Monocarboxylate Transport 73
## Pten Regulation 73
## Ptk6 Expression 73
## Ptk6 Regulates Cell Cycle 73
## Ptk6 Regulates Proteins Involved In Rna Processing 73
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 73
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 73
## Purine Catabolism 73
## Purine Ribonucleoside Monophosphate Biosynthesis 73
## Purine Salvage 73
## Pyrimidine Catabolism 73
## Pyrimidine Salvage 73
## Pyruvate Metabolism 73
## Pyruvate Metabolism And Citric Acid Tca Cycle 73
## Ra Biosynthesis Pathway 73
## Rab Gefs Exchange Gtp For Gdp On Rabs 73
## Rab Geranylgeranylation 73
## Rab Regulation Of Trafficking 73
## Rac1 Gtpase Cycle 73
## Raf Activation 73
## Rap1 Signalling 73
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 73
## Ras Processing 73
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 73
## Reactions Specific To The Complex N Glycan Synthesis Pathway 73
## Receptor Mediated Mitophagy 73
## Receptor Type Tyrosine Protein Phosphatases 73
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 73
## Recognition Of Dna Damage By Pcna Containing Replication Complex 73
## Recruitment Of Numa To Mitotic Centrosomes 73
## Recycling Of Bile Acids And Salts 73
## Recycling Of Eif2 Gdp 73
## Recycling Pathway Of L1 73
## Reduction Of Cytosolic Ca Levels 73
## Reelin Signalling Pathway 73
## Regulated Proteolysis Of P75ntr 73
## Regulation By C Flip 73
## Regulation Of Bach1 Activity 73
## Regulation Of Beta Cell Development 73
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 73
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 73
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 73
## Regulation Of Expression Of Slits And Robos 73
## Regulation Of Foxo Transcriptional Activity By Acetylation 73
## Regulation Of Fzd By Ubiquitination 73
## Regulation Of Gene Expression By Hypoxia Inducible Factor 73
## Regulation Of Gene Expression In Beta Cells 73
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 73
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 73
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 73
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 73
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 73
## Regulation Of Hmox1 Expression And Activity 73
## Regulation Of Hsf1 Mediated Heat Shock Response 73
## Regulation Of Ifna Signaling 73
## Regulation Of Ifng Signaling 73
## Regulation Of Innate Immune Responses To Cytosolic Dna 73
## Regulation Of Insulin Secretion 73
## Regulation Of Kit Signaling 73
## Regulation Of Lipid Metabolism By Pparalpha 73
## Regulation Of Localization Of Foxo Transcription Factors 73
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 73
## Regulation Of Pten Gene Transcription 73
## Regulation Of Pten Localization 73
## Regulation Of Pten Mrna Translation 73
## Regulation Of Pten Stability And Activity 73
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 73
## Regulation Of Ras By Gaps 73
## Regulation Of Runx1 Expression And Activity 73
## Regulation Of Runx3 Expression And Activity 73
## Regulation Of Signaling By Cbl 73
## Regulation Of Signaling By Nodal 73
## Regulation Of Tp53 Activity 73
## Regulation Of Tp53 Activity Through Acetylation 73
## Regulation Of Tp53 Activity Through Association With Co Factors 73
## Regulation Of Tp53 Activity Through Methylation 73
## Regulation Of Tp53 Activity Through Phosphorylation 73
## Relaxin Receptors 73
## Release Of Apoptotic Factors From The Mitochondria 73
## Release Of Hh Np From The Secreting Cell 73
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 73
## Repression Of Wnt Target Genes 73
## Reproduction 73
## Resolution Of Abasic Sites Ap Sites 73
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 73
## Resolution Of D Loop Structures 73
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 73
## Resolution Of Sister Chromatid Cohesion 73
## Respiratory Electron Transport 73
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 73
## Response Of Eif2ak1 Hri To Heme Deficiency 73
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 73
## Response Of Mtb To Phagocytosis 73
## Response To Elevated Platelet Cytosolic Ca2 73
## Response To Metal Ions 73
## Ret Signaling 73
## Retinoid Cycle Disease Events 73
## Retrograde Neurotrophin Signalling 73
## Reversible Hydration Of Carbon Dioxide 73
## Rho Gtpase Cycle 73
## Rho Gtpase Effectors 73
## Rho Gtpases Activate Cit 73
## Rho Gtpases Activate Formins 73
## Rho Gtpases Activate Iqgaps 73
## Rho Gtpases Activate Ktn1 73
## Rho Gtpases Activate Nadph Oxidases 73
## Rho Gtpases Activate Paks 73
## Rho Gtpases Activate Pkns 73
## Rho Gtpases Activate Rhotekin And Rhophilins 73
## Rho Gtpases Activate Rocks 73
## Rho Gtpases Activate Wasps And Waves 73
## Rhoa Gtpase Cycle 73
## Rhobtb Gtpase Cycle 73
## Rhobtb1 Gtpase Cycle 73
## Rhobtb2 Gtpase Cycle 73
## Rhobtb3 Atpase Cycle 73
## Rhot1 Gtpase Cycle 73
## Rhou Gtpase Cycle 73
## Rhov Gtpase Cycle 73
## Rna Polymerase I Promoter Escape 73
## Rna Polymerase I Transcription 73
## Rna Polymerase I Transcription Initiation 73
## Rna Polymerase I Transcription Termination 73
## Rna Polymerase Ii Transcribes Snrna Genes 73
## Rna Polymerase Ii Transcription Termination 73
## Rna Polymerase Iii Chain Elongation 73
## Rna Polymerase Iii Transcription 73
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 73
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 73
## Rna Polymerase Iii Transcription Termination 73
## Rnd1 Gtpase Cycle 73
## Rnd2 Gtpase Cycle 73
## Rnd3 Gtpase Cycle 73
## Robo Receptors Bind Akap5 73
## Role Of Abl In Robo Slit Signaling 73
## Role Of Lat2 Ntal Lab On Calcium Mobilization 73
## Role Of Phospholipids In Phagocytosis 73
## Role Of Second Messengers In Netrin 1 Signaling 73
## Rora Activates Gene Expression 73
## Ros And Rns Production In Phagocytes 73
## Rrna Modification In The Mitochondrion 73
## Rrna Modification In The Nucleus And Cytosol 73
## Rrna Processing 73
## Rrna Processing In The Mitochondrion 73
## Rsk Activation 73
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 73
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 73
## Runx1 Regulates Estrogen Receptor Mediated Transcription 73
## Runx1 Regulates Expression Of Components Of Tight Junctions 73
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 73
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 73
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 73
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 73
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 73
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 73
## Runx3 Regulates Bcl2l11 Bim Transcription 73
## Runx3 Regulates Cdkn1a Transcription 73
## Runx3 Regulates Immune Response And Cell Migration 73
## Runx3 Regulates Notch Signaling 73
## Runx3 Regulates P14 Arf 73
## Runx3 Regulates Wnt Signaling 73
## Runx3 Regulates Yap1 Mediated Transcription 73
## S Phase 73
## Sars Cov 1 Genome Replication And Transcription 73
## Sars Cov 1 Infection 73
## Sars Cov 2 Infection 73
## Sars Cov Infections 73
## Scavenging By Class A Receptors 73
## Scavenging By Class B Receptors 73
## Scavenging By Class F Receptors 73
## Scavenging Of Heme From Plasma 73
## Scf Skp2 Mediated Degradation Of P27 P21 73
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 73
## Selective Autophagy 73
## Selenoamino Acid Metabolism 73
## Sema3a Pak Dependent Axon Repulsion 73
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 73
## Sema4d In Semaphorin Signaling 73
## Sema4d Induced Cell Migration And Growth Cone Collapse 73
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 73
## Semaphorin Interactions 73
## Sensing Of Dna Double Strand Breaks 73
## Sensory Perception 73
## Sensory Processing Of Sound 73
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 73
## Separation Of Sister Chromatids 73
## Serine Biosynthesis 73
## Serotonin And Melatonin Biosynthesis 73
## Serotonin Neurotransmitter Release Cycle 73
## Serotonin Receptors 73
## Shc Mediated Cascade Fgfr1 73
## Shc Mediated Cascade Fgfr3 73
## Shc Mediated Cascade Fgfr4 73
## Shc Related Events Triggered By Igf1r 73
## Shc1 Events In Erbb4 Signaling 73
## Signal Amplification 73
## Signal Attenuation 73
## Signal Regulatory Protein Family Interactions 73
## Signaling By Activin 73
## Signaling By Bmp 73
## Signaling By Braf And Raf Fusions 73
## Signaling By Ctnnb1 Phospho Site Mutants 73
## Signaling By Erythropoietin 73
## Signaling By Fgfr 73
## Signaling By Fgfr1 73
## Signaling By Fgfr2 73
## Signaling By Fgfr2 Iiia Tm 73
## Signaling By Fgfr2 In Disease 73
## Signaling By Fgfr3 73
## Signaling By Fgfr3 Fusions In Cancer 73
## Signaling By Fgfr4 73
## Signaling By Fgfr4 In Disease 73
## Signaling By Flt3 Fusion Proteins 73
## Signaling By Flt3 Itd And Tkd Mutants 73
## Signaling By Gpcr 73
## Signaling By Hedgehog 73
## Signaling By Hippo 73
## Signaling By Lrp5 Mutants 73
## Signaling By Mapk Mutants 73
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 73
## Signaling By Moderate Kinase Activity Braf Mutants 73
## Signaling By Mras Complex Mutants 73
## Signaling By Mst1 73
## Signaling By Nodal 73
## Signaling By Notch 73
## Signaling By Notch1 73
## Signaling By Notch1 Hd Domain Mutants In Cancer 73
## Signaling By Notch1 Pest Domain Mutants In Cancer 73
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 73
## Signaling By Notch4 73
## Signaling By Ntrk2 Trkb 73
## Signaling By Ntrk3 Trkc 73
## Signaling By Nuclear Receptors 73
## Signaling By Receptor Tyrosine Kinases 73
## Signaling By Retinoic Acid 73
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 73
## Signaling By Rnf43 Mutants 73
## Signaling By Robo Receptors 73
## Signaling By Tgf Beta Receptor Complex In Cancer 73
## Signaling By Tgfb Family Members 73
## Signaling By The B Cell Receptor Bcr 73
## Signaling By Vegf 73
## Signaling By Wnt 73
## Signaling By Wnt In Cancer 73
## Signalling To Erks 73
## Signalling To P38 Via Rit And Rin 73
## Signalling To Ras 73
## Sirt1 Negatively Regulates Rrna Expression 73
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 73
## Slc Mediated Transmembrane Transport 73
## Slc Transporter Disorders 73
## Smac Xiap Regulated Apoptotic Response 73
## Small Interfering Rna Sirna Biogenesis 73
## Smooth Muscle Contraction 73
## Snrnp Assembly 73
## Sodium Calcium Exchangers 73
## Sodium Coupled Phosphate Cotransporters 73
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 73
## Sodium Proton Exchangers 73
## Sos Mediated Signalling 73
## Sperm Motility And Taxes 73
## Sphingolipid De Novo Biosynthesis 73
## Sphingolipid Metabolism 73
## Spry Regulation Of Fgf Signaling 73
## Srp Dependent Cotranslational Protein Targeting To Membrane 73
## Stabilization Of P53 73
## Stat5 Activation 73
## Stat5 Activation Downstream Of Flt3 Itd Mutants 73
## Stimuli Sensing Channels 73
## Striated Muscle Contraction 73
## Sulfide Oxidation To Sulfate 73
## Sulfur Amino Acid Metabolism 73
## Sumo Is Conjugated To E1 Uba2 Sae1 73
## Sumo Is Proteolytically Processed 73
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 73
## Sumoylation 73
## Sumoylation Of Chromatin Organization Proteins 73
## Sumoylation Of Dna Damage Response And Repair Proteins 73
## Sumoylation Of Dna Replication Proteins 73
## Sumoylation Of Immune Response Proteins 73
## Sumoylation Of Intracellular Receptors 73
## Sumoylation Of Rna Binding Proteins 73
## Sumoylation Of Sumoylation Proteins 73
## Sumoylation Of Transcription Factors 73
## Sumoylation Of Ubiquitinylation Proteins 73
## Suppression Of Apoptosis 73
## Suppression Of Phagosomal Maturation 73
## Surfactant Metabolism 73
## Switching Of Origins To A Post Replicative State 73
## Synaptic Adhesion Like Molecules 73
## Syndecan Interactions 73
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 73
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 73
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 73
## Synthesis Of 5 Eicosatetraenoic Acids 73
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 73
## Synthesis Of Bile Acids And Bile Salts 73
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 73
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 73
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 73
## Synthesis Of Diphthamide Eef2 73
## Synthesis Of Dolichyl Phosphate 73
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 73
## Synthesis Of Gdp Mannose 73
## Synthesis Of Glycosylphosphatidylinositol Gpi 73
## Synthesis Of Ip2 Ip And Ins In The Cytosol 73
## Synthesis Of Ip3 And Ip4 In The Cytosol 73
## Synthesis Of Ketone Bodies 73
## Synthesis Of Leukotrienes Lt And Eoxins Ex 73
## Synthesis Of Lipoxins Lx 73
## Synthesis Of Pa 73
## Synthesis Of Pc 73
## Synthesis Of Pe 73
## Synthesis Of Pg 73
## Synthesis Of Pi 73
## Synthesis Of Pips At The Early Endosome Membrane 73
## Synthesis Of Pips At The Er Membrane 73
## Synthesis Of Pips At The Golgi Membrane 73
## Synthesis Of Pips At The Late Endosome Membrane 73
## Synthesis Of Pips At The Plasma Membrane 73
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 73
## Synthesis Of Pyrophosphates In The Cytosol 73
## Synthesis Of Udp N Acetyl Glucosamine 73
## Synthesis Of Very Long Chain Fatty Acyl Coas 73
## Synthesis Of Wybutosine At G37 Of Trna Phe 73
## Synthesis Secretion And Deacylation Of Ghrelin 73
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 73
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 73
## Tachykinin Receptors Bind Tachykinins 73
## Tbc Rabgaps 73
## Tcf Dependent Signaling In Response To Wnt 73
## Tcr Signaling 73
## Telomere C Strand Lagging Strand Synthesis 73
## Telomere C Strand Synthesis Initiation 73
## Telomere Extension By Telomerase 73
## Telomere Maintenance 73
## Terminal Pathway Of Complement 73
## Termination Of Translesion Dna Synthesis 73
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 73
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 73
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 73
## Tgf Beta Receptor Signaling Activates Smads 73
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 73
## The Activation Of Arylsulfatases 73
## The Canonical Retinoid Cycle In Rods Twilight Vision 73
## The Citric Acid Tca Cycle And Respiratory Electron Transport 73
## The Fatty Acid Cycling Model 73
## The Phototransduction Cascade 73
## The Retinoid Cycle In Cones Daylight Vision 73
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 73
## Thrombin Signalling Through Proteinase Activated Receptors Pars 73
## Thromboxane Signalling Through Tp Receptor 73
## Thyroxine Biosynthesis 73
## Tie2 Signaling 73
## Tight Junction Interactions 73
## Tnfr1 Induced Proapoptotic Signaling 73
## Tnfr1 Mediated Ceramide Production 73
## Toxicity Of Botulinum Toxin Type D Botd 73
## Tp53 Regulates Metabolic Genes 73
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 73
## Tp53 Regulates Transcription Of Death Receptors And Ligands 73
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 73
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 73
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 73
## Traf3 Dependent Irf Activation Pathway 73
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 73
## Traf6 Mediated Irf7 Activation 73
## Trafficking Of Ampa Receptors 73
## Trafficking Of Glur2 Containing Ampa Receptors 73
## Trafficking Of Myristoylated Proteins To The Cilium 73
## Trail Signaling 73
## Trans Golgi Network Vesicle Budding 73
## Transcription Coupled Nucleotide Excision Repair Tc Ner 73
## Transcription Of E2f Targets Under Negative Control By Dream Complex 73
## Transcription Of The Hiv Genome 73
## Transcriptional Regulation By E2f6 73
## Transcriptional Regulation By Runx1 73
## Transcriptional Regulation By Runx3 73
## Transcriptional Regulation By Small Rnas 73
## Transcriptional Regulation By Tp53 73
## Transcriptional Regulation Of Testis Differentiation 73
## Transcriptional Regulation Of White Adipocyte Differentiation 73
## Transferrin Endocytosis And Recycling 73
## Translation 73
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 73
## Translation Of Sars Cov 1 Structural Proteins 73
## Translation Of Sars Cov 2 Structural Proteins 73
## Translesion Synthesis By Polh 73
## Translesion Synthesis By Polk 73
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 73
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 73
## Transmission Across Chemical Synapses 73
## Transport And Synthesis Of Paps 73
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 73
## Transport Of Connexons To The Plasma Membrane 73
## Transport Of Fatty Acids 73
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 73
## Transport Of Mature Mrnas Derived From Intronless Transcripts 73
## Transport Of Mature Transcript To Cytoplasm 73
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 73
## Transport Of Nucleotide Sugars 73
## Transport Of Organic Anions 73
## Transport Of Small Molecules 73
## Transport Of The Slbp Dependant Mature Mrna 73
## Transport Of Vitamins Nucleosides And Related Molecules 73
## Transport To The Golgi And Subsequent Modification 73
## Trif Mediated Programmed Cell Death 73
## Triglyceride Biosynthesis 73
## Triglyceride Catabolism 73
## Triglyceride Metabolism 73
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 73
## Trna Aminoacylation 73
## Trna Modification In The Mitochondrion 73
## Trna Modification In The Nucleus And Cytosol 73
## Trna Processing 73
## Trna Processing In The Mitochondrion 73
## Trna Processing In The Nucleus 73
## Trp Channels 73
## Tryptophan Catabolism 73
## Type I Hemidesmosome Assembly 73
## Tyrosine Catabolism 73
## Tysnd1 Cleaves Peroxisomal Proteins 73
## Ub Specific Processing Proteases 73
## Ubiquinol Biosynthesis 73
## Uch Proteinases 73
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 73
## Unwinding Of Dna 73
## Uptake And Actions Of Bacterial Toxins 73
## Uptake And Function Of Anthrax Toxins 73
## Uptake And Function Of Diphtheria Toxin 73
## Urea Cycle 73
## Vasopressin Like Receptors 73
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 73
## Vegf Ligand Receptor Interactions 73
## Vegfr2 Mediated Cell Proliferation 73
## Vesicle Mediated Transport 73
## Viral Messenger Rna Synthesis 73
## Visual Phototransduction 73
## Vitamin B1 Thiamin Metabolism 73
## Vitamin B2 Riboflavin Metabolism 73
## Vitamin B5 Pantothenate Metabolism 73
## Vitamin C Ascorbate Metabolism 73
## Vitamin D Calciferol Metabolism 73
## Vitamins 73
## Vldl Assembly 73
## Vldl Clearance 73
## Voltage Gated Potassium Channels 73
## Vxpx Cargo Targeting To Cilium 73
## Wax And Plasmalogen Biosynthesis 73
## Wnt Mediated Activation Of Dvl 73
## Xenobiotics 73
## Zinc Efflux And Compartmentalization By The Slc30 Family 73
## Zinc Influx Into Cells By The Slc39 Gene Family 73
## Zinc Transporters 73
## geneset
## Interleukin 10 Signaling 46
## Interleukin 1 Processing 9
## Chemokine Receptors Bind Chemokines 58
## Interleukin 4 And Interleukin 13 Signaling 111
## Purinergic Signaling In Leishmaniasis Infection 26
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 7
## Pyroptosis 27
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 17
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 18
## Cd163 Mediating An Anti Inflammatory Response 9
## Egfr Transactivation By Gastrin 9
## Mapk3 Erk1 Activation 10
## Inflammasomes 21
## Interleukin 6 Signaling 11
## Cd28 Dependent Vav1 Pathway 12
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 24
## Trafficking And Processing Of Endosomal Tlr 13
## Regulated Necrosis 56
## Tnfs Bind Their Physiological Receptors 29
## The Nlrp3 Inflammasome 16
## G2 M Dna Replication Checkpoint 5
## Mecp2 Regulates Transcription Factors 5
## Runx2 Regulates Chondrocyte Maturation 5
## Activation Of Matrix Metalloproteinases 33
## Clec7a Inflammasome Pathway 6
## Fibronectin Matrix Formation 6
## Phosphorylation Of Emi1 6
## Ptk6 Promotes Hif1a Stabilization 6
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 19
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 6
## Activation Of Nima Kinases Nek9 Nek6 Nek7 7
## Creb Phosphorylation 7
## Ctla4 Inhibitory Signaling 21
## Interleukin 37 Signaling 21
## Signal Transduction By L1 21
## Cd28 Dependent Pi3k Akt Signaling 22
## Activation Of C3 And C5 8
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 8
## Interleukin 18 Signaling 8
## Mecp2 Regulates Transcription Of Neuronal Ligands 8
## Raf Independent Mapk1 3 Activation 23
## Runx2 Regulates Genes Involved In Cell Migration 8
## Interleukin 6 Family Signaling 24
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 56
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 9
## E2f Enabled Inhibition Of Pre Replication Complex Formation 9
## Egfr Interacts With Phospholipase C Gamma 9
## Extra Nuclear Estrogen Signaling 75
## Interleukin 23 Signaling 9
## Interleukin 9 Signaling 9
## Mapk1 Erk2 Activation 9
## Activation Of The Ap 1 Family Of Transcription Factors 10
## Akt Phosphorylates Targets In The Nucleus 10
## Camk Iv Mediated Phosphorylation Of Creb 10
## Interleukin 21 Signaling 10
## Mastl Facilitates Mitotic Progression 10
## P75ntr Regulates Axonogenesis 10
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 27
## Condensation Of Prometaphase Chromosomes 11
## Dap12 Interactions 45
## Endosomal Vacuolar Pathway 11
## Interleukin 27 Signaling 11
## Pd 1 Signaling 28
## Signaling By Leptin 11
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 11
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 12
## Interleukin 35 Signalling 12
## Killing Mechanisms 12
## Notch2 Intracellular Domain Regulates Transcription 12
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 12
## Tandem Pore Domain Potassium Channels 12
## Ticam1 Dependent Activation Of Irf3 Irf7 12
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 12
## Vldlr Internalisation And Degradation 12
## Advanced Glycosylation Endproduct Receptor Signaling 13
## Apoptosis Induced Dna Fragmentation 13
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 13
## Diseases Of Immune System 31
## Dissolution Of Fibrin Clot 13
## Erbb2 Activates Ptk6 Signaling 13
## Irf3 Mediated Induction Of Type I Ifn 13
## Mapk Targets Nuclear Events Mediated By Map Kinases 31
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 13
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 13
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 13
## Perk Regulates Gene Expression 32
## Cd28 Co Stimulation 33
## Golgi Cisternae Pericentriolar Stack Reorganization 14
## Interleukin 15 Signaling 14
## Shc1 Events In Egfr Signaling 14
## Constitutive Signaling By Egfrviii 15
## Depolymerisation Of The Nuclear Lamina 15
## Erbb2 Regulates Cell Motility 15
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 15
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 15
## Wnt5a Dependent Internalization Of Fzd4 15
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 15
## Costimulation By The Cd28 Family 74
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 16
## Grb2 Events In Erbb2 Signaling 16
## Nod1 2 Signaling Pathway 36
## Pi3k Events In Erbb2 Signaling 16
## Signaling By Erbb2 Ecd Mutants 16
## Sting Mediated Induction Of Host Immune Responses 16
## Sumoylation Of Dna Methylation Proteins 16
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 16
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 17
## Gab1 Signalosome 17
## Interleukin 12 Family Signaling 57
## Rip Mediated Nfkb Activation Via Zbp1 17
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 38
## Constitutive Signaling By Aberrant Pi3k In Cancer 78
## Irak4 Deficiency Tlr2 4 18
## Mecp2 Regulates Neuronal Receptors And Channels 18
## Signaling By Cytosolic Fgfr1 Fusion Mutants 18
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 18
## Ngf Stimulated Transcription 39
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 19
## Initiation Of Nuclear Envelope Ne Reformation 19
## Ldl Clearance 19
## Phase 4 Resting Membrane Potential 19
## Phosphorylation Of The Apc C 20
## Pka Mediated Phosphorylation Of Creb 20
## Signaling By Kit In Disease 20
## Signaling By Pdgfr In Disease 20
## Tnfr2 Non Canonical Nf Kb Pathway 101
## Collagen Degradation 64
## Regulation Of Tlr By Endogenous Ligand 21
## Signaling By Scf Kit 43
## Zbp1 Dai Mediated Induction Of Type I Ifns 21
## E2f Mediated Regulation Of Dna Replication 22
## Interleukin 2 Family Signaling 44
## Pi3k Akt Signaling In Cancer 105
## Shc1 Events In Erbb2 Signaling 22
## Ikk Complex Recruitment Mediated By Rip1 23
## Termination Of O Glycan Biosynthesis 23
## Apc C Cdc20 Mediated Degradation Of Cyclin B 24
## Growth Hormone Receptor Signaling 24
## Interleukin 12 Signaling 47
## Runx2 Regulates Osteoblast Differentiation 24
## Traf6 Mediated Nf Kb Activation 24
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 25
## Cyclin A B1 B2 Associated Events During G2 M Transition 25
## Inactivation Of Csf3 G Csf Signaling 25
## Notch3 Activation And Transmission Of Signal To The Nucleus 25
## Signaling By Egfr In Cancer 25
## Constitutive Signaling By Akt1 E17k In Cancer 26
## Dectin 2 Family 26
## Interleukin 17 Signaling 71
## Interleukin 20 Family Signaling 26
## Negative Regulation Of The Pi3k Akt Network 113
## Signaling By Erbb2 In Cancer 26
## Wnt Ligand Biogenesis And Trafficking 26
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 27
## Eph Ephrin Mediated Repulsion Of Cells 51
## G0 And Early G1 27
## Interleukin Receptor Shc Signaling 27
## Toll Like Receptor 9 Tlr9 Cascade 94
## Vegfr2 Mediated Vascular Permeability 27
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 28
## Myd88 Independent Tlr4 Cascade 97
## Dap12 Signaling 29
## Downregulation Of Erbb2 Signaling 29
## Downstream Signal Transduction 29
## G1 S Specific Transcription 29
## Interleukin 1 Family Signaling 140
## Ripk1 Mediated Regulated Necrosis 29
## Signaling By Ptk6 54
## Signaling By Csf3 G Csf 30
## Tnfr1 Induced Nfkappab Signaling Pathway 30
## Egfr Downregulation 31
## Fgfr1 Mutant Receptor Activation 31
## Runx2 Regulates Bone Development 31
## Transcriptional Regulation Of Pluripotent Stem Cells 31
## Regulation Of Mecp2 Expression And Activity 32
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 32
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 32
## Cargo Concentration In The Er 33
## Plasma Lipoprotein Clearance 33
## Sialic Acid Metabolism 33
## Signaling By Notch2 33
## Assembly Of Collagen Fibrils And Other Multimeric Structures 61
## Gpvi Mediated Activation Cascade 35
## Nuclear Events Kinase And Transcription Factor Activation 61
## Regulation Of Tnfr1 Signaling 35
## Signaling By Interleukins 463
## Cytosolic Sensors Of Pathogen Associated Dna 63
## Interleukin 7 Signaling 36
## Nuclear Pore Complex Npc Disassembly 36
## Ca Dependent Events 37
## Metalloprotease Dubs 37
## Ovarian Tumor Domain Proteases 38
## Peptide Ligand Binding Receptors 198
## Regulation Of Tp53 Expression And Degradation 37
## Rhoh Gtpase Cycle 37
## Senescence Associated Secretory Phenotype Sasp 112
## Signaling By Fgfr1 In Disease 38
## Toll Like Receptor Cascades 155
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 38
## Association Of Tric Cct With Target Proteins During Biosynthesis 39
## Complement Cascade 115
## Generation Of Second Messenger Molecules 39
## Dag And Ip3 Signaling 41
## Interferon Gamma Signaling 93
## Transcriptional Regulation By Ventx 41
## Beta Defensins 42
## Circadian Clock 70
## Rhob Gtpase Cycle 70
## Rhof Gtpase Cycle 42
## Sumoylation Of Transcription Cofactors 43
## Tnf Signaling 44
## Tp53 Regulates Transcription Of Cell Death Genes 44
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 44
## Rhoc Gtpase Cycle 74
## Rhog Gtpase Cycle 74
## Heme Signaling 48
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 48
## Irs Mediated Signalling 48
## Retrograde Transport At The Trans Golgi Network 49
## Signaling By Notch3 49
## Toll Like Receptor Tlr1 Tlr2 Cascade 103
## Tp53 Regulates Transcription Of Cell Cycle Genes 49
## Antigen Processing Cross Presentation 106
## Apoptotic Execution Phase 52
## Cargo Recognition For Clathrin Mediated Endocytosis 105
## Defensins 52
## Rhod Gtpase Cycle 51
## Signaling By Egfr 50
## Signaling By Erbb2 50
## Fceri Mediated Mapk Activation 87
## G Protein Mediated Events 54
## Insulin Receptor Signalling Cascade 54
## Intrinsic Pathway For Apoptosis 55
## Nuclear Envelope Breakdown 53
## Rhoj Gtpase Cycle 55
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 54
## Transcriptional Activation Of Mitochondrial Biogenesis 55
## Ca2 Pathway 62
## Collagen Formation 90
## Eph Ephrin Signaling 92
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 191
## Nrage Signals Death Through Jnk 59
## O Linked Glycosylation Of Mucins 62
## Rac2 Gtpase Cycle 88
## Rhoq Gtpase Cycle 59
## Signaling By Erbb4 58
## Signaling By Pdgf 58
## Tp53 Regulates Transcription Of Dna Repair Genes 62
## Transcriptional Regulation Of Granulopoiesis 90
## Unfolded Protein Response Upr 92
## Asymmetric Localization Of Pcp Proteins 64
## Class B 2 Secretin Family Receptors 94
## Copi Mediated Anterograde Transport 102
## Copii Mediated Vesicle Transport 68
## Diseases Associated With O Glycosylation Of Proteins 68
## Dna Methylation 65
## Fcgr3a Mediated Il10 Synthesis 95
## Interleukin 1 Signaling 102
## Ncam Signaling For Neurite Out Growth 63
## P75 Ntr Receptor Mediated Signalling 97
## Rac3 Gtpase Cycle 94
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 124
## Signaling By Fgfr In Disease 63
## Synthesis Of Substrates In N Glycan Biosythesis 63
## Transcriptional Regulation By Mecp2 63
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 86
## Apc C Mediated Degradation Of Cell Cycle Proteins 88
## Aurka Activation By Tpx2 72
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 78
## Cell Death Signalling Via Nrage Nrif And Nade 76
## Clathrin Mediated Endocytosis 145
## Condensation Of Prophase Chromosomes 74
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 81
## Death Receptor Signalling 141
## Degradation Of The Extracellular Matrix 140
## Ecm Proteoglycans 76
## Fceri Mediated Ca 2 Mobilization 86
## G Alpha 12 13 Signalling Events 80
## Initial Triggering Of Complement 80
## Integrin Cell Surface Interactions 85
## Interferon Alpha Beta Signaling 73
## L1cam Interactions 121
## Nuclear Envelope Ne Reassembly 76
## Plasma Lipoprotein Assembly Remodeling And Clearance 71
## Potential Therapeutics For Sars 81
## Prc2 Methylates Histones And Dna 73
## Programmed Cell Death 208
## Recruitment Of Mitotic Centrosome Proteins And Complexes 81
## Regulation Of Plk1 Activity At G2 M Transition 87
## Regulation Of Runx2 Expression And Activity 73
## Rmts Methylate Histone Arginines 79
## Signaling By Insulin Receptor 78
## Signaling By Met 79
## Signaling By Ntrks 134
## Signaling By Tgf Beta Receptor Complex 73
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 79
## Transcriptional Regulation By Runx2 120
## 2 Ltr Circle Formation 7
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 26
## Abacavir Metabolism 5
## Abacavir Transmembrane Transport 5
## Abacavir Transport And Metabolism 10
## Abc Family Proteins Mediated Transport 103
## Abc Transporter Disorders 77
## Abc Transporters In Lipid Homeostasis 18
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 20
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 17
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 23
## Acetylcholine Binding And Downstream Events 14
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 5
## Acetylcholine Neurotransmitter Release Cycle 17
## Acetylcholine Regulates Insulin Secretion 10
## Acrosome Reaction And Sperm Oocyte Membrane Binding 6
## Activated Notch1 Transmits Signal To The Nucleus 31
## Activated Ntrk2 Signals Through Cdk5 6
## Activated Ntrk2 Signals Through Frs2 And Frs3 11
## Activated Ntrk2 Signals Through Fyn 7
## Activated Ntrk2 Signals Through Pi3k 7
## Activated Ntrk2 Signals Through Ras 9
## Activated Ntrk3 Signals Through Pi3k 6
## Activated Ntrk3 Signals Through Ras 8
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 67
## Activated Tak1 Mediates P38 Mapk Activation 23
## Activation Of Ampk Downstream Of Nmdars 29
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 122
## Activation Of Atr In Response To Replication Stress 37
## Activation Of Bad And Translocation To Mitochondria 15
## Activation Of Bh3 Only Proteins 30
## Activation Of Caspases Through Apoptosome Mediated Cleavage 6
## Activation Of Gene Expression By Srebf Srebp 42
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 17
## Activation Of Kainate Receptors Upon Glutamate Binding 30
## Activation Of Nmda Receptors And Postsynaptic Events 94
## Activation Of Noxa And Translocation To Mitochondria 5
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 10
## Activation Of Puma And Translocation To Mitochondria 9
## Activation Of Rac1 13
## Activation Of Rac1 Downstream Of Nmdars 7
## Activation Of Ras In B Cells 5
## Activation Of Smo 18
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 60
## Activation Of The Phototransduction Cascade 11
## Activation Of The Pre Replicative Complex 33
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 12
## Activation Of Trka Receptors 6
## Acyl Chain Remodeling Of Cl 6
## Acyl Chain Remodeling Of Dag And Tag 7
## Acyl Chain Remodelling Of Pc 27
## Acyl Chain Remodelling Of Pe 29
## Acyl Chain Remodelling Of Pg 18
## Acyl Chain Remodelling Of Pi 17
## Acyl Chain Remodelling Of Ps 22
## Adaptive Immune System 825
## Adenylate Cyclase Activating Pathway 10
## Adenylate Cyclase Inhibitory Pathway 14
## Adherens Junctions Interactions 33
## Adora2b Mediated Anti Inflammatory Cytokines Production 133
## Adp Signalling Through P2y Purinoceptor 1 25
## Adp Signalling Through P2y Purinoceptor 12 22
## Adrenaline Noradrenaline Inhibits Insulin Secretion 28
## Adrenoceptors 9
## Aflatoxin Activation And Detoxification 19
## Aggrephagy 44
## Akt Phosphorylates Targets In The Cytosol 14
## Alpha Defensins 10
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 13
## Alpha Oxidation Of Phytanate 6
## Alpha Protein Kinase 1 Signaling Pathway 11
## Alternative Complement Activation 5
## Amine Ligand Binding Receptors 42
## Amino Acid Conjugation 9
## Amino Acid Transport Across The Plasma Membrane 33
## Amino Acids Regulate Mtorc1 55
## Ampk Inhibits Chrebp Transcriptional Activation Activity 8
## Amyloid Fiber Formation 110
## Anchoring Fibril Formation 15
## Anchoring Of The Basal Body To The Plasma Membrane 97
## Androgen Biosynthesis 11
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 223
## Antigen Processing Ubiquitination Proteasome Degradation 308
## Antimicrobial Peptides 97
## Antiviral Mechanism By Ifn Stimulated Genes 82
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 74
## Apc Cdc20 Mediated Degradation Of Nek2a 26
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 7
## Apobec3g Mediated Resistance To Hiv 1 Infection 5
## Apoptosis 179
## Apoptotic Cleavage Of Cell Adhesion Proteins 11
## Apoptotic Cleavage Of Cellular Proteins 38
## Apoptotic Factor Mediated Response 20
## Aquaporin Mediated Transport 52
## Arachidonate Production From Dag 5
## Arachidonic Acid Metabolism 59
## Arms Mediated Activation 7
## Aryl Hydrocarbon Receptor Signalling 8
## Asparagine N Linked Glycosylation 305
## Aspartate And Asparagine Metabolism 11
## Assembly And Cell Surface Presentation Of Nmda Receptors 44
## Assembly Of Active Lpl And Lipc Lipase Complexes 19
## Assembly Of The Hiv Virion 16
## Assembly Of The Orc Complex At The Origin Of Replication 6
## Assembly Of The Pre Replicative Complex 68
## Atf6 Atf6 Alpha Activates Chaperone Genes 10
## Atf6 Atf6 Alpha Activates Chaperones 12
## Attachment And Entry 5
## Attachment Of Gpi Anchor To Upar 7
## Attenuation Phase 28
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 55
## Autophagy 151
## B Wich Complex Positively Regulates Rrna Expression 91
## Base Excision Repair 91
## Base Excision Repair Ap Site Formation 63
## Basigin Interactions 25
## Bbsome Mediated Cargo Targeting To Cilium 23
## Beta Catenin Independent Wnt Signaling 146
## Beta Catenin Phosphorylation Cascade 17
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 5
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 6
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 5
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 5
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 5
## Beta Oxidation Of Pristanoyl Coa 9
## Beta Oxidation Of Very Long Chain Fatty Acids 11
## Bicarbonate Transporters 10
## Bile Acid And Bile Salt Metabolism 43
## Binding And Uptake Of Ligands By Scavenger Receptors 98
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 8
## Biological Oxidations 222
## Biosynthesis Of Epa Derived Spms 6
## Biosynthesis Of Maresin Like Spms 6
## Biosynthesis Of Maresins 8
## Biosynthesis Of Specialized Proresolving Mediators Spms 19
## Biotin Transport And Metabolism 11
## Blood Group Systems Biosynthesis 21
## Branched Chain Amino Acid Catabolism 21
## Budding And Maturation Of Hiv Virion 28
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 17
## Butyrophilin Btn Family Interactions 12
## C Type Lectin Receptors Clrs 140
## Ca2 Activated K Channels 9
## Calcineurin Activates Nfat 9
## Calcitonin Like Ligand Receptors 10
## Calnexin Calreticulin Cycle 26
## Carboxyterminal Post Translational Modifications Of Tubulin 46
## Cardiac Conduction 127
## Cargo Trafficking To The Periciliary Membrane 51
## Carnitine Metabolism 14
## Caspase Activation Via Death Receptors In The Presence Of Ligand 16
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 10
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 26
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 12
## Cation Coupled Chloride Cotransporters 7
## Cd209 Dc Sign Signaling 21
## Cd22 Mediated Bcr Regulation 61
## Cdc42 Gtpase Cycle 159
## Cdc6 Association With The Orc Origin Complex 11
## Cell Cell Communication 130
## Cell Cell Junction Organization 65
## Cell Cycle 693
## Cell Cycle Checkpoints 292
## Cell Cycle Mitotic 561
## Cell Extracellular Matrix Interactions 18
## Cell Junction Organization 92
## Cell Surface Interactions At The Vascular Wall 194
## Cellular Hexose Transport 21
## Cellular Response To Chemical Stress 160
## Cellular Response To Heat Stress 101
## Cellular Response To Hypoxia 75
## Cellular Response To Starvation 157
## Cellular Responses To External Stimuli 706
## Cellular Senescence 198
## Cgmp Effects 16
## Chaperone Mediated Autophagy 22
## Chl1 Interactions 9
## Cholesterol Biosynthesis 25
## Choline Catabolism 6
## Chondroitin Sulfate Biosynthesis 20
## Chondroitin Sulfate Dermatan Sulfate Metabolism 50
## Chrebp Activates Metabolic Gene Expression 8
## Chromatin Modifying Enzymes 274
## Chromosome Maintenance 140
## Chylomicron Assembly 10
## Chylomicron Clearance 5
## Chylomicron Remodeling 10
## Cilium Assembly 202
## Citric Acid Cycle Tca Cycle 22
## Class A 1 Rhodopsin Like Receptors 331
## Class C 3 Metabotropic Glutamate Pheromone Receptors 39
## Class I Mhc Mediated Antigen Processing Presentation 377
## Class I Peroxisomal Membrane Protein Import 20
## Clec7a Dectin 1 Induces Nfat Activation 11
## Clec7a Dectin 1 Signaling 100
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 21
## Coenzyme A Biosynthesis 8
## Cohesin Loading Onto Chromatin 10
## Collagen Biosynthesis And Modifying Enzymes 67
## Collagen Chain Trimerization 44
## Common Pathway Of Fibrin Clot Formation 22
## Competing Endogenous Rnas Cernas Regulate Pten Translation 8
## Complex I Biogenesis 57
## Conjugation Of Benzoate With Glycine 6
## Constitutive Signaling By Overexpressed Erbb2 11
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 20
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 38
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 33
## Copi Dependent Golgi To Er Retrograde Traffic 100
## Copi Independent Golgi To Er Retrograde Traffic 53
## Creatine Metabolism 11
## Creation Of C4 And C2 Activators 71
## Creb3 Factors Activate Genes 9
## Cristae Formation 31
## Crmps In Sema3a Signaling 16
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 8
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 50
## Crosslinking Of Collagen Fibrils 18
## Cs Ds Degradation 14
## Cyclin A Cdk2 Associated Events At S Phase Entry 85
## Cyclin D Associated Events In G1 47
## Cyp2e1 Reactions 11
## Cytochrome C Mediated Apoptotic Response 13
## Cytochrome P450 Arranged By Substrate Type 66
## Cytokine Signaling In Immune System 719
## Cytoprotection By Hmox1 124
## Cytosolic Iron Sulfur Cluster Assembly 13
## Cytosolic Sulfonation Of Small Molecules 24
## Cytosolic Trna Aminoacylation 24
## Darpp 32 Events 24
## Dcc Mediated Attractive Signaling 14
## Deactivation Of The Beta Catenin Transactivating Complex 42
## Deadenylation Dependent Mrna Decay 56
## Deadenylation Of Mrna 25
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 62
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 8
## Defective B4galt7 Causes Eds Progeroid Type 20
## Defective Cftr Causes Cystic Fibrosis 61
## Defective Chst14 Causes Eds Musculocontractural Type 8
## Defective Chst3 Causes Sedcjd 8
## Defective Chst6 Causes Mcdc1 8
## Defective Chsy1 Causes Tpbs 8
## Defective Csf2rb Causes Smdp5 8
## Defective Ext2 Causes Exostoses 2 14
## Defective F9 Activation 6
## Defective Factor Ix Causes Hemophilia B 9
## Defective Factor Viii Causes Hemophilia A 7
## Defective Lfng Causes Scdo3 5
## Defective Ripk1 Mediated Regulated Necrosis 5
## Defective St3gal3 Causes Mct12 And Eiee15 8
## Defects In Biotin Btn Metabolism 8
## Defects In Cobalamin B12 Metabolism 14
## Defects In Vitamin And Cofactor Metabolism 22
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 16
## Degradation Of Axin 55
## Degradation Of Beta Catenin By The Destruction Complex 85
## Degradation Of Cysteine And Homocysteine 14
## Degradation Of Dvl 57
## Degradation Of Gli1 By The Proteasome 60
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 73
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 22
## Dermatan Sulfate Biosynthesis 11
## Detoxification Of Reactive Oxygen Species 37
## Deubiquitination 298
## Developmental Biology 1143
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 7
## Digestion 23
## Digestion And Absorption 28
## Digestion Of Dietary Carbohydrate 11
## Digestion Of Dietary Lipid 7
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 31
## Diseases Associated With Glycosaminoglycan Metabolism 41
## Diseases Associated With Glycosylation Precursor Biosynthesis 18
## Diseases Associated With N Glycosylation Of Proteins 17
## Diseases Associated With Surfactant Metabolism 10
## Diseases Of Base Excision Repair 5
## Diseases Of Carbohydrate Metabolism 34
## Diseases Of Dna Repair 12
## Diseases Of Glycosylation 143
## Diseases Of Metabolism 246
## Diseases Of Mismatch Repair Mmr 5
## Diseases Of Mitotic Cell Cycle 38
## Diseases Of Programmed Cell Death 102
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 394
## Disinhibition Of Snare Formation 5
## Disorders Of Transmembrane Transporters 176
## Displacement Of Dna Glycosylase By Apex1 9
## Dna Damage Bypass 48
## Dna Damage Recognition In Gg Ner 38
## Dna Damage Reversal 8
## Dna Damage Telomere Stress Induced Senescence 80
## Dna Double Strand Break Repair 167
## Dna Double Strand Break Response 78
## Dna Repair 332
## Dna Replication 128
## Dna Replication Initiation 8
## Dna Replication Pre Initiation 85
## Dna Strand Elongation 32
## Dopamine Neurotransmitter Release Cycle 23
## Dopamine Receptors 5
## Downregulation Of Erbb2 Erbb3 Signaling 13
## Downregulation Of Erbb4 Signaling 9
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 23
## Downregulation Of Tgf Beta Receptor Signaling 26
## Downstream Signaling Events Of B Cell Receptor Bcr 81
## Downstream Signaling Of Activated Fgfr1 31
## Downstream Signaling Of Activated Fgfr2 30
## Downstream Signaling Of Activated Fgfr3 25
## Downstream Signaling Of Activated Fgfr4 27
## Dscam Interactions 11
## Dual Incision In Gg Ner 41
## Dual Incision In Tc Ner 65
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 59
## Early Phase Of Hiv Life Cycle 14
## Effects Of Pip2 Hydrolysis 27
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 29
## Eicosanoid Ligand Binding Receptors 15
## Eicosanoids 12
## Elastic Fibre Formation 45
## Electric Transmission Across Gap Junctions 5
## Elevation Of Cytosolic Ca2 Levels 16
## Endogenous Sterols 28
## Endosomal Sorting Complex Required For Transport Escrt 31
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 29
## Enos Activation 11
## Epha Mediated Growth Cone Collapse 29
## Ephb Mediated Forward Signaling 42
## Ephrin Signaling 19
## Epigenetic Regulation Of Gene Expression 148
## Er Quality Control Compartment Erqc 21
## Er To Golgi Anterograde Transport 155
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 76
## Erk Mapk Targets 22
## Erks Are Inactivated 13
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 13
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 9
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 12
## Erythropoietin Activates Phospholipase C Gamma Plcg 7
## Erythropoietin Activates Ras 14
## Erythropoietin Activates Stat5 7
## Esr Mediated Signaling 221
## Establishment Of Sister Chromatid Cohesion 11
## Estrogen Biosynthesis 6
## Estrogen Dependent Gene Expression 150
## Estrogen Stimulated Signaling Through Prkcz 6
## Ethanol Oxidation 12
## Eukaryotic Translation Elongation 94
## Eukaryotic Translation Initiation 120
## Export Of Viral Ribonucleoproteins From Nucleus 33
## Extension Of Telomeres 51
## Extracellular Matrix Organization 301
## Extrinsic Pathway Of Fibrin Clot Formation 5
## Factors Involved In Megakaryocyte Development And Platelet Production 170
## Fanconi Anemia Pathway 39
## Fasl Cd95l Signaling 5
## Fatty Acid Metabolism 177
## Fatty Acids 15
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 8
## Fatty Acyl Coa Biosynthesis 37
## Fbxw7 Mutants And Notch1 In Cancer 5
## Fc Epsilon Receptor Fceri Signaling 186
## Fceri Mediated Nf Kb Activation 136
## Fcgamma Receptor Fcgr Dependent Phagocytosis 143
## Fcgr Activation 69
## Fertilization 26
## Fgfr1 Ligand Binding And Activation 16
## Fgfr1b Ligand Binding And Activation 6
## Fgfr1c Ligand Binding And Activation 12
## Fgfr2 Alternative Splicing 27
## Fgfr2 Ligand Binding And Activation 20
## Fgfr2 Mutant Receptor Activation 33
## Fgfr2b Ligand Binding And Activation 10
## Fgfr2c Ligand Binding And Activation 13
## Fgfr3 Ligand Binding And Activation 13
## Fgfr3b Ligand Binding And Activation 7
## Fgfrl1 Modulation Of Fgfr1 Signaling 13
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 5
## Flt3 Signaling 38
## Flt3 Signaling By Cbl Mutants 7
## Flt3 Signaling In Disease 28
## Flt3 Signaling Through Src Family Kinases 6
## Folding Of Actin By Cct Tric 10
## Formation Of Apoptosome 11
## Formation Of Atp By Chemiosmotic Coupling 18
## Formation Of Fibrin Clot Clotting Cascade 39
## Formation Of Incision Complex In Gg Ner 43
## Formation Of Rna Pol Ii Elongation Complex 58
## Formation Of Senescence Associated Heterochromatin Foci Sahf 17
## Formation Of Tc Ner Pre Incision Complex 53
## Formation Of The Beta Catenin Tcf Transactivating Complex 92
## Formation Of The Cornified Envelope 129
## Formation Of The Early Elongation Complex 33
## Formation Of Tubulin Folding Intermediates By Cct Tric 26
## Formation Of Xylulose 5 Phosphate 5
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 8
## Foxo Mediated Transcription 66
## Foxo Mediated Transcription Of Cell Cycle Genes 17
## Foxo Mediated Transcription Of Cell Death Genes 16
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 30
## Free Fatty Acid Receptors 5
## Free Fatty Acids Regulate Insulin Secretion 11
## Frs Mediated Fgfr1 Signaling 23
## Frs Mediated Fgfr2 Signaling 25
## Frs Mediated Fgfr3 Signaling 20
## Frs Mediated Fgfr4 Signaling 22
## Fructose Catabolism 5
## Fructose Metabolism 7
## G Alpha I Signalling Events 314
## G Alpha Q Signalling Events 216
## G Alpha S Signalling Events 144
## G Alpha Z Signalling Events 48
## G Beta Gamma Signalling Through Cdc42 20
## G Beta Gamma Signalling Through Pi3kgamma 25
## G Protein Activation 24
## G Protein Beta Gamma Signalling 32
## G1 S Dna Damage Checkpoints 68
## G2 M Checkpoints 168
## G2 M Dna Damage Checkpoint 95
## G2 Phase 5
## Gaba B Receptor Activation 43
## Gaba Receptor Activation 60
## Gaba Synthesis Release Reuptake And Degradation 19
## Galactose Catabolism 5
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 42
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 11
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 25
## Gap Junction Assembly 38
## Gap Junction Degradation 12
## Gap Junction Trafficking And Regulation 51
## Gdp Fucose Biosynthesis 6
## Gene Silencing By Rna 140
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 7
## Global Genome Nucleotide Excision Repair Gg Ner 84
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 42
## Glucagon Signaling In Metabolic Regulation 33
## Glucagon Type Ligand Receptors 33
## Glucocorticoid Biosynthesis 10
## Gluconeogenesis 34
## Glucose Metabolism 92
## Glucuronidation 25
## Glutamate And Glutamine Metabolism 14
## Glutamate Neurotransmitter Release Cycle 24
## Glutathione Conjugation 36
## Glutathione Synthesis And Recycling 12
## Glycerophospholipid Biosynthesis 128
## Glycerophospholipid Catabolism 7
## Glycogen Breakdown Glycogenolysis 15
## Glycogen Metabolism 27
## Glycogen Storage Diseases 16
## Glycogen Synthesis 16
## Glycolysis 72
## Glycosaminoglycan Metabolism 124
## Glycosphingolipid Metabolism 45
## Glyoxylate Metabolism And Glycine Degradation 31
## Golgi Associated Vesicle Biogenesis 56
## Golgi To Er Retrograde Transport 134
## Gp1b Ix V Activation Signalling 12
## Gpcr Ligand Binding 463
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 15
## Grb7 Events In Erbb2 Signaling 5
## Hats Acetylate Histones 142
## Hcmv Early Events 138
## Hcmv Infection 162
## Hcmv Late Events 116
## Hdacs Deacetylate Histones 94
## Hdl Assembly 8
## Hdl Clearance 5
## Hdl Remodeling 10
## Hdms Demethylate Histones 50
## Hdr Through Homologous Recombination Hrr 67
## Hdr Through Mmej Alt Nhej 10
## Hdr Through Single Strand Annealing Ssa 37
## Hedgehog Ligand Biogenesis 65
## Hedgehog Off State 113
## Hedgehog On State 86
## Heme Biosynthesis 14
## Heme Degradation 15
## Hemostasis 678
## Heparan Sulfate Heparin Hs Gag Metabolism 55
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 9
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 11
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 7
## Histidine Catabolism 8
## Hiv Elongation Arrest And Recovery 33
## Hiv Infection 231
## Hiv Life Cycle 149
## Hiv Transcription Elongation 43
## Hiv Transcription Initiation 47
## Homologous Dna Pairing And Strand Exchange 42
## Homology Directed Repair 138
## Hormone Ligand Binding Receptors 12
## Host Interactions Of Hiv Factors 131
## Hs Gag Biosynthesis 31
## Hs Gag Degradation 22
## Hsf1 Activation 31
## Hsf1 Dependent Transactivation 38
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 57
## Hur Elavl1 Binds And Stabilizes Mrna 8
## Hyaluronan Biosynthesis And Export 5
## Hyaluronan Metabolism 17
## Hyaluronan Uptake And Degradation 12
## Hydrolysis Of Lpc 9
## Ikba Variant Leads To Eda Id 7
## Il 6 Type Cytokine Receptor Ligand Interactions 17
## Inactivation Of Cdc42 And Rac1 8
## Incretin Synthesis Secretion And Inactivation 23
## Infection With Mycobacterium Tuberculosis 27
## Infectious Disease 924
## Influenza Infection 157
## Inhibition Of Dna Recombination At Telomere 68
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 13
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 21
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 9
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 15
## Innate Immune System 1117
## Inositol Phosphate Metabolism 48
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 22
## Insulin Processing 27
## Insulin Receptor Recycling 26
## Integration Of Energy Metabolism 108
## Integration Of Provirus 9
## Integrin Signaling 27
## Interaction Between L1 And Ankyrins 31
## Interaction With Cumulus Cells And The Zona Pellucida 11
## Interactions Of Rev With Host Cellular Proteins 37
## Interactions Of Vpr With Host Cellular Proteins 37
## Interconversion Of Nucleotide Di And Triphosphates 29
## Interferon Signaling 203
## Interleukin 2 Signaling 12
## Interleukin 36 Pathway 7
## Intestinal Absorption 5
## Intra Golgi And Retrograde Golgi To Er Traffic 203
## Intra Golgi Traffic 44
## Intracellular Signaling By Second Messengers 307
## Intraflagellar Transport 54
## Intrinsic Pathway Of Fibrin Clot Formation 23
## Inwardly Rectifying K Channels 35
## Ion Channel Transport 183
## Ion Homeostasis 54
## Ion Transport By P Type Atpases 55
## Ionotropic Activity Of Kainate Receptors 10
## Irak1 Recruits Ikk Complex 14
## Irak2 Mediated Activation Of Tak1 Complex 10
## Ire1alpha Activates Chaperones 50
## Irf3 Mediated Activation Of Type 1 Ifn 5
## Iron Uptake And Transport 58
## Irs Activation 5
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 22
## Josephin Domain Dubs 12
## Keratan Sulfate Biosynthesis 28
## Keratan Sulfate Degradation 13
## Keratan Sulfate Keratin Metabolism 34
## Keratinization 217
## Ketone Body Metabolism 10
## Kinesins 61
## Ksrp Khsrp Binds And Destabilizes Mrna 17
## Lagging Strand Synthesis 20
## Laminin Interactions 30
## Late Endosomal Microautophagy 34
## Lectin Pathway Of Complement Activation 8
## Leishmania Infection 308
## Leukotriene Receptors 5
## Lgi Adam Interactions 14
## Ligand Receptor Interactions 8
## Linoleic Acid La Metabolism 8
## Lipid Particle Organization 6
## Lipophagy 9
## Listeria Monocytogenes Entry Into Host Cells 20
## Long Term Potentiation 23
## Loss Of Function Of Mecp2 In Rett Syndrome 13
## Loss Of Function Of Smad2 3 In Cancer 7
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 7
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 5
## Ltc4 Cysltr Mediated Il4 Production 7
## Lysine Catabolism 12
## Lysosome Vesicle Biogenesis 35
## Lysosphingolipid And Lpa Receptors 14
## M Phase 417
## Map2k And Mapk Activation 40
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 16
## Mapk Family Signaling Cascades 327
## Mapk6 Mapk4 Signaling 93
## Maturation Of Nucleoprotein 10
## Maturation Of Protein 3a 9
## Maturation Of Sars Cov 1 Spike Protein 5
## Maturation Of Sars Cov 2 Spike Protein 29
## Meiosis 119
## Meiotic Recombination 87
## Meiotic Synapsis 79
## Melanin Biosynthesis 5
## Membrane Trafficking 629
## Met Activates Pi3k Akt Signaling 6
## Met Activates Ptk2 Signaling 30
## Met Activates Ptpn11 5
## Met Activates Rap1 And Rac1 11
## Met Activates Ras Signaling 11
## Met Interacts With Tns Proteins 5
## Met Promotes Cell Motility 41
## Met Receptor Activation 6
## Met Receptor Recycling 10
## Metabolic Disorders Of Biological Oxidation Enzymes 34
## Metabolism Of Amine Derived Hormones 18
## Metabolism Of Amino Acids And Derivatives 374
## Metabolism Of Angiotensinogen To Angiotensins 18
## Metabolism Of Carbohydrates 293
## Metabolism Of Cofactors 19
## Metabolism Of Fat Soluble Vitamins 48
## Metabolism Of Folate And Pterines 17
## Metabolism Of Ingested Semet Sec Mesec Into H2se 8
## Metabolism Of Lipids 741
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 15
## Metabolism Of Nucleotides 98
## Metabolism Of Polyamines 59
## Metabolism Of Porphyrins 27
## Metabolism Of Rna 672
## Metabolism Of Steroid Hormones 35
## Metabolism Of Steroids 151
## Metabolism Of Vitamins And Cofactors 189
## Metabolism Of Water Soluble Vitamins And Cofactors 123
## Metal Ion Slc Transporters 26
## Metal Sequestration By Antimicrobial Proteins 6
## Metallothioneins Bind Metals 11
## Methionine Salvage Pathway 6
## Methylation 14
## Mhc Class Ii Antigen Presentation 126
## Microrna Mirna Biogenesis 25
## Mineralocorticoid Biosynthesis 6
## Miro Gtpase Cycle 8
## Miscellaneous Substrates 12
## Miscellaneous Transport And Binding Events 26
## Mismatch Repair 15
## Mitochondrial Biogenesis 94
## Mitochondrial Calcium Ion Transport 23
## Mitochondrial Fatty Acid Beta Oxidation 37
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 11
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 6
## Mitochondrial Iron Sulfur Cluster Biogenesis 13
## Mitochondrial Protein Import 65
## Mitochondrial Translation 96
## Mitochondrial Trna Aminoacylation 21
## Mitochondrial Uncoupling 6
## Mitophagy 29
## Mitotic G1 Phase And G1 S Transition 149
## Mitotic G2 G2 M Phases 200
## Mitotic Metaphase And Anaphase 236
## Mitotic Prometaphase 203
## Mitotic Prophase 143
## Mitotic Spindle Checkpoint 111
## Mitotic Telophase Cytokinesis 13
## Modulation By Mtb Of Host Immune System 7
## Molecules Associated With Elastic Fibres 38
## Molybdenum Cofactor Biosynthesis 6
## Mrna Capping 29
## Mrna Decay By 3 To 5 Exoribonuclease 16
## Mrna Decay By 5 To 3 Exoribonuclease 15
## Mrna Editing 10
## Mrna Editing C To U Conversion 8
## Mrna Splicing 188
## Mrna Splicing Minor Pathway 52
## Mtor Signalling 41
## Mtorc1 Mediated Signalling 24
## Mucopolysaccharidoses 11
## Multifunctional Anion Exchangers 9
## Muscarinic Acetylcholine Receptors 5
## Muscle Contraction 195
## Myoclonic Epilepsy Of Lafora 9
## Myogenesis 29
## N Glycan Antennae Elongation 15
## N Glycan Antennae Elongation In The Medial Trans Golgi 26
## N Glycan Trimming And Elongation In The Cis Golgi 5
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 35
## Na Cl Dependent Neurotransmitter Transporters 19
## Nade Modulates Death Signalling 6
## Ncam1 Interactions 42
## Nectin Necl Trans Heterodimerization 7
## Neddylation 234
## Nef And Signal Transduction 8
## Nef Mediated Cd4 Down Regulation 9
## Nef Mediated Cd8 Down Regulation 7
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 10
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 21
## Negative Epigenetic Regulation Of Rrna Expression 109
## Negative Feedback Regulation Of Mapk Pathway 6
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 10
## Negative Regulation Of Fgfr1 Signaling 33
## Negative Regulation Of Fgfr2 Signaling 34
## Negative Regulation Of Fgfr3 Signaling 29
## Negative Regulation Of Fgfr4 Signaling 31
## Negative Regulation Of Flt3 15
## Negative Regulation Of Mapk Pathway 43
## Negative Regulation Of Met Activity 21
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 21
## Negative Regulation Of Notch4 Signaling 54
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 5
## Negative Regulators Of Ddx58 Ifih1 Signaling 34
## Nephrin Family Interactions 23
## Nervous System Development 580
## Netrin 1 Signaling 50
## Netrin Mediated Repulsion Signals 8
## Neurexins And Neuroligins 56
## Neurofascin Interactions 7
## Neuronal System 410
## Neurotoxicity Of Clostridium Toxins 10
## Neurotransmitter Clearance 10
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 205
## Neurotransmitter Release Cycle 51
## Neutrophil Degranulation 479
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 12
## Nf Kb Is Activated And Signals Survival 13
## Ngf Independant Trka Activation 5
## Nicotinamide Salvaging 19
## Nicotinate Metabolism 31
## Nitric Oxide Stimulates Guanylate Cyclase 22
## Non Integrin Membrane Ecm Interactions 59
## Noncanonical Activation Of Notch3 8
## Nonhomologous End Joining Nhej 69
## Nonsense Mediated Decay Nmd 116
## Norepinephrine Neurotransmitter Release Cycle 18
## Nostrin Mediated Enos Trafficking 5
## Notch Hlh Transcription Pathway 28
## Notch1 Intracellular Domain Regulates Transcription 48
## Notch2 Activation And Transmission Of Signal To The Nucleus 22
## Notch3 Intracellular Domain Regulates Transcription 25
## Notch4 Activation And Transmission Of Signal To The Nucleus 11
## Notch4 Intracellular Domain Regulates Transcription 20
## Nr1h2 And Nr1h3 Mediated Signaling 47
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 5
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 9
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 5
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 9
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 5
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 37
## Nrcam Interactions 7
## Nrif Signals Cell Death From The Nucleus 16
## Ns1 Mediated Effects On Host Pathways 41
## Ntrk2 Activates Rac1 5
## Nuclear Import Of Rev Protein 34
## Nuclear Receptor Transcription Pathway 53
## Nuclear Signaling By Erbb4 32
## Nucleobase Biosynthesis 15
## Nucleobase Catabolism 35
## Nucleotide Excision Repair 110
## Nucleotide Like Purinergic Receptors 16
## Nucleotide Salvage 23
## O Glycosylation Of Tsr Domain Containing Proteins 39
## O Linked Glycosylation 111
## Oas Antiviral Response 9
## Olfactory Signaling Pathway 400
## Oncogene Induced Senescence 35
## Oncogenic Mapk Signaling 82
## Opioid Signalling 90
## Opsins 9
## Orc1 Removal From Chromatin 71
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 8
## Organelle Biogenesis And Maintenance 296
## Organic Anion Transport 5
## Organic Anion Transporters 10
## Organic Cation Anion Zwitterion Transport 15
## Organic Cation Transport 10
## Other Interleukin Signaling 24
## Other Semaphorin Interactions 19
## Oxidative Stress Induced Senescence 126
## P130cas Linkage To Mapk Signaling For Integrins 15
## P2y Receptors 12
## P38mapk Events 13
## P75ntr Negatively Regulates Cell Cycle Via Sc1 6
## P75ntr Recruits Signalling Complexes 13
## P75ntr Signals Via Nf Kb 16
## Parasite Infection 116
## Passive Transport By Aquaporins 13
## Pcna Dependent Long Patch Base Excision Repair 21
## Pcp Ce Pathway 92
## Pecam1 Interactions 12
## Pentose Phosphate Pathway 15
## Peptide Hormone Biosynthesis 14
## Peptide Hormone Metabolism 90
## Peroxisomal Lipid Metabolism 29
## Peroxisomal Protein Import 63
## Pexophagy 11
## Phase 0 Rapid Depolarisation 32
## Phase 1 Inactivation Of Fast Na Channels 7
## Phase 2 Plateau Phase 15
## Phase 3 Rapid Repolarisation 8
## Phase I Functionalization Of Compounds 106
## Phase Ii Conjugation Of Compounds 109
## Phenylalanine And Tyrosine Metabolism 11
## Phenylalanine Metabolism 6
## Phosphate Bond Hydrolysis By Ntpdase Proteins 8
## Phosphate Bond Hydrolysis By Nudt Proteins 7
## Phospholipase C Mediated Cascade Fgfr2 18
## Phospholipase C Mediated Cascade Fgfr4 15
## Phospholipid Metabolism 211
## Physiological Factors 12
## Pi 3k Cascade Fgfr1 21
## Pi 3k Cascade Fgfr2 23
## Pi 3k Cascade Fgfr3 18
## Pi 3k Cascade Fgfr4 20
## Pi Metabolism 84
## Pi3k Akt Activation 9
## Pi3k Events In Erbb4 Signaling 10
## Pi5p Regulates Tp53 Acetylation 9
## Pink1 Prkn Mediated Mitophagy 22
## Piwi Interacting Rna Pirna Biogenesis 29
## Pka Activation In Glucagon Signalling 17
## Pka Mediated Phosphorylation Of Key Metabolic Factors 5
## Pkmts Methylate Histone Lysines 71
## Plasma Lipoprotein Assembly 19
## Plasma Lipoprotein Remodeling 32
## Platelet Activation Signaling And Aggregation 261
## Platelet Adhesion To Exposed Collagen 15
## Platelet Aggregation Plug Formation 39
## Platelet Calcium Homeostasis 28
## Platelet Homeostasis 86
## Platelet Sensitization By Ldl 17
## Polb Dependent Long Patch Base Excision Repair 8
## Polo Like Kinase Mediated Events 16
## Polymerase Switching 14
## Polymerase Switching On The C Strand Of The Telomere 26
## Positive Epigenetic Regulation Of Rrna Expression 106
## Post Chaperonin Tubulin Folding Pathway 23
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 94
## Postmitotic Nuclear Pore Complex Npc Reformation 27
## Potassium Channels 103
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 10
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 7
## Pre Notch Expression And Processing 120
## Pre Notch Processing In Golgi 18
## Pre Notch Processing In The Endoplasmic Reticulum 6
## Pregnenolone Biosynthesis 12
## Presynaptic Depolarization And Calcium Channel Opening 11
## Presynaptic Function Of Kainate Receptors 21
## Prevention Of Phagosomal Lysosomal Fusion 9
## Processing And Activation Of Sumo 10
## Processing Of Capped Intron Containing Pre Mrna 242
## Processing Of Capped Intronless Pre Mrna 28
## Processing Of Dna Double Strand Break Ends 98
## Processing Of Intronless Pre Mrnas 19
## Processing Of Smdt1 16
## Processive Synthesis On The C Strand Of The Telomere 19
## Processive Synthesis On The Lagging Strand 15
## Prolactin Receptor Signaling 15
## Prolonged Erk Activation Events 14
## Propionyl Coa Catabolism 5
## Prostacyclin Signalling Through Prostacyclin Receptor 19
## Prostanoid Ligand Receptors 9
## Protein Folding 98
## Protein Localization 164
## Protein Methylation 17
## Protein Protein Interactions At Synapses 87
## Protein Repair 6
## Protein Ubiquitination 79
## Proton Coupled Monocarboxylate Transport 6
## Pten Regulation 139
## Ptk6 Expression 5
## Ptk6 Regulates Cell Cycle 6
## Ptk6 Regulates Proteins Involved In Rna Processing 5
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 14
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 9
## Purine Catabolism 17
## Purine Ribonucleoside Monophosphate Biosynthesis 12
## Purine Salvage 13
## Pyrimidine Catabolism 12
## Pyrimidine Salvage 11
## Pyruvate Metabolism 31
## Pyruvate Metabolism And Citric Acid Tca Cycle 55
## Ra Biosynthesis Pathway 22
## Rab Gefs Exchange Gtp For Gdp On Rabs 90
## Rab Geranylgeranylation 65
## Rab Regulation Of Trafficking 122
## Rac1 Gtpase Cycle 184
## Raf Activation 34
## Rap1 Signalling 16
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 20
## Ras Processing 24
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 7
## Reactions Specific To The Complex N Glycan Synthesis Pathway 10
## Receptor Mediated Mitophagy 11
## Receptor Type Tyrosine Protein Phosphatases 20
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 56
## Recognition Of Dna Damage By Pcna Containing Replication Complex 30
## Recruitment Of Numa To Mitotic Centrosomes 95
## Recycling Of Bile Acids And Salts 16
## Recycling Of Eif2 Gdp 8
## Recycling Pathway Of L1 49
## Reduction Of Cytosolic Ca Levels 12
## Reelin Signalling Pathway 5
## Regulated Proteolysis Of P75ntr 11
## Regulation By C Flip 11
## Regulation Of Bach1 Activity 11
## Regulation Of Beta Cell Development 42
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 55
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 10
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 8
## Regulation Of Expression Of Slits And Robos 172
## Regulation Of Foxo Transcriptional Activity By Acetylation 10
## Regulation Of Fzd By Ubiquitination 21
## Regulation Of Gene Expression By Hypoxia Inducible Factor 11
## Regulation Of Gene Expression In Beta Cells 21
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 8
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 5
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 16
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 32
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 12
## Regulation Of Hmox1 Expression And Activity 65
## Regulation Of Hsf1 Mediated Heat Shock Response 82
## Regulation Of Ifna Signaling 26
## Regulation Of Ifng Signaling 14
## Regulation Of Innate Immune Responses To Cytosolic Dna 15
## Regulation Of Insulin Secretion 78
## Regulation Of Kit Signaling 16
## Regulation Of Lipid Metabolism By Pparalpha 120
## Regulation Of Localization Of Foxo Transcription Factors 12
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 87
## Regulation Of Pten Gene Transcription 61
## Regulation Of Pten Localization 9
## Regulation Of Pten Mrna Translation 9
## Regulation Of Pten Stability And Activity 69
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 16
## Regulation Of Ras By Gaps 68
## Regulation Of Runx1 Expression And Activity 17
## Regulation Of Runx3 Expression And Activity 55
## Regulation Of Signaling By Cbl 22
## Regulation Of Signaling By Nodal 11
## Regulation Of Tp53 Activity 160
## Regulation Of Tp53 Activity Through Acetylation 30
## Regulation Of Tp53 Activity Through Association With Co Factors 14
## Regulation Of Tp53 Activity Through Methylation 19
## Regulation Of Tp53 Activity Through Phosphorylation 92
## Relaxin Receptors 8
## Release Of Apoptotic Factors From The Mitochondria 7
## Release Of Hh Np From The Secreting Cell 8
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 10
## Repression Of Wnt Target Genes 14
## Reproduction 145
## Resolution Of Abasic Sites Ap Sites 38
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 25
## Resolution Of D Loop Structures 34
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 26
## Resolution Of Sister Chromatid Cohesion 126
## Respiratory Electron Transport 103
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 127
## Response Of Eif2ak1 Hri To Heme Deficiency 15
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 102
## Response Of Mtb To Phagocytosis 23
## Response To Elevated Platelet Cytosolic Ca2 132
## Response To Metal Ions 14
## Ret Signaling 40
## Retinoid Cycle Disease Events 13
## Retrograde Neurotrophin Signalling 14
## Reversible Hydration Of Carbon Dioxide 12
## Rho Gtpase Cycle 444
## Rho Gtpase Effectors 324
## Rho Gtpases Activate Cit 19
## Rho Gtpases Activate Formins 140
## Rho Gtpases Activate Iqgaps 32
## Rho Gtpases Activate Ktn1 11
## Rho Gtpases Activate Nadph Oxidases 24
## Rho Gtpases Activate Paks 21
## Rho Gtpases Activate Pkns 94
## Rho Gtpases Activate Rhotekin And Rhophilins 9
## Rho Gtpases Activate Rocks 19
## Rho Gtpases Activate Wasps And Waves 36
## Rhoa Gtpase Cycle 149
## Rhobtb Gtpase Cycle 35
## Rhobtb1 Gtpase Cycle 23
## Rhobtb2 Gtpase Cycle 23
## Rhobtb3 Atpase Cycle 10
## Rhot1 Gtpase Cycle 5
## Rhou Gtpase Cycle 34
## Rhov Gtpase Cycle 33
## Rna Polymerase I Promoter Escape 91
## Rna Polymerase I Transcription 111
## Rna Polymerase I Transcription Initiation 47
## Rna Polymerase I Transcription Termination 31
## Rna Polymerase Ii Transcribes Snrna Genes 81
## Rna Polymerase Ii Transcription Termination 66
## Rna Polymerase Iii Chain Elongation 18
## Rna Polymerase Iii Transcription 41
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 28
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 28
## Rna Polymerase Iii Transcription Termination 23
## Rnd1 Gtpase Cycle 42
## Rnd2 Gtpase Cycle 43
## Rnd3 Gtpase Cycle 42
## Robo Receptors Bind Akap5 9
## Role Of Abl In Robo Slit Signaling 8
## Role Of Lat2 Ntal Lab On Calcium Mobilization 71
## Role Of Phospholipids In Phagocytosis 82
## Role Of Second Messengers In Netrin 1 Signaling 10
## Rora Activates Gene Expression 18
## Ros And Rns Production In Phagocytes 36
## Rrna Modification In The Mitochondrion 8
## Rrna Modification In The Nucleus And Cytosol 60
## Rrna Processing 205
## Rrna Processing In The Mitochondrion 12
## Rsk Activation 7
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 10
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 37
## Runx1 Regulates Estrogen Receptor Mediated Transcription 6
## Runx1 Regulates Expression Of Components Of Tight Junctions 5
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 98
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 6
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 130
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 8
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 5
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 6
## Runx3 Regulates Bcl2l11 Bim Transcription 5
## Runx3 Regulates Cdkn1a Transcription 7
## Runx3 Regulates Immune Response And Cell Migration 6
## Runx3 Regulates Notch Signaling 14
## Runx3 Regulates P14 Arf 10
## Runx3 Regulates Wnt Signaling 8
## Runx3 Regulates Yap1 Mediated Transcription 8
## S Phase 162
## Sars Cov 1 Genome Replication And Transcription 6
## Sars Cov 1 Infection 50
## Sars Cov 2 Infection 67
## Sars Cov Infections 146
## Scavenging By Class A Receptors 19
## Scavenging By Class B Receptors 6
## Scavenging By Class F Receptors 6
## Scavenging Of Heme From Plasma 69
## Scf Skp2 Mediated Degradation Of P27 P21 60
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 32
## Selective Autophagy 82
## Selenoamino Acid Metabolism 118
## Sema3a Pak Dependent Axon Repulsion 16
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 14
## Sema4d In Semaphorin Signaling 24
## Sema4d Induced Cell Migration And Growth Cone Collapse 20
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 8
## Semaphorin Interactions 64
## Sensing Of Dna Double Strand Breaks 6
## Sensory Perception 575
## Sensory Processing Of Sound 77
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 55
## Separation Of Sister Chromatids 191
## Serine Biosynthesis 9
## Serotonin And Melatonin Biosynthesis 5
## Serotonin Neurotransmitter Release Cycle 18
## Serotonin Receptors 12
## Shc Mediated Cascade Fgfr1 21
## Shc Mediated Cascade Fgfr3 18
## Shc Mediated Cascade Fgfr4 20
## Shc Related Events Triggered By Igf1r 9
## Shc1 Events In Erbb4 Signaling 14
## Signal Amplification 33
## Signal Attenuation 10
## Signal Regulatory Protein Family Interactions 16
## Signaling By Activin 13
## Signaling By Bmp 28
## Signaling By Braf And Raf Fusions 65
## Signaling By Ctnnb1 Phospho Site Mutants 15
## Signaling By Erythropoietin 25
## Signaling By Fgfr 87
## Signaling By Fgfr1 50
## Signaling By Fgfr2 73
## Signaling By Fgfr2 Iiia Tm 19
## Signaling By Fgfr2 In Disease 43
## Signaling By Fgfr3 40
## Signaling By Fgfr3 Fusions In Cancer 10
## Signaling By Fgfr4 41
## Signaling By Fgfr4 In Disease 11
## Signaling By Flt3 Fusion Proteins 19
## Signaling By Flt3 Itd And Tkd Mutants 16
## Signaling By Gpcr 698
## Signaling By Hedgehog 150
## Signaling By Hippo 20
## Signaling By Lrp5 Mutants 6
## Signaling By Mapk Mutants 7
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 5
## Signaling By Moderate Kinase Activity Braf Mutants 45
## Signaling By Mras Complex Mutants 8
## Signaling By Mst1 5
## Signaling By Nodal 20
## Signaling By Notch 247
## Signaling By Notch1 74
## Signaling By Notch1 Hd Domain Mutants In Cancer 15
## Signaling By Notch1 Pest Domain Mutants In Cancer 58
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 7
## Signaling By Notch4 82
## Signaling By Ntrk2 Trkb 25
## Signaling By Ntrk3 Trkc 17
## Signaling By Nuclear Receptors 297
## Signaling By Receptor Tyrosine Kinases 504
## Signaling By Retinoic Acid 43
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 717
## Signaling By Rnf43 Mutants 8
## Signaling By Robo Receptors 218
## Signaling By Tgf Beta Receptor Complex In Cancer 8
## Signaling By Tgfb Family Members 102
## Signaling By The B Cell Receptor Bcr 166
## Signaling By Vegf 106
## Signaling By Wnt 331
## Signaling By Wnt In Cancer 34
## Signalling To Erks 34
## Signalling To P38 Via Rit And Rin 5
## Signalling To Ras 20
## Sirt1 Negatively Regulates Rrna Expression 68
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 11
## Slc Mediated Transmembrane Transport 250
## Slc Transporter Disorders 99
## Smac Xiap Regulated Apoptotic Response 8
## Small Interfering Rna Sirna Biogenesis 9
## Smooth Muscle Contraction 38
## Snrnp Assembly 54
## Sodium Calcium Exchangers 11
## Sodium Coupled Phosphate Cotransporters 5
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 5
## Sodium Proton Exchangers 9
## Sos Mediated Signalling 7
## Sperm Motility And Taxes 9
## Sphingolipid De Novo Biosynthesis 45
## Sphingolipid Metabolism 90
## Spry Regulation Of Fgf Signaling 16
## Srp Dependent Cotranslational Protein Targeting To Membrane 113
## Stabilization Of P53 57
## Stat5 Activation 7
## Stat5 Activation Downstream Of Flt3 Itd Mutants 10
## Stimuli Sensing Channels 106
## Striated Muscle Contraction 36
## Sulfide Oxidation To Sulfate 6
## Sulfur Amino Acid Metabolism 28
## Sumo Is Conjugated To E1 Uba2 Sae1 5
## Sumo Is Proteolytically Processed 6
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 7
## Sumoylation 187
## Sumoylation Of Chromatin Organization Proteins 71
## Sumoylation Of Dna Damage Response And Repair Proteins 77
## Sumoylation Of Dna Replication Proteins 46
## Sumoylation Of Immune Response Proteins 11
## Sumoylation Of Intracellular Receptors 30
## Sumoylation Of Rna Binding Proteins 47
## Sumoylation Of Sumoylation Proteins 35
## Sumoylation Of Transcription Factors 20
## Sumoylation Of Ubiquitinylation Proteins 39
## Suppression Of Apoptosis 7
## Suppression Of Phagosomal Maturation 13
## Surfactant Metabolism 30
## Switching Of Origins To A Post Replicative State 91
## Synaptic Adhesion Like Molecules 21
## Syndecan Interactions 27
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 7
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 6
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 9
## Synthesis Of 5 Eicosatetraenoic Acids 9
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 30
## Synthesis Of Bile Acids And Bile Salts 34
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 14
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 15
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 24
## Synthesis Of Diphthamide Eef2 8
## Synthesis Of Dolichyl Phosphate 6
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 8
## Synthesis Of Gdp Mannose 5
## Synthesis Of Glycosylphosphatidylinositol Gpi 18
## Synthesis Of Ip2 Ip And Ins In The Cytosol 14
## Synthesis Of Ip3 And Ip4 In The Cytosol 26
## Synthesis Of Ketone Bodies 8
## Synthesis Of Leukotrienes Lt And Eoxins Ex 21
## Synthesis Of Lipoxins Lx 6
## Synthesis Of Pa 39
## Synthesis Of Pc 28
## Synthesis Of Pe 13
## Synthesis Of Pg 8
## Synthesis Of Pi 5
## Synthesis Of Pips At The Early Endosome Membrane 16
## Synthesis Of Pips At The Er Membrane 5
## Synthesis Of Pips At The Golgi Membrane 18
## Synthesis Of Pips At The Late Endosome Membrane 11
## Synthesis Of Pips At The Plasma Membrane 53
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 15
## Synthesis Of Pyrophosphates In The Cytosol 10
## Synthesis Of Udp N Acetyl Glucosamine 8
## Synthesis Of Very Long Chain Fatty Acyl Coas 24
## Synthesis Of Wybutosine At G37 Of Trna Phe 6
## Synthesis Secretion And Deacylation Of Ghrelin 19
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 20
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 13
## Tachykinin Receptors Bind Tachykinins 5
## Tbc Rabgaps 44
## Tcf Dependent Signaling In Response To Wnt 234
## Tcr Signaling 124
## Telomere C Strand Lagging Strand Synthesis 34
## Telomere C Strand Synthesis Initiation 13
## Telomere Extension By Telomerase 23
## Telomere Maintenance 113
## Terminal Pathway Of Complement 8
## Termination Of Translesion Dna Synthesis 32
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 10
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 5
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 5
## Tgf Beta Receptor Signaling Activates Smads 32
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 16
## The Activation Of Arylsulfatases 13
## The Canonical Retinoid Cycle In Rods Twilight Vision 23
## The Citric Acid Tca Cycle And Respiratory Electron Transport 178
## The Fatty Acid Cycling Model 5
## The Phototransduction Cascade 34
## The Retinoid Cycle In Cones Daylight Vision 7
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 28
## Thrombin Signalling Through Proteinase Activated Receptors Pars 32
## Thromboxane Signalling Through Tp Receptor 24
## Thyroxine Biosynthesis 10
## Tie2 Signaling 18
## Tight Junction Interactions 30
## Tnfr1 Induced Proapoptotic Signaling 13
## Tnfr1 Mediated Ceramide Production 6
## Toxicity Of Botulinum Toxin Type D Botd 5
## Tp53 Regulates Metabolic Genes 87
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 21
## Tp53 Regulates Transcription Of Death Receptors And Ligands 12
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 20
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 14
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 14
## Traf3 Dependent Irf Activation Pathway 14
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 16
## Traf6 Mediated Irf7 Activation 29
## Trafficking Of Ampa Receptors 31
## Trafficking Of Glur2 Containing Ampa Receptors 17
## Trafficking Of Myristoylated Proteins To The Cilium 5
## Trail Signaling 8
## Trans Golgi Network Vesicle Budding 72
## Transcription Coupled Nucleotide Excision Repair Tc Ner 78
## Transcription Of E2f Targets Under Negative Control By Dream Complex 19
## Transcription Of The Hiv Genome 70
## Transcriptional Regulation By E2f6 34
## Transcriptional Regulation By Runx1 239
## Transcriptional Regulation By Runx3 96
## Transcriptional Regulation By Small Rnas 107
## Transcriptional Regulation By Tp53 363
## Transcriptional Regulation Of Testis Differentiation 13
## Transcriptional Regulation Of White Adipocyte Differentiation 84
## Transferrin Endocytosis And Recycling 31
## Translation 295
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 13
## Translation Of Sars Cov 1 Structural Proteins 28
## Translation Of Sars Cov 2 Structural Proteins 44
## Translesion Synthesis By Polh 19
## Translesion Synthesis By Polk 17
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 39
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 72
## Transmission Across Chemical Synapses 269
## Transport And Synthesis Of Paps 6
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 86
## Transport Of Connexons To The Plasma Membrane 21
## Transport Of Fatty Acids 8
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 106
## Transport Of Mature Mrnas Derived From Intronless Transcripts 43
## Transport Of Mature Transcript To Cytoplasm 84
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 12
## Transport Of Nucleotide Sugars 9
## Transport Of Organic Anions 12
## Transport Of Small Molecules 728
## Transport Of The Slbp Dependant Mature Mrna 36
## Transport Of Vitamins Nucleosides And Related Molecules 44
## Transport To The Golgi And Subsequent Modification 186
## Trif Mediated Programmed Cell Death 9
## Triglyceride Biosynthesis 14
## Triglyceride Catabolism 24
## Triglyceride Metabolism 38
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 17
## Trna Aminoacylation 42
## Trna Modification In The Mitochondrion 9
## Trna Modification In The Nucleus And Cytosol 43
## Trna Processing 111
## Trna Processing In The Mitochondrion 7
## Trna Processing In The Nucleus 59
## Trp Channels 28
## Tryptophan Catabolism 14
## Type I Hemidesmosome Assembly 11
## Tyrosine Catabolism 5
## Tysnd1 Cleaves Peroxisomal Proteins 7
## Ub Specific Processing Proteases 221
## Ubiquinol Biosynthesis 8
## Uch Proteinases 102
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 21
## Unwinding Of Dna 12
## Uptake And Actions Of Bacterial Toxins 29
## Uptake And Function Of Anthrax Toxins 11
## Uptake And Function Of Diphtheria Toxin 6
## Urea Cycle 10
## Vasopressin Like Receptors 6
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 43
## Vegf Ligand Receptor Interactions 8
## Vegfr2 Mediated Cell Proliferation 19
## Vesicle Mediated Transport 724
## Viral Messenger Rna Synthesis 44
## Visual Phototransduction 100
## Vitamin B1 Thiamin Metabolism 5
## Vitamin B2 Riboflavin Metabolism 7
## Vitamin B5 Pantothenate Metabolism 17
## Vitamin C Ascorbate Metabolism 8
## Vitamin D Calciferol Metabolism 11
## Vitamins 6
## Vldl Assembly 5
## Vldl Clearance 6
## Voltage Gated Potassium Channels 43
## Vxpx Cargo Targeting To Cilium 21
## Wax And Plasmalogen Biosynthesis 7
## Wnt Mediated Activation Of Dvl 8
## Xenobiotics 25
## Zinc Efflux And Compartmentalization By The Slc30 Family 7
## Zinc Influx Into Cells By The Slc39 Gene Family 10
## Zinc Transporters 17
## overlap
## Interleukin 10 Signaling 13
## Interleukin 1 Processing 3
## Chemokine Receptors Bind Chemokines 8
## Interleukin 4 And Interleukin 13 Signaling 12
## Purinergic Signaling In Leishmaniasis Infection 4
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 2
## Pyroptosis 4
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 3
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 3
## Cd163 Mediating An Anti Inflammatory Response 2
## Egfr Transactivation By Gastrin 2
## Mapk3 Erk1 Activation 2
## Inflammasomes 3
## Interleukin 6 Signaling 2
## Cd28 Dependent Vav1 Pathway 2
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 3
## Trafficking And Processing Of Endosomal Tlr 2
## Regulated Necrosis 5
## Tnfs Bind Their Physiological Receptors 3
## The Nlrp3 Inflammasome 2
## G2 M Dna Replication Checkpoint 1
## Mecp2 Regulates Transcription Factors 1
## Runx2 Regulates Chondrocyte Maturation 1
## Activation Of Matrix Metalloproteinases 3
## Clec7a Inflammasome Pathway 1
## Fibronectin Matrix Formation 1
## Phosphorylation Of Emi1 1
## Ptk6 Promotes Hif1a Stabilization 1
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 2
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 1
## Activation Of Nima Kinases Nek9 Nek6 Nek7 1
## Creb Phosphorylation 1
## Ctla4 Inhibitory Signaling 2
## Interleukin 37 Signaling 2
## Signal Transduction By L1 2
## Cd28 Dependent Pi3k Akt Signaling 2
## Activation Of C3 And C5 1
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 1
## Interleukin 18 Signaling 1
## Mecp2 Regulates Transcription Of Neuronal Ligands 1
## Raf Independent Mapk1 3 Activation 2
## Runx2 Regulates Genes Involved In Cell Migration 1
## Interleukin 6 Family Signaling 2
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 4
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 1
## E2f Enabled Inhibition Of Pre Replication Complex Formation 1
## Egfr Interacts With Phospholipase C Gamma 1
## Extra Nuclear Estrogen Signaling 5
## Interleukin 23 Signaling 1
## Interleukin 9 Signaling 1
## Mapk1 Erk2 Activation 1
## Activation Of The Ap 1 Family Of Transcription Factors 1
## Akt Phosphorylates Targets In The Nucleus 1
## Camk Iv Mediated Phosphorylation Of Creb 1
## Interleukin 21 Signaling 1
## Mastl Facilitates Mitotic Progression 1
## P75ntr Regulates Axonogenesis 1
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 2
## Condensation Of Prometaphase Chromosomes 1
## Dap12 Interactions 3
## Endosomal Vacuolar Pathway 1
## Interleukin 27 Signaling 1
## Pd 1 Signaling 2
## Signaling By Leptin 1
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 1
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 1
## Interleukin 35 Signalling 1
## Killing Mechanisms 1
## Notch2 Intracellular Domain Regulates Transcription 1
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 1
## Tandem Pore Domain Potassium Channels 1
## Ticam1 Dependent Activation Of Irf3 Irf7 1
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 1
## Vldlr Internalisation And Degradation 1
## Advanced Glycosylation Endproduct Receptor Signaling 1
## Apoptosis Induced Dna Fragmentation 1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 1
## Diseases Of Immune System 2
## Dissolution Of Fibrin Clot 1
## Erbb2 Activates Ptk6 Signaling 1
## Irf3 Mediated Induction Of Type I Ifn 1
## Mapk Targets Nuclear Events Mediated By Map Kinases 2
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 1
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 1
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 1
## Perk Regulates Gene Expression 2
## Cd28 Co Stimulation 2
## Golgi Cisternae Pericentriolar Stack Reorganization 1
## Interleukin 15 Signaling 1
## Shc1 Events In Egfr Signaling 1
## Constitutive Signaling By Egfrviii 1
## Depolymerisation Of The Nuclear Lamina 1
## Erbb2 Regulates Cell Motility 1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 1
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 1
## Wnt5a Dependent Internalization Of Fzd4 1
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 1
## Costimulation By The Cd28 Family 4
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 1
## Grb2 Events In Erbb2 Signaling 1
## Nod1 2 Signaling Pathway 2
## Pi3k Events In Erbb2 Signaling 1
## Signaling By Erbb2 Ecd Mutants 1
## Sting Mediated Induction Of Host Immune Responses 1
## Sumoylation Of Dna Methylation Proteins 1
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 1
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 1
## Gab1 Signalosome 1
## Interleukin 12 Family Signaling 3
## Rip Mediated Nfkb Activation Via Zbp1 1
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 2
## Constitutive Signaling By Aberrant Pi3k In Cancer 4
## Irak4 Deficiency Tlr2 4 1
## Mecp2 Regulates Neuronal Receptors And Channels 1
## Signaling By Cytosolic Fgfr1 Fusion Mutants 1
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 1
## Ngf Stimulated Transcription 2
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 1
## Initiation Of Nuclear Envelope Ne Reformation 1
## Ldl Clearance 1
## Phase 4 Resting Membrane Potential 1
## Phosphorylation Of The Apc C 1
## Pka Mediated Phosphorylation Of Creb 1
## Signaling By Kit In Disease 1
## Signaling By Pdgfr In Disease 1
## Tnfr2 Non Canonical Nf Kb Pathway 5
## Collagen Degradation 3
## Regulation Of Tlr By Endogenous Ligand 1
## Signaling By Scf Kit 2
## Zbp1 Dai Mediated Induction Of Type I Ifns 1
## E2f Mediated Regulation Of Dna Replication 1
## Interleukin 2 Family Signaling 2
## Pi3k Akt Signaling In Cancer 5
## Shc1 Events In Erbb2 Signaling 1
## Ikk Complex Recruitment Mediated By Rip1 1
## Termination Of O Glycan Biosynthesis 1
## Apc C Cdc20 Mediated Degradation Of Cyclin B 1
## Growth Hormone Receptor Signaling 1
## Interleukin 12 Signaling 2
## Runx2 Regulates Osteoblast Differentiation 1
## Traf6 Mediated Nf Kb Activation 1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 1
## Cyclin A B1 B2 Associated Events During G2 M Transition 1
## Inactivation Of Csf3 G Csf Signaling 1
## Notch3 Activation And Transmission Of Signal To The Nucleus 1
## Signaling By Egfr In Cancer 1
## Constitutive Signaling By Akt1 E17k In Cancer 1
## Dectin 2 Family 1
## Interleukin 17 Signaling 3
## Interleukin 20 Family Signaling 1
## Negative Regulation Of The Pi3k Akt Network 5
## Signaling By Erbb2 In Cancer 1
## Wnt Ligand Biogenesis And Trafficking 1
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 1
## Eph Ephrin Mediated Repulsion Of Cells 2
## G0 And Early G1 1
## Interleukin Receptor Shc Signaling 1
## Toll Like Receptor 9 Tlr9 Cascade 4
## Vegfr2 Mediated Vascular Permeability 1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 1
## Myd88 Independent Tlr4 Cascade 4
## Dap12 Signaling 1
## Downregulation Of Erbb2 Signaling 1
## Downstream Signal Transduction 1
## G1 S Specific Transcription 1
## Interleukin 1 Family Signaling 6
## Ripk1 Mediated Regulated Necrosis 1
## Signaling By Ptk6 2
## Signaling By Csf3 G Csf 1
## Tnfr1 Induced Nfkappab Signaling Pathway 1
## Egfr Downregulation 1
## Fgfr1 Mutant Receptor Activation 1
## Runx2 Regulates Bone Development 1
## Transcriptional Regulation Of Pluripotent Stem Cells 1
## Regulation Of Mecp2 Expression And Activity 1
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 1
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 1
## Cargo Concentration In The Er 1
## Plasma Lipoprotein Clearance 1
## Sialic Acid Metabolism 1
## Signaling By Notch2 1
## Assembly Of Collagen Fibrils And Other Multimeric Structures 2
## Gpvi Mediated Activation Cascade 1
## Nuclear Events Kinase And Transcription Factor Activation 2
## Regulation Of Tnfr1 Signaling 1
## Signaling By Interleukins 22
## Cytosolic Sensors Of Pathogen Associated Dna 2
## Interleukin 7 Signaling 1
## Nuclear Pore Complex Npc Disassembly 1
## Ca Dependent Events 1
## Metalloprotease Dubs 1
## Ovarian Tumor Domain Proteases 1
## Peptide Ligand Binding Receptors 8
## Regulation Of Tp53 Expression And Degradation 1
## Rhoh Gtpase Cycle 1
## Senescence Associated Secretory Phenotype Sasp 4
## Signaling By Fgfr1 In Disease 1
## Toll Like Receptor Cascades 6
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 1
## Association Of Tric Cct With Target Proteins During Biosynthesis 1
## Complement Cascade 4
## Generation Of Second Messenger Molecules 1
## Dag And Ip3 Signaling 1
## Interferon Gamma Signaling 3
## Transcriptional Regulation By Ventx 1
## Beta Defensins 1
## Circadian Clock 2
## Rhob Gtpase Cycle 2
## Rhof Gtpase Cycle 1
## Sumoylation Of Transcription Cofactors 1
## Tnf Signaling 1
## Tp53 Regulates Transcription Of Cell Death Genes 1
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 1
## Rhoc Gtpase Cycle 2
## Rhog Gtpase Cycle 2
## Heme Signaling 1
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 1
## Irs Mediated Signalling 1
## Retrograde Transport At The Trans Golgi Network 1
## Signaling By Notch3 1
## Toll Like Receptor Tlr1 Tlr2 Cascade 3
## Tp53 Regulates Transcription Of Cell Cycle Genes 1
## Antigen Processing Cross Presentation 3
## Apoptotic Execution Phase 1
## Cargo Recognition For Clathrin Mediated Endocytosis 3
## Defensins 1
## Rhod Gtpase Cycle 1
## Signaling By Egfr 1
## Signaling By Erbb2 1
## Fceri Mediated Mapk Activation 2
## G Protein Mediated Events 1
## Insulin Receptor Signalling Cascade 1
## Intrinsic Pathway For Apoptosis 1
## Nuclear Envelope Breakdown 1
## Rhoj Gtpase Cycle 1
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 1
## Transcriptional Activation Of Mitochondrial Biogenesis 1
## Ca2 Pathway 1
## Collagen Formation 2
## Eph Ephrin Signaling 2
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 6
## Nrage Signals Death Through Jnk 1
## O Linked Glycosylation Of Mucins 1
## Rac2 Gtpase Cycle 2
## Rhoq Gtpase Cycle 1
## Signaling By Erbb4 1
## Signaling By Pdgf 1
## Tp53 Regulates Transcription Of Dna Repair Genes 1
## Transcriptional Regulation Of Granulopoiesis 2
## Unfolded Protein Response Upr 2
## Asymmetric Localization Of Pcp Proteins 1
## Class B 2 Secretin Family Receptors 2
## Copi Mediated Anterograde Transport 2
## Copii Mediated Vesicle Transport 1
## Diseases Associated With O Glycosylation Of Proteins 1
## Dna Methylation 1
## Fcgr3a Mediated Il10 Synthesis 2
## Interleukin 1 Signaling 2
## Ncam Signaling For Neurite Out Growth 1
## P75 Ntr Receptor Mediated Signalling 2
## Rac3 Gtpase Cycle 2
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 3
## Signaling By Fgfr In Disease 1
## Synthesis Of Substrates In N Glycan Biosythesis 1
## Transcriptional Regulation By Mecp2 1
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1
## Apc C Mediated Degradation Of Cell Cycle Proteins 1
## Aurka Activation By Tpx2 1
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1
## Cell Death Signalling Via Nrage Nrif And Nade 1
## Clathrin Mediated Endocytosis 3
## Condensation Of Prophase Chromosomes 1
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 1
## Death Receptor Signalling 3
## Degradation Of The Extracellular Matrix 3
## Ecm Proteoglycans 1
## Fceri Mediated Ca 2 Mobilization 1
## G Alpha 12 13 Signalling Events 1
## Initial Triggering Of Complement 1
## Integrin Cell Surface Interactions 1
## Interferon Alpha Beta Signaling 1
## L1cam Interactions 2
## Nuclear Envelope Ne Reassembly 1
## Plasma Lipoprotein Assembly Remodeling And Clearance 1
## Potential Therapeutics For Sars 1
## Prc2 Methylates Histones And Dna 1
## Programmed Cell Death 6
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1
## Regulation Of Plk1 Activity At G2 M Transition 1
## Regulation Of Runx2 Expression And Activity 1
## Rmts Methylate Histone Arginines 1
## Signaling By Insulin Receptor 1
## Signaling By Met 1
## Signaling By Ntrks 3
## Signaling By Tgf Beta Receptor Complex 1
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1
## Transcriptional Regulation By Runx2 2
## 2 Ltr Circle Formation 0
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 0
## Abacavir Metabolism 0
## Abacavir Transmembrane Transport 0
## Abacavir Transport And Metabolism 0
## Abc Family Proteins Mediated Transport 0
## Abc Transporter Disorders 0
## Abc Transporters In Lipid Homeostasis 0
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 0
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 0
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 0
## Acetylcholine Binding And Downstream Events 0
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 0
## Acetylcholine Neurotransmitter Release Cycle 0
## Acetylcholine Regulates Insulin Secretion 0
## Acrosome Reaction And Sperm Oocyte Membrane Binding 0
## Activated Notch1 Transmits Signal To The Nucleus 0
## Activated Ntrk2 Signals Through Cdk5 0
## Activated Ntrk2 Signals Through Frs2 And Frs3 0
## Activated Ntrk2 Signals Through Fyn 0
## Activated Ntrk2 Signals Through Pi3k 0
## Activated Ntrk2 Signals Through Ras 0
## Activated Ntrk3 Signals Through Pi3k 0
## Activated Ntrk3 Signals Through Ras 0
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 0
## Activated Tak1 Mediates P38 Mapk Activation 0
## Activation Of Ampk Downstream Of Nmdars 0
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 0
## Activation Of Atr In Response To Replication Stress 0
## Activation Of Bad And Translocation To Mitochondria 0
## Activation Of Bh3 Only Proteins 0
## Activation Of Caspases Through Apoptosome Mediated Cleavage 0
## Activation Of Gene Expression By Srebf Srebp 0
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 0
## Activation Of Kainate Receptors Upon Glutamate Binding 0
## Activation Of Nmda Receptors And Postsynaptic Events 1
## Activation Of Noxa And Translocation To Mitochondria 0
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 0
## Activation Of Puma And Translocation To Mitochondria 0
## Activation Of Rac1 0
## Activation Of Rac1 Downstream Of Nmdars 0
## Activation Of Ras In B Cells 0
## Activation Of Smo 0
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 0
## Activation Of The Phototransduction Cascade 0
## Activation Of The Pre Replicative Complex 0
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 0
## Activation Of Trka Receptors 0
## Acyl Chain Remodeling Of Cl 0
## Acyl Chain Remodeling Of Dag And Tag 0
## Acyl Chain Remodelling Of Pc 0
## Acyl Chain Remodelling Of Pe 0
## Acyl Chain Remodelling Of Pg 0
## Acyl Chain Remodelling Of Pi 0
## Acyl Chain Remodelling Of Ps 0
## Adaptive Immune System 12
## Adenylate Cyclase Activating Pathway 0
## Adenylate Cyclase Inhibitory Pathway 0
## Adherens Junctions Interactions 0
## Adora2b Mediated Anti Inflammatory Cytokines Production 2
## Adp Signalling Through P2y Purinoceptor 1 0
## Adp Signalling Through P2y Purinoceptor 12 0
## Adrenaline Noradrenaline Inhibits Insulin Secretion 0
## Adrenoceptors 0
## Aflatoxin Activation And Detoxification 0
## Aggrephagy 0
## Akt Phosphorylates Targets In The Cytosol 0
## Alpha Defensins 0
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 0
## Alpha Oxidation Of Phytanate 0
## Alpha Protein Kinase 1 Signaling Pathway 0
## Alternative Complement Activation 0
## Amine Ligand Binding Receptors 0
## Amino Acid Conjugation 0
## Amino Acid Transport Across The Plasma Membrane 0
## Amino Acids Regulate Mtorc1 0
## Ampk Inhibits Chrebp Transcriptional Activation Activity 0
## Amyloid Fiber Formation 1
## Anchoring Fibril Formation 0
## Anchoring Of The Basal Body To The Plasma Membrane 1
## Androgen Biosynthesis 0
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 3
## Antigen Processing Ubiquitination Proteasome Degradation 0
## Antimicrobial Peptides 1
## Antiviral Mechanism By Ifn Stimulated Genes 0
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 0
## Apc Cdc20 Mediated Degradation Of Nek2a 0
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 0
## Apobec3g Mediated Resistance To Hiv 1 Infection 0
## Apoptosis 2
## Apoptotic Cleavage Of Cell Adhesion Proteins 0
## Apoptotic Cleavage Of Cellular Proteins 0
## Apoptotic Factor Mediated Response 0
## Aquaporin Mediated Transport 0
## Arachidonate Production From Dag 0
## Arachidonic Acid Metabolism 0
## Arms Mediated Activation 0
## Aryl Hydrocarbon Receptor Signalling 0
## Asparagine N Linked Glycosylation 3
## Aspartate And Asparagine Metabolism 0
## Assembly And Cell Surface Presentation Of Nmda Receptors 0
## Assembly Of Active Lpl And Lipc Lipase Complexes 0
## Assembly Of The Hiv Virion 0
## Assembly Of The Orc Complex At The Origin Of Replication 0
## Assembly Of The Pre Replicative Complex 0
## Atf6 Atf6 Alpha Activates Chaperone Genes 0
## Atf6 Atf6 Alpha Activates Chaperones 0
## Attachment And Entry 0
## Attachment Of Gpi Anchor To Upar 0
## Attenuation Phase 0
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 0
## Autophagy 0
## B Wich Complex Positively Regulates Rrna Expression 0
## Base Excision Repair 0
## Base Excision Repair Ap Site Formation 0
## Basigin Interactions 0
## Bbsome Mediated Cargo Targeting To Cilium 0
## Beta Catenin Independent Wnt Signaling 1
## Beta Catenin Phosphorylation Cascade 0
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 0
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 0
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 0
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 0
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 0
## Beta Oxidation Of Pristanoyl Coa 0
## Beta Oxidation Of Very Long Chain Fatty Acids 0
## Bicarbonate Transporters 0
## Bile Acid And Bile Salt Metabolism 0
## Binding And Uptake Of Ligands By Scavenger Receptors 0
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 0
## Biological Oxidations 0
## Biosynthesis Of Epa Derived Spms 0
## Biosynthesis Of Maresin Like Spms 0
## Biosynthesis Of Maresins 0
## Biosynthesis Of Specialized Proresolving Mediators Spms 0
## Biotin Transport And Metabolism 0
## Blood Group Systems Biosynthesis 0
## Branched Chain Amino Acid Catabolism 0
## Budding And Maturation Of Hiv Virion 0
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 0
## Butyrophilin Btn Family Interactions 0
## C Type Lectin Receptors Clrs 2
## Ca2 Activated K Channels 0
## Calcineurin Activates Nfat 0
## Calcitonin Like Ligand Receptors 0
## Calnexin Calreticulin Cycle 0
## Carboxyterminal Post Translational Modifications Of Tubulin 0
## Cardiac Conduction 1
## Cargo Trafficking To The Periciliary Membrane 0
## Carnitine Metabolism 0
## Caspase Activation Via Death Receptors In The Presence Of Ligand 0
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 0
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 0
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 0
## Cation Coupled Chloride Cotransporters 0
## Cd209 Dc Sign Signaling 0
## Cd22 Mediated Bcr Regulation 0
## Cdc42 Gtpase Cycle 2
## Cdc6 Association With The Orc Origin Complex 0
## Cell Cell Communication 0
## Cell Cell Junction Organization 0
## Cell Cycle 1
## Cell Cycle Checkpoints 1
## Cell Cycle Mitotic 1
## Cell Extracellular Matrix Interactions 0
## Cell Junction Organization 0
## Cell Surface Interactions At The Vascular Wall 3
## Cellular Hexose Transport 0
## Cellular Response To Chemical Stress 2
## Cellular Response To Heat Stress 0
## Cellular Response To Hypoxia 0
## Cellular Response To Starvation 0
## Cellular Responses To External Stimuli 6
## Cellular Senescence 4
## Cgmp Effects 0
## Chaperone Mediated Autophagy 0
## Chl1 Interactions 0
## Cholesterol Biosynthesis 0
## Choline Catabolism 0
## Chondroitin Sulfate Biosynthesis 0
## Chondroitin Sulfate Dermatan Sulfate Metabolism 0
## Chrebp Activates Metabolic Gene Expression 0
## Chromatin Modifying Enzymes 1
## Chromosome Maintenance 0
## Chylomicron Assembly 0
## Chylomicron Clearance 0
## Chylomicron Remodeling 0
## Cilium Assembly 1
## Citric Acid Cycle Tca Cycle 0
## Class A 1 Rhodopsin Like Receptors 8
## Class C 3 Metabotropic Glutamate Pheromone Receptors 0
## Class I Mhc Mediated Antigen Processing Presentation 3
## Class I Peroxisomal Membrane Protein Import 0
## Clec7a Dectin 1 Induces Nfat Activation 0
## Clec7a Dectin 1 Signaling 1
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 0
## Coenzyme A Biosynthesis 0
## Cohesin Loading Onto Chromatin 0
## Collagen Biosynthesis And Modifying Enzymes 0
## Collagen Chain Trimerization 0
## Common Pathway Of Fibrin Clot Formation 0
## Competing Endogenous Rnas Cernas Regulate Pten Translation 0
## Complex I Biogenesis 0
## Conjugation Of Benzoate With Glycine 0
## Constitutive Signaling By Overexpressed Erbb2 0
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 0
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 0
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 0
## Copi Dependent Golgi To Er Retrograde Traffic 0
## Copi Independent Golgi To Er Retrograde Traffic 0
## Creatine Metabolism 0
## Creation Of C4 And C2 Activators 0
## Creb3 Factors Activate Genes 0
## Cristae Formation 0
## Crmps In Sema3a Signaling 0
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 0
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 0
## Crosslinking Of Collagen Fibrils 0
## Cs Ds Degradation 0
## Cyclin A Cdk2 Associated Events At S Phase Entry 0
## Cyclin D Associated Events In G1 0
## Cyp2e1 Reactions 0
## Cytochrome C Mediated Apoptotic Response 0
## Cytochrome P450 Arranged By Substrate Type 0
## Cytokine Signaling In Immune System 29
## Cytoprotection By Hmox1 2
## Cytosolic Iron Sulfur Cluster Assembly 0
## Cytosolic Sulfonation Of Small Molecules 0
## Cytosolic Trna Aminoacylation 0
## Darpp 32 Events 0
## Dcc Mediated Attractive Signaling 0
## Deactivation Of The Beta Catenin Transactivating Complex 0
## Deadenylation Dependent Mrna Decay 0
## Deadenylation Of Mrna 0
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 0
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 0
## Defective B4galt7 Causes Eds Progeroid Type 0
## Defective Cftr Causes Cystic Fibrosis 0
## Defective Chst14 Causes Eds Musculocontractural Type 0
## Defective Chst3 Causes Sedcjd 0
## Defective Chst6 Causes Mcdc1 0
## Defective Chsy1 Causes Tpbs 0
## Defective Csf2rb Causes Smdp5 0
## Defective Ext2 Causes Exostoses 2 0
## Defective F9 Activation 0
## Defective Factor Ix Causes Hemophilia B 0
## Defective Factor Viii Causes Hemophilia A 0
## Defective Lfng Causes Scdo3 0
## Defective Ripk1 Mediated Regulated Necrosis 0
## Defective St3gal3 Causes Mct12 And Eiee15 0
## Defects In Biotin Btn Metabolism 0
## Defects In Cobalamin B12 Metabolism 0
## Defects In Vitamin And Cofactor Metabolism 0
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 0
## Degradation Of Axin 0
## Degradation Of Beta Catenin By The Destruction Complex 0
## Degradation Of Cysteine And Homocysteine 0
## Degradation Of Dvl 0
## Degradation Of Gli1 By The Proteasome 0
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 0
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 0
## Dermatan Sulfate Biosynthesis 0
## Detoxification Of Reactive Oxygen Species 0
## Deubiquitination 4
## Developmental Biology 5
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 0
## Digestion 0
## Digestion And Absorption 0
## Digestion Of Dietary Carbohydrate 0
## Digestion Of Dietary Lipid 0
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 0
## Diseases Associated With Glycosaminoglycan Metabolism 0
## Diseases Associated With Glycosylation Precursor Biosynthesis 0
## Diseases Associated With N Glycosylation Of Proteins 0
## Diseases Associated With Surfactant Metabolism 0
## Diseases Of Base Excision Repair 0
## Diseases Of Carbohydrate Metabolism 0
## Diseases Of Dna Repair 0
## Diseases Of Glycosylation 1
## Diseases Of Metabolism 1
## Diseases Of Mismatch Repair Mmr 0
## Diseases Of Mitotic Cell Cycle 0
## Diseases Of Programmed Cell Death 1
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 6
## Disinhibition Of Snare Formation 0
## Disorders Of Transmembrane Transporters 0
## Displacement Of Dna Glycosylase By Apex1 0
## Dna Damage Bypass 0
## Dna Damage Recognition In Gg Ner 0
## Dna Damage Reversal 0
## Dna Damage Telomere Stress Induced Senescence 0
## Dna Double Strand Break Repair 0
## Dna Double Strand Break Response 0
## Dna Repair 0
## Dna Replication 0
## Dna Replication Initiation 0
## Dna Replication Pre Initiation 0
## Dna Strand Elongation 0
## Dopamine Neurotransmitter Release Cycle 0
## Dopamine Receptors 0
## Downregulation Of Erbb2 Erbb3 Signaling 0
## Downregulation Of Erbb4 Signaling 0
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 0
## Downregulation Of Tgf Beta Receptor Signaling 0
## Downstream Signaling Events Of B Cell Receptor Bcr 0
## Downstream Signaling Of Activated Fgfr1 0
## Downstream Signaling Of Activated Fgfr2 0
## Downstream Signaling Of Activated Fgfr3 0
## Downstream Signaling Of Activated Fgfr4 0
## Dscam Interactions 0
## Dual Incision In Gg Ner 0
## Dual Incision In Tc Ner 0
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 0
## Early Phase Of Hiv Life Cycle 0
## Effects Of Pip2 Hydrolysis 0
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 0
## Eicosanoid Ligand Binding Receptors 0
## Eicosanoids 0
## Elastic Fibre Formation 0
## Electric Transmission Across Gap Junctions 0
## Elevation Of Cytosolic Ca2 Levels 0
## Endogenous Sterols 0
## Endosomal Sorting Complex Required For Transport Escrt 0
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 0
## Enos Activation 0
## Epha Mediated Growth Cone Collapse 0
## Ephb Mediated Forward Signaling 0
## Ephrin Signaling 0
## Epigenetic Regulation Of Gene Expression 1
## Er Quality Control Compartment Erqc 0
## Er To Golgi Anterograde Transport 2
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 0
## Erk Mapk Targets 0
## Erks Are Inactivated 0
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 0
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 0
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 0
## Erythropoietin Activates Phospholipase C Gamma Plcg 0
## Erythropoietin Activates Ras 0
## Erythropoietin Activates Stat5 0
## Esr Mediated Signaling 5
## Establishment Of Sister Chromatid Cohesion 0
## Estrogen Biosynthesis 0
## Estrogen Dependent Gene Expression 1
## Estrogen Stimulated Signaling Through Prkcz 0
## Ethanol Oxidation 0
## Eukaryotic Translation Elongation 0
## Eukaryotic Translation Initiation 0
## Export Of Viral Ribonucleoproteins From Nucleus 0
## Extension Of Telomeres 0
## Extracellular Matrix Organization 6
## Extrinsic Pathway Of Fibrin Clot Formation 0
## Factors Involved In Megakaryocyte Development And Platelet Production 0
## Fanconi Anemia Pathway 0
## Fasl Cd95l Signaling 0
## Fatty Acid Metabolism 0
## Fatty Acids 0
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 0
## Fatty Acyl Coa Biosynthesis 0
## Fbxw7 Mutants And Notch1 In Cancer 0
## Fc Epsilon Receptor Fceri Signaling 2
## Fceri Mediated Nf Kb Activation 0
## Fcgamma Receptor Fcgr Dependent Phagocytosis 1
## Fcgr Activation 0
## Fertilization 0
## Fgfr1 Ligand Binding And Activation 0
## Fgfr1b Ligand Binding And Activation 0
## Fgfr1c Ligand Binding And Activation 0
## Fgfr2 Alternative Splicing 0
## Fgfr2 Ligand Binding And Activation 0
## Fgfr2 Mutant Receptor Activation 0
## Fgfr2b Ligand Binding And Activation 0
## Fgfr2c Ligand Binding And Activation 0
## Fgfr3 Ligand Binding And Activation 0
## Fgfr3b Ligand Binding And Activation 0
## Fgfrl1 Modulation Of Fgfr1 Signaling 0
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 0
## Flt3 Signaling 0
## Flt3 Signaling By Cbl Mutants 0
## Flt3 Signaling In Disease 0
## Flt3 Signaling Through Src Family Kinases 0
## Folding Of Actin By Cct Tric 0
## Formation Of Apoptosome 0
## Formation Of Atp By Chemiosmotic Coupling 0
## Formation Of Fibrin Clot Clotting Cascade 0
## Formation Of Incision Complex In Gg Ner 0
## Formation Of Rna Pol Ii Elongation Complex 0
## Formation Of Senescence Associated Heterochromatin Foci Sahf 0
## Formation Of Tc Ner Pre Incision Complex 0
## Formation Of The Beta Catenin Tcf Transactivating Complex 0
## Formation Of The Cornified Envelope 0
## Formation Of The Early Elongation Complex 0
## Formation Of Tubulin Folding Intermediates By Cct Tric 0
## Formation Of Xylulose 5 Phosphate 0
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 0
## Foxo Mediated Transcription 0
## Foxo Mediated Transcription Of Cell Cycle Genes 0
## Foxo Mediated Transcription Of Cell Death Genes 0
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 0
## Free Fatty Acid Receptors 0
## Free Fatty Acids Regulate Insulin Secretion 0
## Frs Mediated Fgfr1 Signaling 0
## Frs Mediated Fgfr2 Signaling 0
## Frs Mediated Fgfr3 Signaling 0
## Frs Mediated Fgfr4 Signaling 0
## Fructose Catabolism 0
## Fructose Metabolism 0
## G Alpha I Signalling Events 8
## G Alpha Q Signalling Events 3
## G Alpha S Signalling Events 0
## G Alpha Z Signalling Events 0
## G Beta Gamma Signalling Through Cdc42 0
## G Beta Gamma Signalling Through Pi3kgamma 0
## G Protein Activation 0
## G Protein Beta Gamma Signalling 0
## G1 S Dna Damage Checkpoints 0
## G2 M Checkpoints 1
## G2 M Dna Damage Checkpoint 1
## G2 Phase 0
## Gaba B Receptor Activation 0
## Gaba Receptor Activation 0
## Gaba Synthesis Release Reuptake And Degradation 0
## Galactose Catabolism 0
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 0
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 0
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 0
## Gap Junction Assembly 0
## Gap Junction Degradation 0
## Gap Junction Trafficking And Regulation 0
## Gdp Fucose Biosynthesis 0
## Gene Silencing By Rna 0
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 0
## Global Genome Nucleotide Excision Repair Gg Ner 0
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 0
## Glucagon Signaling In Metabolic Regulation 0
## Glucagon Type Ligand Receptors 0
## Glucocorticoid Biosynthesis 0
## Gluconeogenesis 0
## Glucose Metabolism 0
## Glucuronidation 0
## Glutamate And Glutamine Metabolism 0
## Glutamate Neurotransmitter Release Cycle 0
## Glutathione Conjugation 0
## Glutathione Synthesis And Recycling 0
## Glycerophospholipid Biosynthesis 0
## Glycerophospholipid Catabolism 0
## Glycogen Breakdown Glycogenolysis 0
## Glycogen Metabolism 0
## Glycogen Storage Diseases 0
## Glycogen Synthesis 0
## Glycolysis 0
## Glycosaminoglycan Metabolism 0
## Glycosphingolipid Metabolism 0
## Glyoxylate Metabolism And Glycine Degradation 0
## Golgi Associated Vesicle Biogenesis 0
## Golgi To Er Retrograde Transport 0
## Gp1b Ix V Activation Signalling 0
## Gpcr Ligand Binding 10
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 0
## Grb7 Events In Erbb2 Signaling 0
## Hats Acetylate Histones 0
## Hcmv Early Events 2
## Hcmv Infection 2
## Hcmv Late Events 0
## Hdacs Deacetylate Histones 0
## Hdl Assembly 0
## Hdl Clearance 0
## Hdl Remodeling 0
## Hdms Demethylate Histones 0
## Hdr Through Homologous Recombination Hrr 0
## Hdr Through Mmej Alt Nhej 0
## Hdr Through Single Strand Annealing Ssa 0
## Hedgehog Ligand Biogenesis 0
## Hedgehog Off State 0
## Hedgehog On State 0
## Heme Biosynthesis 0
## Heme Degradation 0
## Hemostasis 6
## Heparan Sulfate Heparin Hs Gag Metabolism 0
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 0
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 0
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 0
## Histidine Catabolism 0
## Hiv Elongation Arrest And Recovery 0
## Hiv Infection 0
## Hiv Life Cycle 0
## Hiv Transcription Elongation 0
## Hiv Transcription Initiation 0
## Homologous Dna Pairing And Strand Exchange 0
## Homology Directed Repair 0
## Hormone Ligand Binding Receptors 0
## Host Interactions Of Hiv Factors 0
## Hs Gag Biosynthesis 0
## Hs Gag Degradation 0
## Hsf1 Activation 0
## Hsf1 Dependent Transactivation 0
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 0
## Hur Elavl1 Binds And Stabilizes Mrna 0
## Hyaluronan Biosynthesis And Export 0
## Hyaluronan Metabolism 0
## Hyaluronan Uptake And Degradation 0
## Hydrolysis Of Lpc 0
## Ikba Variant Leads To Eda Id 0
## Il 6 Type Cytokine Receptor Ligand Interactions 0
## Inactivation Of Cdc42 And Rac1 0
## Incretin Synthesis Secretion And Inactivation 0
## Infection With Mycobacterium Tuberculosis 0
## Infectious Disease 11
## Influenza Infection 0
## Inhibition Of Dna Recombination At Telomere 0
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 0
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 0
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 0
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 0
## Innate Immune System 27
## Inositol Phosphate Metabolism 0
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 0
## Insulin Processing 0
## Insulin Receptor Recycling 0
## Integration Of Energy Metabolism 0
## Integration Of Provirus 0
## Integrin Signaling 0
## Interaction Between L1 And Ankyrins 0
## Interaction With Cumulus Cells And The Zona Pellucida 0
## Interactions Of Rev With Host Cellular Proteins 0
## Interactions Of Vpr With Host Cellular Proteins 0
## Interconversion Of Nucleotide Di And Triphosphates 0
## Interferon Signaling 3
## Interleukin 2 Signaling 0
## Interleukin 36 Pathway 0
## Intestinal Absorption 0
## Intra Golgi And Retrograde Golgi To Er Traffic 1
## Intra Golgi Traffic 0
## Intracellular Signaling By Second Messengers 6
## Intraflagellar Transport 0
## Intrinsic Pathway Of Fibrin Clot Formation 0
## Inwardly Rectifying K Channels 0
## Ion Channel Transport 1
## Ion Homeostasis 0
## Ion Transport By P Type Atpases 0
## Ionotropic Activity Of Kainate Receptors 0
## Irak1 Recruits Ikk Complex 0
## Irak2 Mediated Activation Of Tak1 Complex 0
## Ire1alpha Activates Chaperones 0
## Irf3 Mediated Activation Of Type 1 Ifn 0
## Iron Uptake And Transport 0
## Irs Activation 0
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 0
## Josephin Domain Dubs 0
## Keratan Sulfate Biosynthesis 0
## Keratan Sulfate Degradation 0
## Keratan Sulfate Keratin Metabolism 0
## Keratinization 0
## Ketone Body Metabolism 0
## Kinesins 0
## Ksrp Khsrp Binds And Destabilizes Mrna 0
## Lagging Strand Synthesis 0
## Laminin Interactions 0
## Late Endosomal Microautophagy 0
## Lectin Pathway Of Complement Activation 0
## Leishmania Infection 9
## Leukotriene Receptors 0
## Lgi Adam Interactions 0
## Ligand Receptor Interactions 0
## Linoleic Acid La Metabolism 0
## Lipid Particle Organization 0
## Lipophagy 0
## Listeria Monocytogenes Entry Into Host Cells 0
## Long Term Potentiation 0
## Loss Of Function Of Mecp2 In Rett Syndrome 0
## Loss Of Function Of Smad2 3 In Cancer 0
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 0
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 0
## Ltc4 Cysltr Mediated Il4 Production 0
## Lysine Catabolism 0
## Lysosome Vesicle Biogenesis 0
## Lysosphingolipid And Lpa Receptors 0
## M Phase 1
## Map2k And Mapk Activation 0
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 0
## Mapk Family Signaling Cascades 4
## Mapk6 Mapk4 Signaling 1
## Maturation Of Nucleoprotein 0
## Maturation Of Protein 3a 0
## Maturation Of Sars Cov 1 Spike Protein 0
## Maturation Of Sars Cov 2 Spike Protein 0
## Meiosis 0
## Meiotic Recombination 0
## Meiotic Synapsis 0
## Melanin Biosynthesis 0
## Membrane Trafficking 5
## Met Activates Pi3k Akt Signaling 0
## Met Activates Ptk2 Signaling 0
## Met Activates Ptpn11 0
## Met Activates Rap1 And Rac1 0
## Met Activates Ras Signaling 0
## Met Interacts With Tns Proteins 0
## Met Promotes Cell Motility 0
## Met Receptor Activation 0
## Met Receptor Recycling 0
## Metabolic Disorders Of Biological Oxidation Enzymes 0
## Metabolism Of Amine Derived Hormones 0
## Metabolism Of Amino Acids And Derivatives 0
## Metabolism Of Angiotensinogen To Angiotensins 0
## Metabolism Of Carbohydrates 0
## Metabolism Of Cofactors 0
## Metabolism Of Fat Soluble Vitamins 0
## Metabolism Of Folate And Pterines 0
## Metabolism Of Ingested Semet Sec Mesec Into H2se 0
## Metabolism Of Lipids 0
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 0
## Metabolism Of Nucleotides 0
## Metabolism Of Polyamines 0
## Metabolism Of Porphyrins 0
## Metabolism Of Rna 0
## Metabolism Of Steroid Hormones 0
## Metabolism Of Steroids 0
## Metabolism Of Vitamins And Cofactors 0
## Metabolism Of Water Soluble Vitamins And Cofactors 0
## Metal Ion Slc Transporters 0
## Metal Sequestration By Antimicrobial Proteins 0
## Metallothioneins Bind Metals 0
## Methionine Salvage Pathway 0
## Methylation 0
## Mhc Class Ii Antigen Presentation 1
## Microrna Mirna Biogenesis 0
## Mineralocorticoid Biosynthesis 0
## Miro Gtpase Cycle 0
## Miscellaneous Substrates 0
## Miscellaneous Transport And Binding Events 0
## Mismatch Repair 0
## Mitochondrial Biogenesis 1
## Mitochondrial Calcium Ion Transport 0
## Mitochondrial Fatty Acid Beta Oxidation 0
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 0
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 0
## Mitochondrial Iron Sulfur Cluster Biogenesis 0
## Mitochondrial Protein Import 0
## Mitochondrial Translation 0
## Mitochondrial Trna Aminoacylation 0
## Mitochondrial Uncoupling 0
## Mitophagy 0
## Mitotic G1 Phase And G1 S Transition 1
## Mitotic G2 G2 M Phases 1
## Mitotic Metaphase And Anaphase 1
## Mitotic Prometaphase 1
## Mitotic Prophase 1
## Mitotic Spindle Checkpoint 0
## Mitotic Telophase Cytokinesis 0
## Modulation By Mtb Of Host Immune System 0
## Molecules Associated With Elastic Fibres 0
## Molybdenum Cofactor Biosynthesis 0
## Mrna Capping 0
## Mrna Decay By 3 To 5 Exoribonuclease 0
## Mrna Decay By 5 To 3 Exoribonuclease 0
## Mrna Editing 0
## Mrna Editing C To U Conversion 0
## Mrna Splicing 0
## Mrna Splicing Minor Pathway 0
## Mtor Signalling 0
## Mtorc1 Mediated Signalling 0
## Mucopolysaccharidoses 0
## Multifunctional Anion Exchangers 0
## Muscarinic Acetylcholine Receptors 0
## Muscle Contraction 1
## Myoclonic Epilepsy Of Lafora 0
## Myogenesis 0
## N Glycan Antennae Elongation 0
## N Glycan Antennae Elongation In The Medial Trans Golgi 0
## N Glycan Trimming And Elongation In The Cis Golgi 0
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 0
## Na Cl Dependent Neurotransmitter Transporters 0
## Nade Modulates Death Signalling 0
## Ncam1 Interactions 0
## Nectin Necl Trans Heterodimerization 0
## Neddylation 0
## Nef And Signal Transduction 0
## Nef Mediated Cd4 Down Regulation 0
## Nef Mediated Cd8 Down Regulation 0
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 0
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 0
## Negative Epigenetic Regulation Of Rrna Expression 0
## Negative Feedback Regulation Of Mapk Pathway 0
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 0
## Negative Regulation Of Fgfr1 Signaling 0
## Negative Regulation Of Fgfr2 Signaling 0
## Negative Regulation Of Fgfr3 Signaling 0
## Negative Regulation Of Fgfr4 Signaling 0
## Negative Regulation Of Flt3 0
## Negative Regulation Of Mapk Pathway 0
## Negative Regulation Of Met Activity 0
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 0
## Negative Regulation Of Notch4 Signaling 0
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 0
## Negative Regulators Of Ddx58 Ifih1 Signaling 0
## Nephrin Family Interactions 0
## Nervous System Development 4
## Netrin 1 Signaling 0
## Netrin Mediated Repulsion Signals 0
## Neurexins And Neuroligins 0
## Neurofascin Interactions 0
## Neuronal System 2
## Neurotoxicity Of Clostridium Toxins 0
## Neurotransmitter Clearance 0
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 1
## Neurotransmitter Release Cycle 0
## Neutrophil Degranulation 11
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 0
## Nf Kb Is Activated And Signals Survival 0
## Ngf Independant Trka Activation 0
## Nicotinamide Salvaging 0
## Nicotinate Metabolism 0
## Nitric Oxide Stimulates Guanylate Cyclase 0
## Non Integrin Membrane Ecm Interactions 0
## Noncanonical Activation Of Notch3 0
## Nonhomologous End Joining Nhej 0
## Nonsense Mediated Decay Nmd 0
## Norepinephrine Neurotransmitter Release Cycle 0
## Nostrin Mediated Enos Trafficking 0
## Notch Hlh Transcription Pathway 0
## Notch1 Intracellular Domain Regulates Transcription 0
## Notch2 Activation And Transmission Of Signal To The Nucleus 0
## Notch3 Intracellular Domain Regulates Transcription 0
## Notch4 Activation And Transmission Of Signal To The Nucleus 0
## Notch4 Intracellular Domain Regulates Transcription 0
## Nr1h2 And Nr1h3 Mediated Signaling 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 0
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 0
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 0
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 0
## Nrcam Interactions 0
## Nrif Signals Cell Death From The Nucleus 0
## Ns1 Mediated Effects On Host Pathways 0
## Ntrk2 Activates Rac1 0
## Nuclear Import Of Rev Protein 0
## Nuclear Receptor Transcription Pathway 0
## Nuclear Signaling By Erbb4 0
## Nucleobase Biosynthesis 0
## Nucleobase Catabolism 0
## Nucleotide Excision Repair 0
## Nucleotide Like Purinergic Receptors 0
## Nucleotide Salvage 0
## O Glycosylation Of Tsr Domain Containing Proteins 0
## O Linked Glycosylation 1
## Oas Antiviral Response 0
## Olfactory Signaling Pathway 0
## Oncogene Induced Senescence 0
## Oncogenic Mapk Signaling 0
## Opioid Signalling 1
## Opsins 0
## Orc1 Removal From Chromatin 0
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 0
## Organelle Biogenesis And Maintenance 2
## Organic Anion Transport 0
## Organic Anion Transporters 0
## Organic Cation Anion Zwitterion Transport 0
## Organic Cation Transport 0
## Other Interleukin Signaling 0
## Other Semaphorin Interactions 0
## Oxidative Stress Induced Senescence 1
## P130cas Linkage To Mapk Signaling For Integrins 0
## P2y Receptors 0
## P38mapk Events 0
## P75ntr Negatively Regulates Cell Cycle Via Sc1 0
## P75ntr Recruits Signalling Complexes 0
## P75ntr Signals Via Nf Kb 0
## Parasite Infection 1
## Passive Transport By Aquaporins 0
## Pcna Dependent Long Patch Base Excision Repair 0
## Pcp Ce Pathway 1
## Pecam1 Interactions 0
## Pentose Phosphate Pathway 0
## Peptide Hormone Biosynthesis 0
## Peptide Hormone Metabolism 0
## Peroxisomal Lipid Metabolism 0
## Peroxisomal Protein Import 0
## Pexophagy 0
## Phase 0 Rapid Depolarisation 0
## Phase 1 Inactivation Of Fast Na Channels 0
## Phase 2 Plateau Phase 0
## Phase 3 Rapid Repolarisation 0
## Phase I Functionalization Of Compounds 0
## Phase Ii Conjugation Of Compounds 0
## Phenylalanine And Tyrosine Metabolism 0
## Phenylalanine Metabolism 0
## Phosphate Bond Hydrolysis By Ntpdase Proteins 0
## Phosphate Bond Hydrolysis By Nudt Proteins 0
## Phospholipase C Mediated Cascade Fgfr2 0
## Phospholipase C Mediated Cascade Fgfr4 0
## Phospholipid Metabolism 0
## Physiological Factors 0
## Pi 3k Cascade Fgfr1 0
## Pi 3k Cascade Fgfr2 0
## Pi 3k Cascade Fgfr3 0
## Pi 3k Cascade Fgfr4 0
## Pi Metabolism 0
## Pi3k Akt Activation 0
## Pi3k Events In Erbb4 Signaling 0
## Pi5p Regulates Tp53 Acetylation 0
## Pink1 Prkn Mediated Mitophagy 0
## Piwi Interacting Rna Pirna Biogenesis 0
## Pka Activation In Glucagon Signalling 0
## Pka Mediated Phosphorylation Of Key Metabolic Factors 0
## Pkmts Methylate Histone Lysines 0
## Plasma Lipoprotein Assembly 0
## Plasma Lipoprotein Remodeling 0
## Platelet Activation Signaling And Aggregation 3
## Platelet Adhesion To Exposed Collagen 0
## Platelet Aggregation Plug Formation 0
## Platelet Calcium Homeostasis 0
## Platelet Homeostasis 0
## Platelet Sensitization By Ldl 0
## Polb Dependent Long Patch Base Excision Repair 0
## Polo Like Kinase Mediated Events 0
## Polymerase Switching 0
## Polymerase Switching On The C Strand Of The Telomere 0
## Positive Epigenetic Regulation Of Rrna Expression 0
## Post Chaperonin Tubulin Folding Pathway 0
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 0
## Postmitotic Nuclear Pore Complex Npc Reformation 0
## Potassium Channels 1
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 0
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 0
## Pre Notch Expression And Processing 0
## Pre Notch Processing In Golgi 0
## Pre Notch Processing In The Endoplasmic Reticulum 0
## Pregnenolone Biosynthesis 0
## Presynaptic Depolarization And Calcium Channel Opening 0
## Presynaptic Function Of Kainate Receptors 0
## Prevention Of Phagosomal Lysosomal Fusion 0
## Processing And Activation Of Sumo 0
## Processing Of Capped Intron Containing Pre Mrna 0
## Processing Of Capped Intronless Pre Mrna 0
## Processing Of Dna Double Strand Break Ends 0
## Processing Of Intronless Pre Mrnas 0
## Processing Of Smdt1 0
## Processive Synthesis On The C Strand Of The Telomere 0
## Processive Synthesis On The Lagging Strand 0
## Prolactin Receptor Signaling 0
## Prolonged Erk Activation Events 0
## Propionyl Coa Catabolism 0
## Prostacyclin Signalling Through Prostacyclin Receptor 0
## Prostanoid Ligand Receptors 0
## Protein Folding 1
## Protein Localization 0
## Protein Methylation 0
## Protein Protein Interactions At Synapses 0
## Protein Repair 0
## Protein Ubiquitination 0
## Proton Coupled Monocarboxylate Transport 0
## Pten Regulation 0
## Ptk6 Expression 0
## Ptk6 Regulates Cell Cycle 0
## Ptk6 Regulates Proteins Involved In Rna Processing 0
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 0
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 0
## Purine Catabolism 0
## Purine Ribonucleoside Monophosphate Biosynthesis 0
## Purine Salvage 0
## Pyrimidine Catabolism 0
## Pyrimidine Salvage 0
## Pyruvate Metabolism 0
## Pyruvate Metabolism And Citric Acid Tca Cycle 0
## Ra Biosynthesis Pathway 0
## Rab Gefs Exchange Gtp For Gdp On Rabs 0
## Rab Geranylgeranylation 0
## Rab Regulation Of Trafficking 0
## Rac1 Gtpase Cycle 2
## Raf Activation 0
## Rap1 Signalling 0
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 0
## Ras Processing 0
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 0
## Reactions Specific To The Complex N Glycan Synthesis Pathway 0
## Receptor Mediated Mitophagy 0
## Receptor Type Tyrosine Protein Phosphatases 0
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 0
## Recognition Of Dna Damage By Pcna Containing Replication Complex 0
## Recruitment Of Numa To Mitotic Centrosomes 1
## Recycling Of Bile Acids And Salts 0
## Recycling Of Eif2 Gdp 0
## Recycling Pathway Of L1 0
## Reduction Of Cytosolic Ca Levels 0
## Reelin Signalling Pathway 0
## Regulated Proteolysis Of P75ntr 0
## Regulation By C Flip 0
## Regulation Of Bach1 Activity 0
## Regulation Of Beta Cell Development 0
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 0
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 0
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 0
## Regulation Of Expression Of Slits And Robos 0
## Regulation Of Foxo Transcriptional Activity By Acetylation 0
## Regulation Of Fzd By Ubiquitination 0
## Regulation Of Gene Expression By Hypoxia Inducible Factor 0
## Regulation Of Gene Expression In Beta Cells 0
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 0
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 0
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 0
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 0
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 0
## Regulation Of Hmox1 Expression And Activity 0
## Regulation Of Hsf1 Mediated Heat Shock Response 0
## Regulation Of Ifna Signaling 0
## Regulation Of Ifng Signaling 0
## Regulation Of Innate Immune Responses To Cytosolic Dna 0
## Regulation Of Insulin Secretion 0
## Regulation Of Kit Signaling 0
## Regulation Of Lipid Metabolism By Pparalpha 0
## Regulation Of Localization Of Foxo Transcription Factors 0
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 0
## Regulation Of Pten Gene Transcription 0
## Regulation Of Pten Localization 0
## Regulation Of Pten Mrna Translation 0
## Regulation Of Pten Stability And Activity 0
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 0
## Regulation Of Ras By Gaps 0
## Regulation Of Runx1 Expression And Activity 0
## Regulation Of Runx3 Expression And Activity 0
## Regulation Of Signaling By Cbl 0
## Regulation Of Signaling By Nodal 0
## Regulation Of Tp53 Activity 1
## Regulation Of Tp53 Activity Through Acetylation 0
## Regulation Of Tp53 Activity Through Association With Co Factors 0
## Regulation Of Tp53 Activity Through Methylation 0
## Regulation Of Tp53 Activity Through Phosphorylation 0
## Relaxin Receptors 0
## Release Of Apoptotic Factors From The Mitochondria 0
## Release Of Hh Np From The Secreting Cell 0
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 0
## Repression Of Wnt Target Genes 0
## Reproduction 0
## Resolution Of Abasic Sites Ap Sites 0
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 0
## Resolution Of D Loop Structures 0
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 0
## Resolution Of Sister Chromatid Cohesion 1
## Respiratory Electron Transport 0
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 0
## Response Of Eif2ak1 Hri To Heme Deficiency 0
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 0
## Response Of Mtb To Phagocytosis 0
## Response To Elevated Platelet Cytosolic Ca2 2
## Response To Metal Ions 0
## Ret Signaling 0
## Retinoid Cycle Disease Events 0
## Retrograde Neurotrophin Signalling 0
## Reversible Hydration Of Carbon Dioxide 0
## Rho Gtpase Cycle 2
## Rho Gtpase Effectors 0
## Rho Gtpases Activate Cit 0
## Rho Gtpases Activate Formins 0
## Rho Gtpases Activate Iqgaps 0
## Rho Gtpases Activate Ktn1 0
## Rho Gtpases Activate Nadph Oxidases 0
## Rho Gtpases Activate Paks 0
## Rho Gtpases Activate Pkns 0
## Rho Gtpases Activate Rhotekin And Rhophilins 0
## Rho Gtpases Activate Rocks 0
## Rho Gtpases Activate Wasps And Waves 0
## Rhoa Gtpase Cycle 2
## Rhobtb Gtpase Cycle 0
## Rhobtb1 Gtpase Cycle 0
## Rhobtb2 Gtpase Cycle 0
## Rhobtb3 Atpase Cycle 0
## Rhot1 Gtpase Cycle 0
## Rhou Gtpase Cycle 0
## Rhov Gtpase Cycle 0
## Rna Polymerase I Promoter Escape 0
## Rna Polymerase I Transcription 0
## Rna Polymerase I Transcription Initiation 0
## Rna Polymerase I Transcription Termination 0
## Rna Polymerase Ii Transcribes Snrna Genes 0
## Rna Polymerase Ii Transcription Termination 0
## Rna Polymerase Iii Chain Elongation 0
## Rna Polymerase Iii Transcription 0
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 0
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 0
## Rna Polymerase Iii Transcription Termination 0
## Rnd1 Gtpase Cycle 0
## Rnd2 Gtpase Cycle 0
## Rnd3 Gtpase Cycle 0
## Robo Receptors Bind Akap5 0
## Role Of Abl In Robo Slit Signaling 0
## Role Of Lat2 Ntal Lab On Calcium Mobilization 0
## Role Of Phospholipids In Phagocytosis 0
## Role Of Second Messengers In Netrin 1 Signaling 0
## Rora Activates Gene Expression 0
## Ros And Rns Production In Phagocytes 0
## Rrna Modification In The Mitochondrion 0
## Rrna Modification In The Nucleus And Cytosol 0
## Rrna Processing 0
## Rrna Processing In The Mitochondrion 0
## Rsk Activation 0
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 0
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 0
## Runx1 Regulates Estrogen Receptor Mediated Transcription 0
## Runx1 Regulates Expression Of Components Of Tight Junctions 0
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 0
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 0
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 0
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 0
## Runx3 Regulates Bcl2l11 Bim Transcription 0
## Runx3 Regulates Cdkn1a Transcription 0
## Runx3 Regulates Immune Response And Cell Migration 0
## Runx3 Regulates Notch Signaling 0
## Runx3 Regulates P14 Arf 0
## Runx3 Regulates Wnt Signaling 0
## Runx3 Regulates Yap1 Mediated Transcription 0
## S Phase 0
## Sars Cov 1 Genome Replication And Transcription 0
## Sars Cov 1 Infection 0
## Sars Cov 2 Infection 0
## Sars Cov Infections 1
## Scavenging By Class A Receptors 0
## Scavenging By Class B Receptors 0
## Scavenging By Class F Receptors 0
## Scavenging Of Heme From Plasma 0
## Scf Skp2 Mediated Degradation Of P27 P21 0
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 0
## Selective Autophagy 0
## Selenoamino Acid Metabolism 0
## Sema3a Pak Dependent Axon Repulsion 0
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 0
## Sema4d In Semaphorin Signaling 0
## Sema4d Induced Cell Migration And Growth Cone Collapse 0
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 0
## Semaphorin Interactions 0
## Sensing Of Dna Double Strand Breaks 0
## Sensory Perception 0
## Sensory Processing Of Sound 0
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 0
## Separation Of Sister Chromatids 0
## Serine Biosynthesis 0
## Serotonin And Melatonin Biosynthesis 0
## Serotonin Neurotransmitter Release Cycle 0
## Serotonin Receptors 0
## Shc Mediated Cascade Fgfr1 0
## Shc Mediated Cascade Fgfr3 0
## Shc Mediated Cascade Fgfr4 0
## Shc Related Events Triggered By Igf1r 0
## Shc1 Events In Erbb4 Signaling 0
## Signal Amplification 0
## Signal Attenuation 0
## Signal Regulatory Protein Family Interactions 0
## Signaling By Activin 0
## Signaling By Bmp 0
## Signaling By Braf And Raf Fusions 0
## Signaling By Ctnnb1 Phospho Site Mutants 0
## Signaling By Erythropoietin 0
## Signaling By Fgfr 0
## Signaling By Fgfr1 0
## Signaling By Fgfr2 0
## Signaling By Fgfr2 Iiia Tm 0
## Signaling By Fgfr2 In Disease 0
## Signaling By Fgfr3 0
## Signaling By Fgfr3 Fusions In Cancer 0
## Signaling By Fgfr4 0
## Signaling By Fgfr4 In Disease 0
## Signaling By Flt3 Fusion Proteins 0
## Signaling By Flt3 Itd And Tkd Mutants 0
## Signaling By Gpcr 14
## Signaling By Hedgehog 0
## Signaling By Hippo 0
## Signaling By Lrp5 Mutants 0
## Signaling By Mapk Mutants 0
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 0
## Signaling By Moderate Kinase Activity Braf Mutants 0
## Signaling By Mras Complex Mutants 0
## Signaling By Mst1 0
## Signaling By Nodal 0
## Signaling By Notch 2
## Signaling By Notch1 0
## Signaling By Notch1 Hd Domain Mutants In Cancer 0
## Signaling By Notch1 Pest Domain Mutants In Cancer 0
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 0
## Signaling By Notch4 0
## Signaling By Ntrk2 Trkb 0
## Signaling By Ntrk3 Trkc 0
## Signaling By Nuclear Receptors 5
## Signaling By Receptor Tyrosine Kinases 7
## Signaling By Retinoic Acid 0
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 2
## Signaling By Rnf43 Mutants 0
## Signaling By Robo Receptors 0
## Signaling By Tgf Beta Receptor Complex In Cancer 0
## Signaling By Tgfb Family Members 1
## Signaling By The B Cell Receptor Bcr 1
## Signaling By Vegf 1
## Signaling By Wnt 1
## Signaling By Wnt In Cancer 0
## Signalling To Erks 0
## Signalling To P38 Via Rit And Rin 0
## Signalling To Ras 0
## Sirt1 Negatively Regulates Rrna Expression 0
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 0
## Slc Mediated Transmembrane Transport 0
## Slc Transporter Disorders 0
## Smac Xiap Regulated Apoptotic Response 0
## Small Interfering Rna Sirna Biogenesis 0
## Smooth Muscle Contraction 0
## Snrnp Assembly 0
## Sodium Calcium Exchangers 0
## Sodium Coupled Phosphate Cotransporters 0
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 0
## Sodium Proton Exchangers 0
## Sos Mediated Signalling 0
## Sperm Motility And Taxes 0
## Sphingolipid De Novo Biosynthesis 0
## Sphingolipid Metabolism 0
## Spry Regulation Of Fgf Signaling 0
## Srp Dependent Cotranslational Protein Targeting To Membrane 0
## Stabilization Of P53 0
## Stat5 Activation 0
## Stat5 Activation Downstream Of Flt3 Itd Mutants 0
## Stimuli Sensing Channels 1
## Striated Muscle Contraction 0
## Sulfide Oxidation To Sulfate 0
## Sulfur Amino Acid Metabolism 0
## Sumo Is Conjugated To E1 Uba2 Sae1 0
## Sumo Is Proteolytically Processed 0
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 0
## Sumoylation 2
## Sumoylation Of Chromatin Organization Proteins 0
## Sumoylation Of Dna Damage Response And Repair Proteins 0
## Sumoylation Of Dna Replication Proteins 0
## Sumoylation Of Immune Response Proteins 0
## Sumoylation Of Intracellular Receptors 0
## Sumoylation Of Rna Binding Proteins 0
## Sumoylation Of Sumoylation Proteins 0
## Sumoylation Of Transcription Factors 0
## Sumoylation Of Ubiquitinylation Proteins 0
## Suppression Of Apoptosis 0
## Suppression Of Phagosomal Maturation 0
## Surfactant Metabolism 0
## Switching Of Origins To A Post Replicative State 0
## Synaptic Adhesion Like Molecules 0
## Syndecan Interactions 0
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 0
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 0
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 0
## Synthesis Of 5 Eicosatetraenoic Acids 0
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 0
## Synthesis Of Bile Acids And Bile Salts 0
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 0
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 0
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 0
## Synthesis Of Diphthamide Eef2 0
## Synthesis Of Dolichyl Phosphate 0
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 0
## Synthesis Of Gdp Mannose 0
## Synthesis Of Glycosylphosphatidylinositol Gpi 0
## Synthesis Of Ip2 Ip And Ins In The Cytosol 0
## Synthesis Of Ip3 And Ip4 In The Cytosol 0
## Synthesis Of Ketone Bodies 0
## Synthesis Of Leukotrienes Lt And Eoxins Ex 0
## Synthesis Of Lipoxins Lx 0
## Synthesis Of Pa 0
## Synthesis Of Pc 0
## Synthesis Of Pe 0
## Synthesis Of Pg 0
## Synthesis Of Pi 0
## Synthesis Of Pips At The Early Endosome Membrane 0
## Synthesis Of Pips At The Er Membrane 0
## Synthesis Of Pips At The Golgi Membrane 0
## Synthesis Of Pips At The Late Endosome Membrane 0
## Synthesis Of Pips At The Plasma Membrane 0
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 0
## Synthesis Of Pyrophosphates In The Cytosol 0
## Synthesis Of Udp N Acetyl Glucosamine 0
## Synthesis Of Very Long Chain Fatty Acyl Coas 0
## Synthesis Of Wybutosine At G37 Of Trna Phe 0
## Synthesis Secretion And Deacylation Of Ghrelin 0
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 0
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 0
## Tachykinin Receptors Bind Tachykinins 0
## Tbc Rabgaps 0
## Tcf Dependent Signaling In Response To Wnt 1
## Tcr Signaling 1
## Telomere C Strand Lagging Strand Synthesis 0
## Telomere C Strand Synthesis Initiation 0
## Telomere Extension By Telomerase 0
## Telomere Maintenance 0
## Terminal Pathway Of Complement 0
## Termination Of Translesion Dna Synthesis 0
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 0
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 0
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 0
## Tgf Beta Receptor Signaling Activates Smads 0
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 0
## The Activation Of Arylsulfatases 0
## The Canonical Retinoid Cycle In Rods Twilight Vision 0
## The Citric Acid Tca Cycle And Respiratory Electron Transport 0
## The Fatty Acid Cycling Model 0
## The Phototransduction Cascade 0
## The Retinoid Cycle In Cones Daylight Vision 0
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 0
## Thrombin Signalling Through Proteinase Activated Receptors Pars 0
## Thromboxane Signalling Through Tp Receptor 0
## Thyroxine Biosynthesis 0
## Tie2 Signaling 0
## Tight Junction Interactions 0
## Tnfr1 Induced Proapoptotic Signaling 0
## Tnfr1 Mediated Ceramide Production 0
## Toxicity Of Botulinum Toxin Type D Botd 0
## Tp53 Regulates Metabolic Genes 0
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 0
## Tp53 Regulates Transcription Of Death Receptors And Ligands 0
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 0
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 0
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 0
## Traf3 Dependent Irf Activation Pathway 0
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 0
## Traf6 Mediated Irf7 Activation 0
## Trafficking Of Ampa Receptors 0
## Trafficking Of Glur2 Containing Ampa Receptors 0
## Trafficking Of Myristoylated Proteins To The Cilium 0
## Trail Signaling 0
## Trans Golgi Network Vesicle Budding 0
## Transcription Coupled Nucleotide Excision Repair Tc Ner 0
## Transcription Of E2f Targets Under Negative Control By Dream Complex 0
## Transcription Of The Hiv Genome 0
## Transcriptional Regulation By E2f6 0
## Transcriptional Regulation By Runx1 2
## Transcriptional Regulation By Runx3 0
## Transcriptional Regulation By Small Rnas 0
## Transcriptional Regulation By Tp53 3
## Transcriptional Regulation Of Testis Differentiation 0
## Transcriptional Regulation Of White Adipocyte Differentiation 0
## Transferrin Endocytosis And Recycling 0
## Translation 0
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 0
## Translation Of Sars Cov 1 Structural Proteins 0
## Translation Of Sars Cov 2 Structural Proteins 0
## Translesion Synthesis By Polh 0
## Translesion Synthesis By Polk 0
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 0
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 0
## Transmission Across Chemical Synapses 1
## Transport And Synthesis Of Paps 0
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 0
## Transport Of Connexons To The Plasma Membrane 0
## Transport Of Fatty Acids 0
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 0
## Transport Of Mature Mrnas Derived From Intronless Transcripts 0
## Transport Of Mature Transcript To Cytoplasm 0
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 0
## Transport Of Nucleotide Sugars 0
## Transport Of Organic Anions 0
## Transport Of Small Molecules 2
## Transport Of The Slbp Dependant Mature Mrna 0
## Transport Of Vitamins Nucleosides And Related Molecules 0
## Transport To The Golgi And Subsequent Modification 2
## Trif Mediated Programmed Cell Death 0
## Triglyceride Biosynthesis 0
## Triglyceride Catabolism 0
## Triglyceride Metabolism 0
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 0
## Trna Aminoacylation 0
## Trna Modification In The Mitochondrion 0
## Trna Modification In The Nucleus And Cytosol 0
## Trna Processing 0
## Trna Processing In The Mitochondrion 0
## Trna Processing In The Nucleus 0
## Trp Channels 0
## Tryptophan Catabolism 0
## Type I Hemidesmosome Assembly 0
## Tyrosine Catabolism 0
## Tysnd1 Cleaves Peroxisomal Proteins 0
## Ub Specific Processing Proteases 2
## Ubiquinol Biosynthesis 0
## Uch Proteinases 0
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 0
## Unwinding Of Dna 0
## Uptake And Actions Of Bacterial Toxins 0
## Uptake And Function Of Anthrax Toxins 0
## Uptake And Function Of Diphtheria Toxin 0
## Urea Cycle 0
## Vasopressin Like Receptors 0
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 0
## Vegf Ligand Receptor Interactions 0
## Vegfr2 Mediated Cell Proliferation 0
## Vesicle Mediated Transport 5
## Viral Messenger Rna Synthesis 0
## Visual Phototransduction 0
## Vitamin B1 Thiamin Metabolism 0
## Vitamin B2 Riboflavin Metabolism 0
## Vitamin B5 Pantothenate Metabolism 0
## Vitamin C Ascorbate Metabolism 0
## Vitamin D Calciferol Metabolism 0
## Vitamins 0
## Vldl Assembly 0
## Vldl Clearance 0
## Voltage Gated Potassium Channels 0
## Vxpx Cargo Targeting To Cilium 0
## Wax And Plasmalogen Biosynthesis 0
## Wnt Mediated Activation Of Dvl 0
## Xenobiotics 0
## Zinc Efflux And Compartmentalization By The Slc30 Family 0
## Zinc Influx Into Cells By The Slc39 Gene Family 0
## Zinc Transporters 0
## background
## Interleukin 10 Signaling 1300
## Interleukin 1 Processing 1300
## Chemokine Receptors Bind Chemokines 1300
## Interleukin 4 And Interleukin 13 Signaling 1300
## Purinergic Signaling In Leishmaniasis Infection 1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 1300
## Pyroptosis 1300
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 1300
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 1300
## Cd163 Mediating An Anti Inflammatory Response 1300
## Egfr Transactivation By Gastrin 1300
## Mapk3 Erk1 Activation 1300
## Inflammasomes 1300
## Interleukin 6 Signaling 1300
## Cd28 Dependent Vav1 Pathway 1300
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 1300
## Trafficking And Processing Of Endosomal Tlr 1300
## Regulated Necrosis 1300
## Tnfs Bind Their Physiological Receptors 1300
## The Nlrp3 Inflammasome 1300
## G2 M Dna Replication Checkpoint 1300
## Mecp2 Regulates Transcription Factors 1300
## Runx2 Regulates Chondrocyte Maturation 1300
## Activation Of Matrix Metalloproteinases 1300
## Clec7a Inflammasome Pathway 1300
## Fibronectin Matrix Formation 1300
## Phosphorylation Of Emi1 1300
## Ptk6 Promotes Hif1a Stabilization 1300
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 1300
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 1300
## Activation Of Nima Kinases Nek9 Nek6 Nek7 1300
## Creb Phosphorylation 1300
## Ctla4 Inhibitory Signaling 1300
## Interleukin 37 Signaling 1300
## Signal Transduction By L1 1300
## Cd28 Dependent Pi3k Akt Signaling 1300
## Activation Of C3 And C5 1300
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 1300
## Interleukin 18 Signaling 1300
## Mecp2 Regulates Transcription Of Neuronal Ligands 1300
## Raf Independent Mapk1 3 Activation 1300
## Runx2 Regulates Genes Involved In Cell Migration 1300
## Interleukin 6 Family Signaling 1300
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 1300
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 1300
## E2f Enabled Inhibition Of Pre Replication Complex Formation 1300
## Egfr Interacts With Phospholipase C Gamma 1300
## Extra Nuclear Estrogen Signaling 1300
## Interleukin 23 Signaling 1300
## Interleukin 9 Signaling 1300
## Mapk1 Erk2 Activation 1300
## Activation Of The Ap 1 Family Of Transcription Factors 1300
## Akt Phosphorylates Targets In The Nucleus 1300
## Camk Iv Mediated Phosphorylation Of Creb 1300
## Interleukin 21 Signaling 1300
## Mastl Facilitates Mitotic Progression 1300
## P75ntr Regulates Axonogenesis 1300
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 1300
## Condensation Of Prometaphase Chromosomes 1300
## Dap12 Interactions 1300
## Endosomal Vacuolar Pathway 1300
## Interleukin 27 Signaling 1300
## Pd 1 Signaling 1300
## Signaling By Leptin 1300
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 1300
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 1300
## Interleukin 35 Signalling 1300
## Killing Mechanisms 1300
## Notch2 Intracellular Domain Regulates Transcription 1300
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 1300
## Tandem Pore Domain Potassium Channels 1300
## Ticam1 Dependent Activation Of Irf3 Irf7 1300
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 1300
## Vldlr Internalisation And Degradation 1300
## Advanced Glycosylation Endproduct Receptor Signaling 1300
## Apoptosis Induced Dna Fragmentation 1300
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 1300
## Diseases Of Immune System 1300
## Dissolution Of Fibrin Clot 1300
## Erbb2 Activates Ptk6 Signaling 1300
## Irf3 Mediated Induction Of Type I Ifn 1300
## Mapk Targets Nuclear Events Mediated By Map Kinases 1300
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 1300
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 1300
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 1300
## Perk Regulates Gene Expression 1300
## Cd28 Co Stimulation 1300
## Golgi Cisternae Pericentriolar Stack Reorganization 1300
## Interleukin 15 Signaling 1300
## Shc1 Events In Egfr Signaling 1300
## Constitutive Signaling By Egfrviii 1300
## Depolymerisation Of The Nuclear Lamina 1300
## Erbb2 Regulates Cell Motility 1300
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 1300
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 1300
## Wnt5a Dependent Internalization Of Fzd4 1300
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 1300
## Costimulation By The Cd28 Family 1300
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 1300
## Grb2 Events In Erbb2 Signaling 1300
## Nod1 2 Signaling Pathway 1300
## Pi3k Events In Erbb2 Signaling 1300
## Signaling By Erbb2 Ecd Mutants 1300
## Sting Mediated Induction Of Host Immune Responses 1300
## Sumoylation Of Dna Methylation Proteins 1300
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 1300
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 1300
## Gab1 Signalosome 1300
## Interleukin 12 Family Signaling 1300
## Rip Mediated Nfkb Activation Via Zbp1 1300
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 1300
## Constitutive Signaling By Aberrant Pi3k In Cancer 1300
## Irak4 Deficiency Tlr2 4 1300
## Mecp2 Regulates Neuronal Receptors And Channels 1300
## Signaling By Cytosolic Fgfr1 Fusion Mutants 1300
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 1300
## Ngf Stimulated Transcription 1300
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 1300
## Initiation Of Nuclear Envelope Ne Reformation 1300
## Ldl Clearance 1300
## Phase 4 Resting Membrane Potential 1300
## Phosphorylation Of The Apc C 1300
## Pka Mediated Phosphorylation Of Creb 1300
## Signaling By Kit In Disease 1300
## Signaling By Pdgfr In Disease 1300
## Tnfr2 Non Canonical Nf Kb Pathway 1300
## Collagen Degradation 1300
## Regulation Of Tlr By Endogenous Ligand 1300
## Signaling By Scf Kit 1300
## Zbp1 Dai Mediated Induction Of Type I Ifns 1300
## E2f Mediated Regulation Of Dna Replication 1300
## Interleukin 2 Family Signaling 1300
## Pi3k Akt Signaling In Cancer 1300
## Shc1 Events In Erbb2 Signaling 1300
## Ikk Complex Recruitment Mediated By Rip1 1300
## Termination Of O Glycan Biosynthesis 1300
## Apc C Cdc20 Mediated Degradation Of Cyclin B 1300
## Growth Hormone Receptor Signaling 1300
## Interleukin 12 Signaling 1300
## Runx2 Regulates Osteoblast Differentiation 1300
## Traf6 Mediated Nf Kb Activation 1300
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 1300
## Cyclin A B1 B2 Associated Events During G2 M Transition 1300
## Inactivation Of Csf3 G Csf Signaling 1300
## Notch3 Activation And Transmission Of Signal To The Nucleus 1300
## Signaling By Egfr In Cancer 1300
## Constitutive Signaling By Akt1 E17k In Cancer 1300
## Dectin 2 Family 1300
## Interleukin 17 Signaling 1300
## Interleukin 20 Family Signaling 1300
## Negative Regulation Of The Pi3k Akt Network 1300
## Signaling By Erbb2 In Cancer 1300
## Wnt Ligand Biogenesis And Trafficking 1300
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 1300
## Eph Ephrin Mediated Repulsion Of Cells 1300
## G0 And Early G1 1300
## Interleukin Receptor Shc Signaling 1300
## Toll Like Receptor 9 Tlr9 Cascade 1300
## Vegfr2 Mediated Vascular Permeability 1300
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 1300
## Myd88 Independent Tlr4 Cascade 1300
## Dap12 Signaling 1300
## Downregulation Of Erbb2 Signaling 1300
## Downstream Signal Transduction 1300
## G1 S Specific Transcription 1300
## Interleukin 1 Family Signaling 1300
## Ripk1 Mediated Regulated Necrosis 1300
## Signaling By Ptk6 1300
## Signaling By Csf3 G Csf 1300
## Tnfr1 Induced Nfkappab Signaling Pathway 1300
## Egfr Downregulation 1300
## Fgfr1 Mutant Receptor Activation 1300
## Runx2 Regulates Bone Development 1300
## Transcriptional Regulation Of Pluripotent Stem Cells 1300
## Regulation Of Mecp2 Expression And Activity 1300
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 1300
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 1300
## Cargo Concentration In The Er 1300
## Plasma Lipoprotein Clearance 1300
## Sialic Acid Metabolism 1300
## Signaling By Notch2 1300
## Assembly Of Collagen Fibrils And Other Multimeric Structures 1300
## Gpvi Mediated Activation Cascade 1300
## Nuclear Events Kinase And Transcription Factor Activation 1300
## Regulation Of Tnfr1 Signaling 1300
## Signaling By Interleukins 1300
## Cytosolic Sensors Of Pathogen Associated Dna 1300
## Interleukin 7 Signaling 1300
## Nuclear Pore Complex Npc Disassembly 1300
## Ca Dependent Events 1300
## Metalloprotease Dubs 1300
## Ovarian Tumor Domain Proteases 1300
## Peptide Ligand Binding Receptors 1300
## Regulation Of Tp53 Expression And Degradation 1300
## Rhoh Gtpase Cycle 1300
## Senescence Associated Secretory Phenotype Sasp 1300
## Signaling By Fgfr1 In Disease 1300
## Toll Like Receptor Cascades 1300
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 1300
## Association Of Tric Cct With Target Proteins During Biosynthesis 1300
## Complement Cascade 1300
## Generation Of Second Messenger Molecules 1300
## Dag And Ip3 Signaling 1300
## Interferon Gamma Signaling 1300
## Transcriptional Regulation By Ventx 1300
## Beta Defensins 1300
## Circadian Clock 1300
## Rhob Gtpase Cycle 1300
## Rhof Gtpase Cycle 1300
## Sumoylation Of Transcription Cofactors 1300
## Tnf Signaling 1300
## Tp53 Regulates Transcription Of Cell Death Genes 1300
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 1300
## Rhoc Gtpase Cycle 1300
## Rhog Gtpase Cycle 1300
## Heme Signaling 1300
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 1300
## Irs Mediated Signalling 1300
## Retrograde Transport At The Trans Golgi Network 1300
## Signaling By Notch3 1300
## Toll Like Receptor Tlr1 Tlr2 Cascade 1300
## Tp53 Regulates Transcription Of Cell Cycle Genes 1300
## Antigen Processing Cross Presentation 1300
## Apoptotic Execution Phase 1300
## Cargo Recognition For Clathrin Mediated Endocytosis 1300
## Defensins 1300
## Rhod Gtpase Cycle 1300
## Signaling By Egfr 1300
## Signaling By Erbb2 1300
## Fceri Mediated Mapk Activation 1300
## G Protein Mediated Events 1300
## Insulin Receptor Signalling Cascade 1300
## Intrinsic Pathway For Apoptosis 1300
## Nuclear Envelope Breakdown 1300
## Rhoj Gtpase Cycle 1300
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 1300
## Transcriptional Activation Of Mitochondrial Biogenesis 1300
## Ca2 Pathway 1300
## Collagen Formation 1300
## Eph Ephrin Signaling 1300
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 1300
## Nrage Signals Death Through Jnk 1300
## O Linked Glycosylation Of Mucins 1300
## Rac2 Gtpase Cycle 1300
## Rhoq Gtpase Cycle 1300
## Signaling By Erbb4 1300
## Signaling By Pdgf 1300
## Tp53 Regulates Transcription Of Dna Repair Genes 1300
## Transcriptional Regulation Of Granulopoiesis 1300
## Unfolded Protein Response Upr 1300
## Asymmetric Localization Of Pcp Proteins 1300
## Class B 2 Secretin Family Receptors 1300
## Copi Mediated Anterograde Transport 1300
## Copii Mediated Vesicle Transport 1300
## Diseases Associated With O Glycosylation Of Proteins 1300
## Dna Methylation 1300
## Fcgr3a Mediated Il10 Synthesis 1300
## Interleukin 1 Signaling 1300
## Ncam Signaling For Neurite Out Growth 1300
## P75 Ntr Receptor Mediated Signalling 1300
## Rac3 Gtpase Cycle 1300
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 1300
## Signaling By Fgfr In Disease 1300
## Synthesis Of Substrates In N Glycan Biosythesis 1300
## Transcriptional Regulation By Mecp2 1300
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1300
## Apc C Mediated Degradation Of Cell Cycle Proteins 1300
## Aurka Activation By Tpx2 1300
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1300
## Cell Death Signalling Via Nrage Nrif And Nade 1300
## Clathrin Mediated Endocytosis 1300
## Condensation Of Prophase Chromosomes 1300
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 1300
## Death Receptor Signalling 1300
## Degradation Of The Extracellular Matrix 1300
## Ecm Proteoglycans 1300
## Fceri Mediated Ca 2 Mobilization 1300
## G Alpha 12 13 Signalling Events 1300
## Initial Triggering Of Complement 1300
## Integrin Cell Surface Interactions 1300
## Interferon Alpha Beta Signaling 1300
## L1cam Interactions 1300
## Nuclear Envelope Ne Reassembly 1300
## Plasma Lipoprotein Assembly Remodeling And Clearance 1300
## Potential Therapeutics For Sars 1300
## Prc2 Methylates Histones And Dna 1300
## Programmed Cell Death 1300
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1300
## Regulation Of Plk1 Activity At G2 M Transition 1300
## Regulation Of Runx2 Expression And Activity 1300
## Rmts Methylate Histone Arginines 1300
## Signaling By Insulin Receptor 1300
## Signaling By Met 1300
## Signaling By Ntrks 1300
## Signaling By Tgf Beta Receptor Complex 1300
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1300
## Transcriptional Regulation By Runx2 1300
## 2 Ltr Circle Formation 1300
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 1300
## Abacavir Metabolism 1300
## Abacavir Transmembrane Transport 1300
## Abacavir Transport And Metabolism 1300
## Abc Family Proteins Mediated Transport 1300
## Abc Transporter Disorders 1300
## Abc Transporters In Lipid Homeostasis 1300
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 1300
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 1300
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 1300
## Acetylcholine Binding And Downstream Events 1300
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 1300
## Acetylcholine Neurotransmitter Release Cycle 1300
## Acetylcholine Regulates Insulin Secretion 1300
## Acrosome Reaction And Sperm Oocyte Membrane Binding 1300
## Activated Notch1 Transmits Signal To The Nucleus 1300
## Activated Ntrk2 Signals Through Cdk5 1300
## Activated Ntrk2 Signals Through Frs2 And Frs3 1300
## Activated Ntrk2 Signals Through Fyn 1300
## Activated Ntrk2 Signals Through Pi3k 1300
## Activated Ntrk2 Signals Through Ras 1300
## Activated Ntrk3 Signals Through Pi3k 1300
## Activated Ntrk3 Signals Through Ras 1300
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 1300
## Activated Tak1 Mediates P38 Mapk Activation 1300
## Activation Of Ampk Downstream Of Nmdars 1300
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 1300
## Activation Of Atr In Response To Replication Stress 1300
## Activation Of Bad And Translocation To Mitochondria 1300
## Activation Of Bh3 Only Proteins 1300
## Activation Of Caspases Through Apoptosome Mediated Cleavage 1300
## Activation Of Gene Expression By Srebf Srebp 1300
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 1300
## Activation Of Kainate Receptors Upon Glutamate Binding 1300
## Activation Of Nmda Receptors And Postsynaptic Events 1300
## Activation Of Noxa And Translocation To Mitochondria 1300
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 1300
## Activation Of Puma And Translocation To Mitochondria 1300
## Activation Of Rac1 1300
## Activation Of Rac1 Downstream Of Nmdars 1300
## Activation Of Ras In B Cells 1300
## Activation Of Smo 1300
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 1300
## Activation Of The Phototransduction Cascade 1300
## Activation Of The Pre Replicative Complex 1300
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 1300
## Activation Of Trka Receptors 1300
## Acyl Chain Remodeling Of Cl 1300
## Acyl Chain Remodeling Of Dag And Tag 1300
## Acyl Chain Remodelling Of Pc 1300
## Acyl Chain Remodelling Of Pe 1300
## Acyl Chain Remodelling Of Pg 1300
## Acyl Chain Remodelling Of Pi 1300
## Acyl Chain Remodelling Of Ps 1300
## Adaptive Immune System 1300
## Adenylate Cyclase Activating Pathway 1300
## Adenylate Cyclase Inhibitory Pathway 1300
## Adherens Junctions Interactions 1300
## Adora2b Mediated Anti Inflammatory Cytokines Production 1300
## Adp Signalling Through P2y Purinoceptor 1 1300
## Adp Signalling Through P2y Purinoceptor 12 1300
## Adrenaline Noradrenaline Inhibits Insulin Secretion 1300
## Adrenoceptors 1300
## Aflatoxin Activation And Detoxification 1300
## Aggrephagy 1300
## Akt Phosphorylates Targets In The Cytosol 1300
## Alpha Defensins 1300
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 1300
## Alpha Oxidation Of Phytanate 1300
## Alpha Protein Kinase 1 Signaling Pathway 1300
## Alternative Complement Activation 1300
## Amine Ligand Binding Receptors 1300
## Amino Acid Conjugation 1300
## Amino Acid Transport Across The Plasma Membrane 1300
## Amino Acids Regulate Mtorc1 1300
## Ampk Inhibits Chrebp Transcriptional Activation Activity 1300
## Amyloid Fiber Formation 1300
## Anchoring Fibril Formation 1300
## Anchoring Of The Basal Body To The Plasma Membrane 1300
## Androgen Biosynthesis 1300
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 1300
## Antigen Processing Ubiquitination Proteasome Degradation 1300
## Antimicrobial Peptides 1300
## Antiviral Mechanism By Ifn Stimulated Genes 1300
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 1300
## Apc Cdc20 Mediated Degradation Of Nek2a 1300
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 1300
## Apobec3g Mediated Resistance To Hiv 1 Infection 1300
## Apoptosis 1300
## Apoptotic Cleavage Of Cell Adhesion Proteins 1300
## Apoptotic Cleavage Of Cellular Proteins 1300
## Apoptotic Factor Mediated Response 1300
## Aquaporin Mediated Transport 1300
## Arachidonate Production From Dag 1300
## Arachidonic Acid Metabolism 1300
## Arms Mediated Activation 1300
## Aryl Hydrocarbon Receptor Signalling 1300
## Asparagine N Linked Glycosylation 1300
## Aspartate And Asparagine Metabolism 1300
## Assembly And Cell Surface Presentation Of Nmda Receptors 1300
## Assembly Of Active Lpl And Lipc Lipase Complexes 1300
## Assembly Of The Hiv Virion 1300
## Assembly Of The Orc Complex At The Origin Of Replication 1300
## Assembly Of The Pre Replicative Complex 1300
## Atf6 Atf6 Alpha Activates Chaperone Genes 1300
## Atf6 Atf6 Alpha Activates Chaperones 1300
## Attachment And Entry 1300
## Attachment Of Gpi Anchor To Upar 1300
## Attenuation Phase 1300
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 1300
## Autophagy 1300
## B Wich Complex Positively Regulates Rrna Expression 1300
## Base Excision Repair 1300
## Base Excision Repair Ap Site Formation 1300
## Basigin Interactions 1300
## Bbsome Mediated Cargo Targeting To Cilium 1300
## Beta Catenin Independent Wnt Signaling 1300
## Beta Catenin Phosphorylation Cascade 1300
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 1300
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 1300
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 1300
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 1300
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 1300
## Beta Oxidation Of Pristanoyl Coa 1300
## Beta Oxidation Of Very Long Chain Fatty Acids 1300
## Bicarbonate Transporters 1300
## Bile Acid And Bile Salt Metabolism 1300
## Binding And Uptake Of Ligands By Scavenger Receptors 1300
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 1300
## Biological Oxidations 1300
## Biosynthesis Of Epa Derived Spms 1300
## Biosynthesis Of Maresin Like Spms 1300
## Biosynthesis Of Maresins 1300
## Biosynthesis Of Specialized Proresolving Mediators Spms 1300
## Biotin Transport And Metabolism 1300
## Blood Group Systems Biosynthesis 1300
## Branched Chain Amino Acid Catabolism 1300
## Budding And Maturation Of Hiv Virion 1300
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 1300
## Butyrophilin Btn Family Interactions 1300
## C Type Lectin Receptors Clrs 1300
## Ca2 Activated K Channels 1300
## Calcineurin Activates Nfat 1300
## Calcitonin Like Ligand Receptors 1300
## Calnexin Calreticulin Cycle 1300
## Carboxyterminal Post Translational Modifications Of Tubulin 1300
## Cardiac Conduction 1300
## Cargo Trafficking To The Periciliary Membrane 1300
## Carnitine Metabolism 1300
## Caspase Activation Via Death Receptors In The Presence Of Ligand 1300
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 1300
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 1300
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 1300
## Cation Coupled Chloride Cotransporters 1300
## Cd209 Dc Sign Signaling 1300
## Cd22 Mediated Bcr Regulation 1300
## Cdc42 Gtpase Cycle 1300
## Cdc6 Association With The Orc Origin Complex 1300
## Cell Cell Communication 1300
## Cell Cell Junction Organization 1300
## Cell Cycle 1300
## Cell Cycle Checkpoints 1300
## Cell Cycle Mitotic 1300
## Cell Extracellular Matrix Interactions 1300
## Cell Junction Organization 1300
## Cell Surface Interactions At The Vascular Wall 1300
## Cellular Hexose Transport 1300
## Cellular Response To Chemical Stress 1300
## Cellular Response To Heat Stress 1300
## Cellular Response To Hypoxia 1300
## Cellular Response To Starvation 1300
## Cellular Responses To External Stimuli 1300
## Cellular Senescence 1300
## Cgmp Effects 1300
## Chaperone Mediated Autophagy 1300
## Chl1 Interactions 1300
## Cholesterol Biosynthesis 1300
## Choline Catabolism 1300
## Chondroitin Sulfate Biosynthesis 1300
## Chondroitin Sulfate Dermatan Sulfate Metabolism 1300
## Chrebp Activates Metabolic Gene Expression 1300
## Chromatin Modifying Enzymes 1300
## Chromosome Maintenance 1300
## Chylomicron Assembly 1300
## Chylomicron Clearance 1300
## Chylomicron Remodeling 1300
## Cilium Assembly 1300
## Citric Acid Cycle Tca Cycle 1300
## Class A 1 Rhodopsin Like Receptors 1300
## Class C 3 Metabotropic Glutamate Pheromone Receptors 1300
## Class I Mhc Mediated Antigen Processing Presentation 1300
## Class I Peroxisomal Membrane Protein Import 1300
## Clec7a Dectin 1 Induces Nfat Activation 1300
## Clec7a Dectin 1 Signaling 1300
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 1300
## Coenzyme A Biosynthesis 1300
## Cohesin Loading Onto Chromatin 1300
## Collagen Biosynthesis And Modifying Enzymes 1300
## Collagen Chain Trimerization 1300
## Common Pathway Of Fibrin Clot Formation 1300
## Competing Endogenous Rnas Cernas Regulate Pten Translation 1300
## Complex I Biogenesis 1300
## Conjugation Of Benzoate With Glycine 1300
## Constitutive Signaling By Overexpressed Erbb2 1300
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 1300
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 1300
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 1300
## Copi Dependent Golgi To Er Retrograde Traffic 1300
## Copi Independent Golgi To Er Retrograde Traffic 1300
## Creatine Metabolism 1300
## Creation Of C4 And C2 Activators 1300
## Creb3 Factors Activate Genes 1300
## Cristae Formation 1300
## Crmps In Sema3a Signaling 1300
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 1300
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 1300
## Crosslinking Of Collagen Fibrils 1300
## Cs Ds Degradation 1300
## Cyclin A Cdk2 Associated Events At S Phase Entry 1300
## Cyclin D Associated Events In G1 1300
## Cyp2e1 Reactions 1300
## Cytochrome C Mediated Apoptotic Response 1300
## Cytochrome P450 Arranged By Substrate Type 1300
## Cytokine Signaling In Immune System 1300
## Cytoprotection By Hmox1 1300
## Cytosolic Iron Sulfur Cluster Assembly 1300
## Cytosolic Sulfonation Of Small Molecules 1300
## Cytosolic Trna Aminoacylation 1300
## Darpp 32 Events 1300
## Dcc Mediated Attractive Signaling 1300
## Deactivation Of The Beta Catenin Transactivating Complex 1300
## Deadenylation Dependent Mrna Decay 1300
## Deadenylation Of Mrna 1300
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 1300
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 1300
## Defective B4galt7 Causes Eds Progeroid Type 1300
## Defective Cftr Causes Cystic Fibrosis 1300
## Defective Chst14 Causes Eds Musculocontractural Type 1300
## Defective Chst3 Causes Sedcjd 1300
## Defective Chst6 Causes Mcdc1 1300
## Defective Chsy1 Causes Tpbs 1300
## Defective Csf2rb Causes Smdp5 1300
## Defective Ext2 Causes Exostoses 2 1300
## Defective F9 Activation 1300
## Defective Factor Ix Causes Hemophilia B 1300
## Defective Factor Viii Causes Hemophilia A 1300
## Defective Lfng Causes Scdo3 1300
## Defective Ripk1 Mediated Regulated Necrosis 1300
## Defective St3gal3 Causes Mct12 And Eiee15 1300
## Defects In Biotin Btn Metabolism 1300
## Defects In Cobalamin B12 Metabolism 1300
## Defects In Vitamin And Cofactor Metabolism 1300
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 1300
## Degradation Of Axin 1300
## Degradation Of Beta Catenin By The Destruction Complex 1300
## Degradation Of Cysteine And Homocysteine 1300
## Degradation Of Dvl 1300
## Degradation Of Gli1 By The Proteasome 1300
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 1300
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 1300
## Dermatan Sulfate Biosynthesis 1300
## Detoxification Of Reactive Oxygen Species 1300
## Deubiquitination 1300
## Developmental Biology 1300
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 1300
## Digestion 1300
## Digestion And Absorption 1300
## Digestion Of Dietary Carbohydrate 1300
## Digestion Of Dietary Lipid 1300
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 1300
## Diseases Associated With Glycosaminoglycan Metabolism 1300
## Diseases Associated With Glycosylation Precursor Biosynthesis 1300
## Diseases Associated With N Glycosylation Of Proteins 1300
## Diseases Associated With Surfactant Metabolism 1300
## Diseases Of Base Excision Repair 1300
## Diseases Of Carbohydrate Metabolism 1300
## Diseases Of Dna Repair 1300
## Diseases Of Glycosylation 1300
## Diseases Of Metabolism 1300
## Diseases Of Mismatch Repair Mmr 1300
## Diseases Of Mitotic Cell Cycle 1300
## Diseases Of Programmed Cell Death 1300
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 1300
## Disinhibition Of Snare Formation 1300
## Disorders Of Transmembrane Transporters 1300
## Displacement Of Dna Glycosylase By Apex1 1300
## Dna Damage Bypass 1300
## Dna Damage Recognition In Gg Ner 1300
## Dna Damage Reversal 1300
## Dna Damage Telomere Stress Induced Senescence 1300
## Dna Double Strand Break Repair 1300
## Dna Double Strand Break Response 1300
## Dna Repair 1300
## Dna Replication 1300
## Dna Replication Initiation 1300
## Dna Replication Pre Initiation 1300
## Dna Strand Elongation 1300
## Dopamine Neurotransmitter Release Cycle 1300
## Dopamine Receptors 1300
## Downregulation Of Erbb2 Erbb3 Signaling 1300
## Downregulation Of Erbb4 Signaling 1300
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 1300
## Downregulation Of Tgf Beta Receptor Signaling 1300
## Downstream Signaling Events Of B Cell Receptor Bcr 1300
## Downstream Signaling Of Activated Fgfr1 1300
## Downstream Signaling Of Activated Fgfr2 1300
## Downstream Signaling Of Activated Fgfr3 1300
## Downstream Signaling Of Activated Fgfr4 1300
## Dscam Interactions 1300
## Dual Incision In Gg Ner 1300
## Dual Incision In Tc Ner 1300
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 1300
## Early Phase Of Hiv Life Cycle 1300
## Effects Of Pip2 Hydrolysis 1300
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 1300
## Eicosanoid Ligand Binding Receptors 1300
## Eicosanoids 1300
## Elastic Fibre Formation 1300
## Electric Transmission Across Gap Junctions 1300
## Elevation Of Cytosolic Ca2 Levels 1300
## Endogenous Sterols 1300
## Endosomal Sorting Complex Required For Transport Escrt 1300
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 1300
## Enos Activation 1300
## Epha Mediated Growth Cone Collapse 1300
## Ephb Mediated Forward Signaling 1300
## Ephrin Signaling 1300
## Epigenetic Regulation Of Gene Expression 1300
## Er Quality Control Compartment Erqc 1300
## Er To Golgi Anterograde Transport 1300
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 1300
## Erk Mapk Targets 1300
## Erks Are Inactivated 1300
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 1300
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 1300
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 1300
## Erythropoietin Activates Phospholipase C Gamma Plcg 1300
## Erythropoietin Activates Ras 1300
## Erythropoietin Activates Stat5 1300
## Esr Mediated Signaling 1300
## Establishment Of Sister Chromatid Cohesion 1300
## Estrogen Biosynthesis 1300
## Estrogen Dependent Gene Expression 1300
## Estrogen Stimulated Signaling Through Prkcz 1300
## Ethanol Oxidation 1300
## Eukaryotic Translation Elongation 1300
## Eukaryotic Translation Initiation 1300
## Export Of Viral Ribonucleoproteins From Nucleus 1300
## Extension Of Telomeres 1300
## Extracellular Matrix Organization 1300
## Extrinsic Pathway Of Fibrin Clot Formation 1300
## Factors Involved In Megakaryocyte Development And Platelet Production 1300
## Fanconi Anemia Pathway 1300
## Fasl Cd95l Signaling 1300
## Fatty Acid Metabolism 1300
## Fatty Acids 1300
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 1300
## Fatty Acyl Coa Biosynthesis 1300
## Fbxw7 Mutants And Notch1 In Cancer 1300
## Fc Epsilon Receptor Fceri Signaling 1300
## Fceri Mediated Nf Kb Activation 1300
## Fcgamma Receptor Fcgr Dependent Phagocytosis 1300
## Fcgr Activation 1300
## Fertilization 1300
## Fgfr1 Ligand Binding And Activation 1300
## Fgfr1b Ligand Binding And Activation 1300
## Fgfr1c Ligand Binding And Activation 1300
## Fgfr2 Alternative Splicing 1300
## Fgfr2 Ligand Binding And Activation 1300
## Fgfr2 Mutant Receptor Activation 1300
## Fgfr2b Ligand Binding And Activation 1300
## Fgfr2c Ligand Binding And Activation 1300
## Fgfr3 Ligand Binding And Activation 1300
## Fgfr3b Ligand Binding And Activation 1300
## Fgfrl1 Modulation Of Fgfr1 Signaling 1300
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 1300
## Flt3 Signaling 1300
## Flt3 Signaling By Cbl Mutants 1300
## Flt3 Signaling In Disease 1300
## Flt3 Signaling Through Src Family Kinases 1300
## Folding Of Actin By Cct Tric 1300
## Formation Of Apoptosome 1300
## Formation Of Atp By Chemiosmotic Coupling 1300
## Formation Of Fibrin Clot Clotting Cascade 1300
## Formation Of Incision Complex In Gg Ner 1300
## Formation Of Rna Pol Ii Elongation Complex 1300
## Formation Of Senescence Associated Heterochromatin Foci Sahf 1300
## Formation Of Tc Ner Pre Incision Complex 1300
## Formation Of The Beta Catenin Tcf Transactivating Complex 1300
## Formation Of The Cornified Envelope 1300
## Formation Of The Early Elongation Complex 1300
## Formation Of Tubulin Folding Intermediates By Cct Tric 1300
## Formation Of Xylulose 5 Phosphate 1300
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 1300
## Foxo Mediated Transcription 1300
## Foxo Mediated Transcription Of Cell Cycle Genes 1300
## Foxo Mediated Transcription Of Cell Death Genes 1300
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 1300
## Free Fatty Acid Receptors 1300
## Free Fatty Acids Regulate Insulin Secretion 1300
## Frs Mediated Fgfr1 Signaling 1300
## Frs Mediated Fgfr2 Signaling 1300
## Frs Mediated Fgfr3 Signaling 1300
## Frs Mediated Fgfr4 Signaling 1300
## Fructose Catabolism 1300
## Fructose Metabolism 1300
## G Alpha I Signalling Events 1300
## G Alpha Q Signalling Events 1300
## G Alpha S Signalling Events 1300
## G Alpha Z Signalling Events 1300
## G Beta Gamma Signalling Through Cdc42 1300
## G Beta Gamma Signalling Through Pi3kgamma 1300
## G Protein Activation 1300
## G Protein Beta Gamma Signalling 1300
## G1 S Dna Damage Checkpoints 1300
## G2 M Checkpoints 1300
## G2 M Dna Damage Checkpoint 1300
## G2 Phase 1300
## Gaba B Receptor Activation 1300
## Gaba Receptor Activation 1300
## Gaba Synthesis Release Reuptake And Degradation 1300
## Galactose Catabolism 1300
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 1300
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 1300
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 1300
## Gap Junction Assembly 1300
## Gap Junction Degradation 1300
## Gap Junction Trafficking And Regulation 1300
## Gdp Fucose Biosynthesis 1300
## Gene Silencing By Rna 1300
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 1300
## Global Genome Nucleotide Excision Repair Gg Ner 1300
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 1300
## Glucagon Signaling In Metabolic Regulation 1300
## Glucagon Type Ligand Receptors 1300
## Glucocorticoid Biosynthesis 1300
## Gluconeogenesis 1300
## Glucose Metabolism 1300
## Glucuronidation 1300
## Glutamate And Glutamine Metabolism 1300
## Glutamate Neurotransmitter Release Cycle 1300
## Glutathione Conjugation 1300
## Glutathione Synthesis And Recycling 1300
## Glycerophospholipid Biosynthesis 1300
## Glycerophospholipid Catabolism 1300
## Glycogen Breakdown Glycogenolysis 1300
## Glycogen Metabolism 1300
## Glycogen Storage Diseases 1300
## Glycogen Synthesis 1300
## Glycolysis 1300
## Glycosaminoglycan Metabolism 1300
## Glycosphingolipid Metabolism 1300
## Glyoxylate Metabolism And Glycine Degradation 1300
## Golgi Associated Vesicle Biogenesis 1300
## Golgi To Er Retrograde Transport 1300
## Gp1b Ix V Activation Signalling 1300
## Gpcr Ligand Binding 1300
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 1300
## Grb7 Events In Erbb2 Signaling 1300
## Hats Acetylate Histones 1300
## Hcmv Early Events 1300
## Hcmv Infection 1300
## Hcmv Late Events 1300
## Hdacs Deacetylate Histones 1300
## Hdl Assembly 1300
## Hdl Clearance 1300
## Hdl Remodeling 1300
## Hdms Demethylate Histones 1300
## Hdr Through Homologous Recombination Hrr 1300
## Hdr Through Mmej Alt Nhej 1300
## Hdr Through Single Strand Annealing Ssa 1300
## Hedgehog Ligand Biogenesis 1300
## Hedgehog Off State 1300
## Hedgehog On State 1300
## Heme Biosynthesis 1300
## Heme Degradation 1300
## Hemostasis 1300
## Heparan Sulfate Heparin Hs Gag Metabolism 1300
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 1300
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 1300
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 1300
## Histidine Catabolism 1300
## Hiv Elongation Arrest And Recovery 1300
## Hiv Infection 1300
## Hiv Life Cycle 1300
## Hiv Transcription Elongation 1300
## Hiv Transcription Initiation 1300
## Homologous Dna Pairing And Strand Exchange 1300
## Homology Directed Repair 1300
## Hormone Ligand Binding Receptors 1300
## Host Interactions Of Hiv Factors 1300
## Hs Gag Biosynthesis 1300
## Hs Gag Degradation 1300
## Hsf1 Activation 1300
## Hsf1 Dependent Transactivation 1300
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 1300
## Hur Elavl1 Binds And Stabilizes Mrna 1300
## Hyaluronan Biosynthesis And Export 1300
## Hyaluronan Metabolism 1300
## Hyaluronan Uptake And Degradation 1300
## Hydrolysis Of Lpc 1300
## Ikba Variant Leads To Eda Id 1300
## Il 6 Type Cytokine Receptor Ligand Interactions 1300
## Inactivation Of Cdc42 And Rac1 1300
## Incretin Synthesis Secretion And Inactivation 1300
## Infection With Mycobacterium Tuberculosis 1300
## Infectious Disease 1300
## Influenza Infection 1300
## Inhibition Of Dna Recombination At Telomere 1300
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 1300
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 1300
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 1300
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 1300
## Innate Immune System 1300
## Inositol Phosphate Metabolism 1300
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 1300
## Insulin Processing 1300
## Insulin Receptor Recycling 1300
## Integration Of Energy Metabolism 1300
## Integration Of Provirus 1300
## Integrin Signaling 1300
## Interaction Between L1 And Ankyrins 1300
## Interaction With Cumulus Cells And The Zona Pellucida 1300
## Interactions Of Rev With Host Cellular Proteins 1300
## Interactions Of Vpr With Host Cellular Proteins 1300
## Interconversion Of Nucleotide Di And Triphosphates 1300
## Interferon Signaling 1300
## Interleukin 2 Signaling 1300
## Interleukin 36 Pathway 1300
## Intestinal Absorption 1300
## Intra Golgi And Retrograde Golgi To Er Traffic 1300
## Intra Golgi Traffic 1300
## Intracellular Signaling By Second Messengers 1300
## Intraflagellar Transport 1300
## Intrinsic Pathway Of Fibrin Clot Formation 1300
## Inwardly Rectifying K Channels 1300
## Ion Channel Transport 1300
## Ion Homeostasis 1300
## Ion Transport By P Type Atpases 1300
## Ionotropic Activity Of Kainate Receptors 1300
## Irak1 Recruits Ikk Complex 1300
## Irak2 Mediated Activation Of Tak1 Complex 1300
## Ire1alpha Activates Chaperones 1300
## Irf3 Mediated Activation Of Type 1 Ifn 1300
## Iron Uptake And Transport 1300
## Irs Activation 1300
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 1300
## Josephin Domain Dubs 1300
## Keratan Sulfate Biosynthesis 1300
## Keratan Sulfate Degradation 1300
## Keratan Sulfate Keratin Metabolism 1300
## Keratinization 1300
## Ketone Body Metabolism 1300
## Kinesins 1300
## Ksrp Khsrp Binds And Destabilizes Mrna 1300
## Lagging Strand Synthesis 1300
## Laminin Interactions 1300
## Late Endosomal Microautophagy 1300
## Lectin Pathway Of Complement Activation 1300
## Leishmania Infection 1300
## Leukotriene Receptors 1300
## Lgi Adam Interactions 1300
## Ligand Receptor Interactions 1300
## Linoleic Acid La Metabolism 1300
## Lipid Particle Organization 1300
## Lipophagy 1300
## Listeria Monocytogenes Entry Into Host Cells 1300
## Long Term Potentiation 1300
## Loss Of Function Of Mecp2 In Rett Syndrome 1300
## Loss Of Function Of Smad2 3 In Cancer 1300
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 1300
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 1300
## Ltc4 Cysltr Mediated Il4 Production 1300
## Lysine Catabolism 1300
## Lysosome Vesicle Biogenesis 1300
## Lysosphingolipid And Lpa Receptors 1300
## M Phase 1300
## Map2k And Mapk Activation 1300
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 1300
## Mapk Family Signaling Cascades 1300
## Mapk6 Mapk4 Signaling 1300
## Maturation Of Nucleoprotein 1300
## Maturation Of Protein 3a 1300
## Maturation Of Sars Cov 1 Spike Protein 1300
## Maturation Of Sars Cov 2 Spike Protein 1300
## Meiosis 1300
## Meiotic Recombination 1300
## Meiotic Synapsis 1300
## Melanin Biosynthesis 1300
## Membrane Trafficking 1300
## Met Activates Pi3k Akt Signaling 1300
## Met Activates Ptk2 Signaling 1300
## Met Activates Ptpn11 1300
## Met Activates Rap1 And Rac1 1300
## Met Activates Ras Signaling 1300
## Met Interacts With Tns Proteins 1300
## Met Promotes Cell Motility 1300
## Met Receptor Activation 1300
## Met Receptor Recycling 1300
## Metabolic Disorders Of Biological Oxidation Enzymes 1300
## Metabolism Of Amine Derived Hormones 1300
## Metabolism Of Amino Acids And Derivatives 1300
## Metabolism Of Angiotensinogen To Angiotensins 1300
## Metabolism Of Carbohydrates 1300
## Metabolism Of Cofactors 1300
## Metabolism Of Fat Soluble Vitamins 1300
## Metabolism Of Folate And Pterines 1300
## Metabolism Of Ingested Semet Sec Mesec Into H2se 1300
## Metabolism Of Lipids 1300
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 1300
## Metabolism Of Nucleotides 1300
## Metabolism Of Polyamines 1300
## Metabolism Of Porphyrins 1300
## Metabolism Of Rna 1300
## Metabolism Of Steroid Hormones 1300
## Metabolism Of Steroids 1300
## Metabolism Of Vitamins And Cofactors 1300
## Metabolism Of Water Soluble Vitamins And Cofactors 1300
## Metal Ion Slc Transporters 1300
## Metal Sequestration By Antimicrobial Proteins 1300
## Metallothioneins Bind Metals 1300
## Methionine Salvage Pathway 1300
## Methylation 1300
## Mhc Class Ii Antigen Presentation 1300
## Microrna Mirna Biogenesis 1300
## Mineralocorticoid Biosynthesis 1300
## Miro Gtpase Cycle 1300
## Miscellaneous Substrates 1300
## Miscellaneous Transport And Binding Events 1300
## Mismatch Repair 1300
## Mitochondrial Biogenesis 1300
## Mitochondrial Calcium Ion Transport 1300
## Mitochondrial Fatty Acid Beta Oxidation 1300
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 1300
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 1300
## Mitochondrial Iron Sulfur Cluster Biogenesis 1300
## Mitochondrial Protein Import 1300
## Mitochondrial Translation 1300
## Mitochondrial Trna Aminoacylation 1300
## Mitochondrial Uncoupling 1300
## Mitophagy 1300
## Mitotic G1 Phase And G1 S Transition 1300
## Mitotic G2 G2 M Phases 1300
## Mitotic Metaphase And Anaphase 1300
## Mitotic Prometaphase 1300
## Mitotic Prophase 1300
## Mitotic Spindle Checkpoint 1300
## Mitotic Telophase Cytokinesis 1300
## Modulation By Mtb Of Host Immune System 1300
## Molecules Associated With Elastic Fibres 1300
## Molybdenum Cofactor Biosynthesis 1300
## Mrna Capping 1300
## Mrna Decay By 3 To 5 Exoribonuclease 1300
## Mrna Decay By 5 To 3 Exoribonuclease 1300
## Mrna Editing 1300
## Mrna Editing C To U Conversion 1300
## Mrna Splicing 1300
## Mrna Splicing Minor Pathway 1300
## Mtor Signalling 1300
## Mtorc1 Mediated Signalling 1300
## Mucopolysaccharidoses 1300
## Multifunctional Anion Exchangers 1300
## Muscarinic Acetylcholine Receptors 1300
## Muscle Contraction 1300
## Myoclonic Epilepsy Of Lafora 1300
## Myogenesis 1300
## N Glycan Antennae Elongation 1300
## N Glycan Antennae Elongation In The Medial Trans Golgi 1300
## N Glycan Trimming And Elongation In The Cis Golgi 1300
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 1300
## Na Cl Dependent Neurotransmitter Transporters 1300
## Nade Modulates Death Signalling 1300
## Ncam1 Interactions 1300
## Nectin Necl Trans Heterodimerization 1300
## Neddylation 1300
## Nef And Signal Transduction 1300
## Nef Mediated Cd4 Down Regulation 1300
## Nef Mediated Cd8 Down Regulation 1300
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 1300
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 1300
## Negative Epigenetic Regulation Of Rrna Expression 1300
## Negative Feedback Regulation Of Mapk Pathway 1300
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 1300
## Negative Regulation Of Fgfr1 Signaling 1300
## Negative Regulation Of Fgfr2 Signaling 1300
## Negative Regulation Of Fgfr3 Signaling 1300
## Negative Regulation Of Fgfr4 Signaling 1300
## Negative Regulation Of Flt3 1300
## Negative Regulation Of Mapk Pathway 1300
## Negative Regulation Of Met Activity 1300
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 1300
## Negative Regulation Of Notch4 Signaling 1300
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 1300
## Negative Regulators Of Ddx58 Ifih1 Signaling 1300
## Nephrin Family Interactions 1300
## Nervous System Development 1300
## Netrin 1 Signaling 1300
## Netrin Mediated Repulsion Signals 1300
## Neurexins And Neuroligins 1300
## Neurofascin Interactions 1300
## Neuronal System 1300
## Neurotoxicity Of Clostridium Toxins 1300
## Neurotransmitter Clearance 1300
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 1300
## Neurotransmitter Release Cycle 1300
## Neutrophil Degranulation 1300
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 1300
## Nf Kb Is Activated And Signals Survival 1300
## Ngf Independant Trka Activation 1300
## Nicotinamide Salvaging 1300
## Nicotinate Metabolism 1300
## Nitric Oxide Stimulates Guanylate Cyclase 1300
## Non Integrin Membrane Ecm Interactions 1300
## Noncanonical Activation Of Notch3 1300
## Nonhomologous End Joining Nhej 1300
## Nonsense Mediated Decay Nmd 1300
## Norepinephrine Neurotransmitter Release Cycle 1300
## Nostrin Mediated Enos Trafficking 1300
## Notch Hlh Transcription Pathway 1300
## Notch1 Intracellular Domain Regulates Transcription 1300
## Notch2 Activation And Transmission Of Signal To The Nucleus 1300
## Notch3 Intracellular Domain Regulates Transcription 1300
## Notch4 Activation And Transmission Of Signal To The Nucleus 1300
## Notch4 Intracellular Domain Regulates Transcription 1300
## Nr1h2 And Nr1h3 Mediated Signaling 1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 1300
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 1300
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 1300
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 1300
## Nrcam Interactions 1300
## Nrif Signals Cell Death From The Nucleus 1300
## Ns1 Mediated Effects On Host Pathways 1300
## Ntrk2 Activates Rac1 1300
## Nuclear Import Of Rev Protein 1300
## Nuclear Receptor Transcription Pathway 1300
## Nuclear Signaling By Erbb4 1300
## Nucleobase Biosynthesis 1300
## Nucleobase Catabolism 1300
## Nucleotide Excision Repair 1300
## Nucleotide Like Purinergic Receptors 1300
## Nucleotide Salvage 1300
## O Glycosylation Of Tsr Domain Containing Proteins 1300
## O Linked Glycosylation 1300
## Oas Antiviral Response 1300
## Olfactory Signaling Pathway 1300
## Oncogene Induced Senescence 1300
## Oncogenic Mapk Signaling 1300
## Opioid Signalling 1300
## Opsins 1300
## Orc1 Removal From Chromatin 1300
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 1300
## Organelle Biogenesis And Maintenance 1300
## Organic Anion Transport 1300
## Organic Anion Transporters 1300
## Organic Cation Anion Zwitterion Transport 1300
## Organic Cation Transport 1300
## Other Interleukin Signaling 1300
## Other Semaphorin Interactions 1300
## Oxidative Stress Induced Senescence 1300
## P130cas Linkage To Mapk Signaling For Integrins 1300
## P2y Receptors 1300
## P38mapk Events 1300
## P75ntr Negatively Regulates Cell Cycle Via Sc1 1300
## P75ntr Recruits Signalling Complexes 1300
## P75ntr Signals Via Nf Kb 1300
## Parasite Infection 1300
## Passive Transport By Aquaporins 1300
## Pcna Dependent Long Patch Base Excision Repair 1300
## Pcp Ce Pathway 1300
## Pecam1 Interactions 1300
## Pentose Phosphate Pathway 1300
## Peptide Hormone Biosynthesis 1300
## Peptide Hormone Metabolism 1300
## Peroxisomal Lipid Metabolism 1300
## Peroxisomal Protein Import 1300
## Pexophagy 1300
## Phase 0 Rapid Depolarisation 1300
## Phase 1 Inactivation Of Fast Na Channels 1300
## Phase 2 Plateau Phase 1300
## Phase 3 Rapid Repolarisation 1300
## Phase I Functionalization Of Compounds 1300
## Phase Ii Conjugation Of Compounds 1300
## Phenylalanine And Tyrosine Metabolism 1300
## Phenylalanine Metabolism 1300
## Phosphate Bond Hydrolysis By Ntpdase Proteins 1300
## Phosphate Bond Hydrolysis By Nudt Proteins 1300
## Phospholipase C Mediated Cascade Fgfr2 1300
## Phospholipase C Mediated Cascade Fgfr4 1300
## Phospholipid Metabolism 1300
## Physiological Factors 1300
## Pi 3k Cascade Fgfr1 1300
## Pi 3k Cascade Fgfr2 1300
## Pi 3k Cascade Fgfr3 1300
## Pi 3k Cascade Fgfr4 1300
## Pi Metabolism 1300
## Pi3k Akt Activation 1300
## Pi3k Events In Erbb4 Signaling 1300
## Pi5p Regulates Tp53 Acetylation 1300
## Pink1 Prkn Mediated Mitophagy 1300
## Piwi Interacting Rna Pirna Biogenesis 1300
## Pka Activation In Glucagon Signalling 1300
## Pka Mediated Phosphorylation Of Key Metabolic Factors 1300
## Pkmts Methylate Histone Lysines 1300
## Plasma Lipoprotein Assembly 1300
## Plasma Lipoprotein Remodeling 1300
## Platelet Activation Signaling And Aggregation 1300
## Platelet Adhesion To Exposed Collagen 1300
## Platelet Aggregation Plug Formation 1300
## Platelet Calcium Homeostasis 1300
## Platelet Homeostasis 1300
## Platelet Sensitization By Ldl 1300
## Polb Dependent Long Patch Base Excision Repair 1300
## Polo Like Kinase Mediated Events 1300
## Polymerase Switching 1300
## Polymerase Switching On The C Strand Of The Telomere 1300
## Positive Epigenetic Regulation Of Rrna Expression 1300
## Post Chaperonin Tubulin Folding Pathway 1300
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1300
## Postmitotic Nuclear Pore Complex Npc Reformation 1300
## Potassium Channels 1300
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 1300
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 1300
## Pre Notch Expression And Processing 1300
## Pre Notch Processing In Golgi 1300
## Pre Notch Processing In The Endoplasmic Reticulum 1300
## Pregnenolone Biosynthesis 1300
## Presynaptic Depolarization And Calcium Channel Opening 1300
## Presynaptic Function Of Kainate Receptors 1300
## Prevention Of Phagosomal Lysosomal Fusion 1300
## Processing And Activation Of Sumo 1300
## Processing Of Capped Intron Containing Pre Mrna 1300
## Processing Of Capped Intronless Pre Mrna 1300
## Processing Of Dna Double Strand Break Ends 1300
## Processing Of Intronless Pre Mrnas 1300
## Processing Of Smdt1 1300
## Processive Synthesis On The C Strand Of The Telomere 1300
## Processive Synthesis On The Lagging Strand 1300
## Prolactin Receptor Signaling 1300
## Prolonged Erk Activation Events 1300
## Propionyl Coa Catabolism 1300
## Prostacyclin Signalling Through Prostacyclin Receptor 1300
## Prostanoid Ligand Receptors 1300
## Protein Folding 1300
## Protein Localization 1300
## Protein Methylation 1300
## Protein Protein Interactions At Synapses 1300
## Protein Repair 1300
## Protein Ubiquitination 1300
## Proton Coupled Monocarboxylate Transport 1300
## Pten Regulation 1300
## Ptk6 Expression 1300
## Ptk6 Regulates Cell Cycle 1300
## Ptk6 Regulates Proteins Involved In Rna Processing 1300
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 1300
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 1300
## Purine Catabolism 1300
## Purine Ribonucleoside Monophosphate Biosynthesis 1300
## Purine Salvage 1300
## Pyrimidine Catabolism 1300
## Pyrimidine Salvage 1300
## Pyruvate Metabolism 1300
## Pyruvate Metabolism And Citric Acid Tca Cycle 1300
## Ra Biosynthesis Pathway 1300
## Rab Gefs Exchange Gtp For Gdp On Rabs 1300
## Rab Geranylgeranylation 1300
## Rab Regulation Of Trafficking 1300
## Rac1 Gtpase Cycle 1300
## Raf Activation 1300
## Rap1 Signalling 1300
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 1300
## Ras Processing 1300
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 1300
## Reactions Specific To The Complex N Glycan Synthesis Pathway 1300
## Receptor Mediated Mitophagy 1300
## Receptor Type Tyrosine Protein Phosphatases 1300
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 1300
## Recognition Of Dna Damage By Pcna Containing Replication Complex 1300
## Recruitment Of Numa To Mitotic Centrosomes 1300
## Recycling Of Bile Acids And Salts 1300
## Recycling Of Eif2 Gdp 1300
## Recycling Pathway Of L1 1300
## Reduction Of Cytosolic Ca Levels 1300
## Reelin Signalling Pathway 1300
## Regulated Proteolysis Of P75ntr 1300
## Regulation By C Flip 1300
## Regulation Of Bach1 Activity 1300
## Regulation Of Beta Cell Development 1300
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 1300
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 1300
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 1300
## Regulation Of Expression Of Slits And Robos 1300
## Regulation Of Foxo Transcriptional Activity By Acetylation 1300
## Regulation Of Fzd By Ubiquitination 1300
## Regulation Of Gene Expression By Hypoxia Inducible Factor 1300
## Regulation Of Gene Expression In Beta Cells 1300
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 1300
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 1300
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 1300
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 1300
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 1300
## Regulation Of Hmox1 Expression And Activity 1300
## Regulation Of Hsf1 Mediated Heat Shock Response 1300
## Regulation Of Ifna Signaling 1300
## Regulation Of Ifng Signaling 1300
## Regulation Of Innate Immune Responses To Cytosolic Dna 1300
## Regulation Of Insulin Secretion 1300
## Regulation Of Kit Signaling 1300
## Regulation Of Lipid Metabolism By Pparalpha 1300
## Regulation Of Localization Of Foxo Transcription Factors 1300
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 1300
## Regulation Of Pten Gene Transcription 1300
## Regulation Of Pten Localization 1300
## Regulation Of Pten Mrna Translation 1300
## Regulation Of Pten Stability And Activity 1300
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 1300
## Regulation Of Ras By Gaps 1300
## Regulation Of Runx1 Expression And Activity 1300
## Regulation Of Runx3 Expression And Activity 1300
## Regulation Of Signaling By Cbl 1300
## Regulation Of Signaling By Nodal 1300
## Regulation Of Tp53 Activity 1300
## Regulation Of Tp53 Activity Through Acetylation 1300
## Regulation Of Tp53 Activity Through Association With Co Factors 1300
## Regulation Of Tp53 Activity Through Methylation 1300
## Regulation Of Tp53 Activity Through Phosphorylation 1300
## Relaxin Receptors 1300
## Release Of Apoptotic Factors From The Mitochondria 1300
## Release Of Hh Np From The Secreting Cell 1300
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 1300
## Repression Of Wnt Target Genes 1300
## Reproduction 1300
## Resolution Of Abasic Sites Ap Sites 1300
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 1300
## Resolution Of D Loop Structures 1300
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 1300
## Resolution Of Sister Chromatid Cohesion 1300
## Respiratory Electron Transport 1300
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 1300
## Response Of Eif2ak1 Hri To Heme Deficiency 1300
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 1300
## Response Of Mtb To Phagocytosis 1300
## Response To Elevated Platelet Cytosolic Ca2 1300
## Response To Metal Ions 1300
## Ret Signaling 1300
## Retinoid Cycle Disease Events 1300
## Retrograde Neurotrophin Signalling 1300
## Reversible Hydration Of Carbon Dioxide 1300
## Rho Gtpase Cycle 1300
## Rho Gtpase Effectors 1300
## Rho Gtpases Activate Cit 1300
## Rho Gtpases Activate Formins 1300
## Rho Gtpases Activate Iqgaps 1300
## Rho Gtpases Activate Ktn1 1300
## Rho Gtpases Activate Nadph Oxidases 1300
## Rho Gtpases Activate Paks 1300
## Rho Gtpases Activate Pkns 1300
## Rho Gtpases Activate Rhotekin And Rhophilins 1300
## Rho Gtpases Activate Rocks 1300
## Rho Gtpases Activate Wasps And Waves 1300
## Rhoa Gtpase Cycle 1300
## Rhobtb Gtpase Cycle 1300
## Rhobtb1 Gtpase Cycle 1300
## Rhobtb2 Gtpase Cycle 1300
## Rhobtb3 Atpase Cycle 1300
## Rhot1 Gtpase Cycle 1300
## Rhou Gtpase Cycle 1300
## Rhov Gtpase Cycle 1300
## Rna Polymerase I Promoter Escape 1300
## Rna Polymerase I Transcription 1300
## Rna Polymerase I Transcription Initiation 1300
## Rna Polymerase I Transcription Termination 1300
## Rna Polymerase Ii Transcribes Snrna Genes 1300
## Rna Polymerase Ii Transcription Termination 1300
## Rna Polymerase Iii Chain Elongation 1300
## Rna Polymerase Iii Transcription 1300
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 1300
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 1300
## Rna Polymerase Iii Transcription Termination 1300
## Rnd1 Gtpase Cycle 1300
## Rnd2 Gtpase Cycle 1300
## Rnd3 Gtpase Cycle 1300
## Robo Receptors Bind Akap5 1300
## Role Of Abl In Robo Slit Signaling 1300
## Role Of Lat2 Ntal Lab On Calcium Mobilization 1300
## Role Of Phospholipids In Phagocytosis 1300
## Role Of Second Messengers In Netrin 1 Signaling 1300
## Rora Activates Gene Expression 1300
## Ros And Rns Production In Phagocytes 1300
## Rrna Modification In The Mitochondrion 1300
## Rrna Modification In The Nucleus And Cytosol 1300
## Rrna Processing 1300
## Rrna Processing In The Mitochondrion 1300
## Rsk Activation 1300
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 1300
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 1300
## Runx1 Regulates Estrogen Receptor Mediated Transcription 1300
## Runx1 Regulates Expression Of Components Of Tight Junctions 1300
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 1300
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 1300
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 1300
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 1300
## Runx3 Regulates Bcl2l11 Bim Transcription 1300
## Runx3 Regulates Cdkn1a Transcription 1300
## Runx3 Regulates Immune Response And Cell Migration 1300
## Runx3 Regulates Notch Signaling 1300
## Runx3 Regulates P14 Arf 1300
## Runx3 Regulates Wnt Signaling 1300
## Runx3 Regulates Yap1 Mediated Transcription 1300
## S Phase 1300
## Sars Cov 1 Genome Replication And Transcription 1300
## Sars Cov 1 Infection 1300
## Sars Cov 2 Infection 1300
## Sars Cov Infections 1300
## Scavenging By Class A Receptors 1300
## Scavenging By Class B Receptors 1300
## Scavenging By Class F Receptors 1300
## Scavenging Of Heme From Plasma 1300
## Scf Skp2 Mediated Degradation Of P27 P21 1300
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 1300
## Selective Autophagy 1300
## Selenoamino Acid Metabolism 1300
## Sema3a Pak Dependent Axon Repulsion 1300
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 1300
## Sema4d In Semaphorin Signaling 1300
## Sema4d Induced Cell Migration And Growth Cone Collapse 1300
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 1300
## Semaphorin Interactions 1300
## Sensing Of Dna Double Strand Breaks 1300
## Sensory Perception 1300
## Sensory Processing Of Sound 1300
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 1300
## Separation Of Sister Chromatids 1300
## Serine Biosynthesis 1300
## Serotonin And Melatonin Biosynthesis 1300
## Serotonin Neurotransmitter Release Cycle 1300
## Serotonin Receptors 1300
## Shc Mediated Cascade Fgfr1 1300
## Shc Mediated Cascade Fgfr3 1300
## Shc Mediated Cascade Fgfr4 1300
## Shc Related Events Triggered By Igf1r 1300
## Shc1 Events In Erbb4 Signaling 1300
## Signal Amplification 1300
## Signal Attenuation 1300
## Signal Regulatory Protein Family Interactions 1300
## Signaling By Activin 1300
## Signaling By Bmp 1300
## Signaling By Braf And Raf Fusions 1300
## Signaling By Ctnnb1 Phospho Site Mutants 1300
## Signaling By Erythropoietin 1300
## Signaling By Fgfr 1300
## Signaling By Fgfr1 1300
## Signaling By Fgfr2 1300
## Signaling By Fgfr2 Iiia Tm 1300
## Signaling By Fgfr2 In Disease 1300
## Signaling By Fgfr3 1300
## Signaling By Fgfr3 Fusions In Cancer 1300
## Signaling By Fgfr4 1300
## Signaling By Fgfr4 In Disease 1300
## Signaling By Flt3 Fusion Proteins 1300
## Signaling By Flt3 Itd And Tkd Mutants 1300
## Signaling By Gpcr 1300
## Signaling By Hedgehog 1300
## Signaling By Hippo 1300
## Signaling By Lrp5 Mutants 1300
## Signaling By Mapk Mutants 1300
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 1300
## Signaling By Moderate Kinase Activity Braf Mutants 1300
## Signaling By Mras Complex Mutants 1300
## Signaling By Mst1 1300
## Signaling By Nodal 1300
## Signaling By Notch 1300
## Signaling By Notch1 1300
## Signaling By Notch1 Hd Domain Mutants In Cancer 1300
## Signaling By Notch1 Pest Domain Mutants In Cancer 1300
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 1300
## Signaling By Notch4 1300
## Signaling By Ntrk2 Trkb 1300
## Signaling By Ntrk3 Trkc 1300
## Signaling By Nuclear Receptors 1300
## Signaling By Receptor Tyrosine Kinases 1300
## Signaling By Retinoic Acid 1300
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 1300
## Signaling By Rnf43 Mutants 1300
## Signaling By Robo Receptors 1300
## Signaling By Tgf Beta Receptor Complex In Cancer 1300
## Signaling By Tgfb Family Members 1300
## Signaling By The B Cell Receptor Bcr 1300
## Signaling By Vegf 1300
## Signaling By Wnt 1300
## Signaling By Wnt In Cancer 1300
## Signalling To Erks 1300
## Signalling To P38 Via Rit And Rin 1300
## Signalling To Ras 1300
## Sirt1 Negatively Regulates Rrna Expression 1300
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 1300
## Slc Mediated Transmembrane Transport 1300
## Slc Transporter Disorders 1300
## Smac Xiap Regulated Apoptotic Response 1300
## Small Interfering Rna Sirna Biogenesis 1300
## Smooth Muscle Contraction 1300
## Snrnp Assembly 1300
## Sodium Calcium Exchangers 1300
## Sodium Coupled Phosphate Cotransporters 1300
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 1300
## Sodium Proton Exchangers 1300
## Sos Mediated Signalling 1300
## Sperm Motility And Taxes 1300
## Sphingolipid De Novo Biosynthesis 1300
## Sphingolipid Metabolism 1300
## Spry Regulation Of Fgf Signaling 1300
## Srp Dependent Cotranslational Protein Targeting To Membrane 1300
## Stabilization Of P53 1300
## Stat5 Activation 1300
## Stat5 Activation Downstream Of Flt3 Itd Mutants 1300
## Stimuli Sensing Channels 1300
## Striated Muscle Contraction 1300
## Sulfide Oxidation To Sulfate 1300
## Sulfur Amino Acid Metabolism 1300
## Sumo Is Conjugated To E1 Uba2 Sae1 1300
## Sumo Is Proteolytically Processed 1300
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 1300
## Sumoylation 1300
## Sumoylation Of Chromatin Organization Proteins 1300
## Sumoylation Of Dna Damage Response And Repair Proteins 1300
## Sumoylation Of Dna Replication Proteins 1300
## Sumoylation Of Immune Response Proteins 1300
## Sumoylation Of Intracellular Receptors 1300
## Sumoylation Of Rna Binding Proteins 1300
## Sumoylation Of Sumoylation Proteins 1300
## Sumoylation Of Transcription Factors 1300
## Sumoylation Of Ubiquitinylation Proteins 1300
## Suppression Of Apoptosis 1300
## Suppression Of Phagosomal Maturation 1300
## Surfactant Metabolism 1300
## Switching Of Origins To A Post Replicative State 1300
## Synaptic Adhesion Like Molecules 1300
## Syndecan Interactions 1300
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 1300
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 1300
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 1300
## Synthesis Of 5 Eicosatetraenoic Acids 1300
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 1300
## Synthesis Of Bile Acids And Bile Salts 1300
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 1300
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 1300
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 1300
## Synthesis Of Diphthamide Eef2 1300
## Synthesis Of Dolichyl Phosphate 1300
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 1300
## Synthesis Of Gdp Mannose 1300
## Synthesis Of Glycosylphosphatidylinositol Gpi 1300
## Synthesis Of Ip2 Ip And Ins In The Cytosol 1300
## Synthesis Of Ip3 And Ip4 In The Cytosol 1300
## Synthesis Of Ketone Bodies 1300
## Synthesis Of Leukotrienes Lt And Eoxins Ex 1300
## Synthesis Of Lipoxins Lx 1300
## Synthesis Of Pa 1300
## Synthesis Of Pc 1300
## Synthesis Of Pe 1300
## Synthesis Of Pg 1300
## Synthesis Of Pi 1300
## Synthesis Of Pips At The Early Endosome Membrane 1300
## Synthesis Of Pips At The Er Membrane 1300
## Synthesis Of Pips At The Golgi Membrane 1300
## Synthesis Of Pips At The Late Endosome Membrane 1300
## Synthesis Of Pips At The Plasma Membrane 1300
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 1300
## Synthesis Of Pyrophosphates In The Cytosol 1300
## Synthesis Of Udp N Acetyl Glucosamine 1300
## Synthesis Of Very Long Chain Fatty Acyl Coas 1300
## Synthesis Of Wybutosine At G37 Of Trna Phe 1300
## Synthesis Secretion And Deacylation Of Ghrelin 1300
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 1300
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 1300
## Tachykinin Receptors Bind Tachykinins 1300
## Tbc Rabgaps 1300
## Tcf Dependent Signaling In Response To Wnt 1300
## Tcr Signaling 1300
## Telomere C Strand Lagging Strand Synthesis 1300
## Telomere C Strand Synthesis Initiation 1300
## Telomere Extension By Telomerase 1300
## Telomere Maintenance 1300
## Terminal Pathway Of Complement 1300
## Termination Of Translesion Dna Synthesis 1300
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 1300
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 1300
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 1300
## Tgf Beta Receptor Signaling Activates Smads 1300
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 1300
## The Activation Of Arylsulfatases 1300
## The Canonical Retinoid Cycle In Rods Twilight Vision 1300
## The Citric Acid Tca Cycle And Respiratory Electron Transport 1300
## The Fatty Acid Cycling Model 1300
## The Phototransduction Cascade 1300
## The Retinoid Cycle In Cones Daylight Vision 1300
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 1300
## Thrombin Signalling Through Proteinase Activated Receptors Pars 1300
## Thromboxane Signalling Through Tp Receptor 1300
## Thyroxine Biosynthesis 1300
## Tie2 Signaling 1300
## Tight Junction Interactions 1300
## Tnfr1 Induced Proapoptotic Signaling 1300
## Tnfr1 Mediated Ceramide Production 1300
## Toxicity Of Botulinum Toxin Type D Botd 1300
## Tp53 Regulates Metabolic Genes 1300
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 1300
## Tp53 Regulates Transcription Of Death Receptors And Ligands 1300
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 1300
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 1300
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1300
## Traf3 Dependent Irf Activation Pathway 1300
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 1300
## Traf6 Mediated Irf7 Activation 1300
## Trafficking Of Ampa Receptors 1300
## Trafficking Of Glur2 Containing Ampa Receptors 1300
## Trafficking Of Myristoylated Proteins To The Cilium 1300
## Trail Signaling 1300
## Trans Golgi Network Vesicle Budding 1300
## Transcription Coupled Nucleotide Excision Repair Tc Ner 1300
## Transcription Of E2f Targets Under Negative Control By Dream Complex 1300
## Transcription Of The Hiv Genome 1300
## Transcriptional Regulation By E2f6 1300
## Transcriptional Regulation By Runx1 1300
## Transcriptional Regulation By Runx3 1300
## Transcriptional Regulation By Small Rnas 1300
## Transcriptional Regulation By Tp53 1300
## Transcriptional Regulation Of Testis Differentiation 1300
## Transcriptional Regulation Of White Adipocyte Differentiation 1300
## Transferrin Endocytosis And Recycling 1300
## Translation 1300
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 1300
## Translation Of Sars Cov 1 Structural Proteins 1300
## Translation Of Sars Cov 2 Structural Proteins 1300
## Translesion Synthesis By Polh 1300
## Translesion Synthesis By Polk 1300
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 1300
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1300
## Transmission Across Chemical Synapses 1300
## Transport And Synthesis Of Paps 1300
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 1300
## Transport Of Connexons To The Plasma Membrane 1300
## Transport Of Fatty Acids 1300
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 1300
## Transport Of Mature Mrnas Derived From Intronless Transcripts 1300
## Transport Of Mature Transcript To Cytoplasm 1300
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 1300
## Transport Of Nucleotide Sugars 1300
## Transport Of Organic Anions 1300
## Transport Of Small Molecules 1300
## Transport Of The Slbp Dependant Mature Mrna 1300
## Transport Of Vitamins Nucleosides And Related Molecules 1300
## Transport To The Golgi And Subsequent Modification 1300
## Trif Mediated Programmed Cell Death 1300
## Triglyceride Biosynthesis 1300
## Triglyceride Catabolism 1300
## Triglyceride Metabolism 1300
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 1300
## Trna Aminoacylation 1300
## Trna Modification In The Mitochondrion 1300
## Trna Modification In The Nucleus And Cytosol 1300
## Trna Processing 1300
## Trna Processing In The Mitochondrion 1300
## Trna Processing In The Nucleus 1300
## Trp Channels 1300
## Tryptophan Catabolism 1300
## Type I Hemidesmosome Assembly 1300
## Tyrosine Catabolism 1300
## Tysnd1 Cleaves Peroxisomal Proteins 1300
## Ub Specific Processing Proteases 1300
## Ubiquinol Biosynthesis 1300
## Uch Proteinases 1300
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 1300
## Unwinding Of Dna 1300
## Uptake And Actions Of Bacterial Toxins 1300
## Uptake And Function Of Anthrax Toxins 1300
## Uptake And Function Of Diphtheria Toxin 1300
## Urea Cycle 1300
## Vasopressin Like Receptors 1300
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 1300
## Vegf Ligand Receptor Interactions 1300
## Vegfr2 Mediated Cell Proliferation 1300
## Vesicle Mediated Transport 1300
## Viral Messenger Rna Synthesis 1300
## Visual Phototransduction 1300
## Vitamin B1 Thiamin Metabolism 1300
## Vitamin B2 Riboflavin Metabolism 1300
## Vitamin B5 Pantothenate Metabolism 1300
## Vitamin C Ascorbate Metabolism 1300
## Vitamin D Calciferol Metabolism 1300
## Vitamins 1300
## Vldl Assembly 1300
## Vldl Clearance 1300
## Voltage Gated Potassium Channels 1300
## Vxpx Cargo Targeting To Cilium 1300
## Wax And Plasmalogen Biosynthesis 1300
## Wnt Mediated Activation Of Dvl 1300
## Xenobiotics 1300
## Zinc Efflux And Compartmentalization By The Slc30 Family 1300
## Zinc Influx Into Cells By The Slc39 Gene Family 1300
## Zinc Transporters 1300
## hits
## Interleukin 10 Signaling CCL2,CCL20,CD80,CD86,CSF2,CXCL10,CXCL8,ICAM1,IL10,IL18,IL1B,IL6,STAT3
## Interleukin 1 Processing CASP1,IL18,IL1B
## Chemokine Receptors Bind Chemokines CCL2,CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL6,CXCL8
## Interleukin 4 And Interleukin 13 Signaling CCL2,CXCL8,FOS,ICAM1,IL10,IL17A,IL18,IL1B,IL6,MMP3,MMP9,STAT3
## Purinergic Signaling In Leishmaniasis Infection CASP1,IL18,IL1B,NLRP3
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells CSF2,RUNX2
## Pyroptosis CASP1,HMGB1,IL18,IL1B
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway BIRC3,CD40,TNFSF11
## Gastrin Creb Signalling Pathway Via Pkc And Mapk CREB1,EGFR,MMP3
## Cd163 Mediating An Anti Inflammatory Response IL10,IL6
## Egfr Transactivation By Gastrin EGFR,MMP3
## Mapk3 Erk1 Activation CDK1,IL6
## Inflammasomes AIM2,CASP1,NLRP3
## Interleukin 6 Signaling IL6,STAT3
## Cd28 Dependent Vav1 Pathway CD80,CD86
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling CREB1,EGFR,FOS
## Trafficking And Processing Of Endosomal Tlr TLR3,TLR9
## Regulated Necrosis BIRC3,CASP1,HMGB1,IL18,IL1B
## Tnfs Bind Their Physiological Receptors CD70,TNFRSF11B,TNFSF11
## The Nlrp3 Inflammasome CASP1,NLRP3
## G2 M Dna Replication Checkpoint CDK1
## Mecp2 Regulates Transcription Factors CREB1
## Runx2 Regulates Chondrocyte Maturation RUNX2
## Activation Of Matrix Metalloproteinases MMP3,MMP8,MMP9
## Clec7a Inflammasome Pathway IL1B
## Fibronectin Matrix Formation CEACAM8
## Phosphorylation Of Emi1 CDK1
## Ptk6 Promotes Hif1a Stabilization EGFR
## Ticam1 Rip1 Mediated Ikk Complex Recruitment BIRC3,TLR3
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death TLR3
## Activation Of Nima Kinases Nek9 Nek6 Nek7 CDK1
## Creb Phosphorylation CREB1
## Ctla4 Inhibitory Signaling CD80,CD86
## Interleukin 37 Signaling CASP1,STAT3
## Signal Transduction By L1 EGFR,VAV2
## Cd28 Dependent Pi3k Akt Signaling CD80,CD86
## Activation Of C3 And C5 C4B
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde CREB1
## Interleukin 18 Signaling IL18
## Mecp2 Regulates Transcription Of Neuronal Ligands CREB1
## Raf Independent Mapk1 3 Activation CDK1,IL6
## Runx2 Regulates Genes Involved In Cell Migration RUNX2
## Interleukin 6 Family Signaling IL6,STAT3
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways AIM2,BIRC3,CASP1,NLRP3
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members STAT3
## E2f Enabled Inhibition Of Pre Replication Complex Formation CDK1
## Egfr Interacts With Phospholipase C Gamma EGFR
## Extra Nuclear Estrogen Signaling CREB1,EGFR,FOS,MMP3,MMP9
## Interleukin 23 Signaling STAT3
## Interleukin 9 Signaling STAT3
## Mapk1 Erk2 Activation IL6
## Activation Of The Ap 1 Family Of Transcription Factors FOS
## Akt Phosphorylates Targets In The Nucleus CREB1
## Camk Iv Mediated Phosphorylation Of Creb CREB1
## Interleukin 21 Signaling STAT3
## Mastl Facilitates Mitotic Progression CDK1
## P75ntr Regulates Axonogenesis OMG
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress CCL2,CXCL8
## Condensation Of Prometaphase Chromosomes CDK1
## Dap12 Interactions HLA-B,TREM1,VAV2
## Endosomal Vacuolar Pathway HLA-B
## Interleukin 27 Signaling STAT3
## Pd 1 Signaling HLA-DQB1,PDCD1LG2
## Signaling By Leptin STAT3
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex TLR3
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase CREB1
## Interleukin 35 Signalling STAT3
## Killing Mechanisms WNT5A
## Notch2 Intracellular Domain Regulates Transcription CREB1
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants STAT3
## Tandem Pore Domain Potassium Channels KCNK1
## Ticam1 Dependent Activation Of Irf3 Irf7 TLR3
## Tp53 Regulates Transcription Of Caspase Activators And Caspases CASP1
## Vldlr Internalisation And Degradation PCSK9
## Advanced Glycosylation Endproduct Receptor Signaling HMGB1
## Apoptosis Induced Dna Fragmentation HMGB1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex CDK1
## Diseases Of Immune System HMGB1,TLR3
## Dissolution Of Fibrin Clot SERPINE1
## Erbb2 Activates Ptk6 Signaling EGFR
## Irf3 Mediated Induction Of Type I Ifn IFI16
## Mapk Targets Nuclear Events Mediated By Map Kinases CREB1,FOS
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation STAT3
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling TLR9
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 WNT5A
## Perk Regulates Gene Expression CCL2,CXCL8
## Cd28 Co Stimulation CD80,CD86
## Golgi Cisternae Pericentriolar Stack Reorganization CDK1
## Interleukin 15 Signaling STAT3
## Shc1 Events In Egfr Signaling EGFR
## Constitutive Signaling By Egfrviii EGFR
## Depolymerisation Of The Nuclear Lamina CDK1
## Erbb2 Regulates Cell Motility EGFR
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists WNT5A
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors EGFR
## Wnt5a Dependent Internalization Of Fzd4 WNT5A
## Yap1 And Wwtr1 Taz Stimulated Gene Expression RUNX2
## Costimulation By The Cd28 Family CD80,CD86,HLA-DQB1,PDCD1LG2
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc MUC5B
## Grb2 Events In Erbb2 Signaling EGFR
## Nod1 2 Signaling Pathway BIRC3,CASP1
## Pi3k Events In Erbb2 Signaling EGFR
## Signaling By Erbb2 Ecd Mutants EGFR
## Sting Mediated Induction Of Host Immune Responses IFI16
## Sumoylation Of Dna Methylation Proteins DNMT3A
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 CDK1
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps MUC5B
## Gab1 Signalosome EGFR
## Interleukin 12 Family Signaling IL10,MIF,STAT3
## Rip Mediated Nfkb Activation Via Zbp1 TLR3
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation IL10,MIF
## Constitutive Signaling By Aberrant Pi3k In Cancer CD19,CD80,CD86,EGFR
## Irak4 Deficiency Tlr2 4 HMGB1
## Mecp2 Regulates Neuronal Receptors And Channels CREB1
## Signaling By Cytosolic Fgfr1 Fusion Mutants STAT3
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest CDK1
## Ngf Stimulated Transcription CREB1,FOS
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants EGFR
## Initiation Of Nuclear Envelope Ne Reformation CDK1
## Ldl Clearance PCSK9
## Phase 4 Resting Membrane Potential KCNK1
## Phosphorylation Of The Apc C CDK1
## Pka Mediated Phosphorylation Of Creb CREB1
## Signaling By Kit In Disease STAT3
## Signaling By Pdgfr In Disease STAT3
## Tnfr2 Non Canonical Nf Kb Pathway BIRC3,CD40,CD70,TNFRSF11B,TNFSF11
## Collagen Degradation MMP3,MMP8,MMP9
## Regulation Of Tlr By Endogenous Ligand HMGB1
## Signaling By Scf Kit MMP9,STAT3
## Zbp1 Dai Mediated Induction Of Type I Ifns TLR3
## E2f Mediated Regulation Of Dna Replication CDK1
## Interleukin 2 Family Signaling CSF2,STAT3
## Pi3k Akt Signaling In Cancer CD19,CD80,CD86,CREB1,EGFR
## Shc1 Events In Erbb2 Signaling EGFR
## Ikk Complex Recruitment Mediated By Rip1 BIRC3
## Termination Of O Glycan Biosynthesis MUC5B
## Apc C Cdc20 Mediated Degradation Of Cyclin B CDK1
## Growth Hormone Receptor Signaling STAT3
## Interleukin 12 Signaling IL10,MIF
## Runx2 Regulates Osteoblast Differentiation RUNX2
## Traf6 Mediated Nf Kb Activation HMGB1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc HLA-B
## Cyclin A B1 B2 Associated Events During G2 M Transition CDK1
## Inactivation Of Csf3 G Csf Signaling STAT3
## Notch3 Activation And Transmission Of Signal To The Nucleus EGFR
## Signaling By Egfr In Cancer EGFR
## Constitutive Signaling By Akt1 E17k In Cancer CREB1
## Dectin 2 Family MUC5B
## Interleukin 17 Signaling CREB1,FOS,IL17A
## Interleukin 20 Family Signaling STAT3
## Negative Regulation Of The Pi3k Akt Network CD19,CD80,CD86,EGFR,IL33
## Signaling By Erbb2 In Cancer EGFR
## Wnt Ligand Biogenesis And Trafficking WNT5A
## Bmal1 Clock Npas2 Activates Circadian Gene Expression SERPINE1
## Eph Ephrin Mediated Repulsion Of Cells MMP9,VAV2
## G0 And Early G1 CDK1
## Interleukin Receptor Shc Signaling CSF2
## Toll Like Receptor 9 Tlr9 Cascade CREB1,FOS,HMGB1,TLR9
## Vegfr2 Mediated Vascular Permeability VAV2
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling CREB1
## Myd88 Independent Tlr4 Cascade BIRC3,CREB1,FOS,HMGB1
## Dap12 Signaling VAV2
## Downregulation Of Erbb2 Signaling EGFR
## Downstream Signal Transduction STAT3
## G1 S Specific Transcription CDK1
## Interleukin 1 Family Signaling CASP1,HMGB1,IL18,IL1B,IL33,STAT3
## Ripk1 Mediated Regulated Necrosis BIRC3
## Signaling By Ptk6 EGFR,STAT3
## Signaling By Csf3 G Csf STAT3
## Tnfr1 Induced Nfkappab Signaling Pathway BIRC3
## Egfr Downregulation EGFR
## Fgfr1 Mutant Receptor Activation STAT3
## Runx2 Regulates Bone Development RUNX2
## Transcriptional Regulation Of Pluripotent Stem Cells STAT3
## Regulation Of Mecp2 Expression And Activity CREB1
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription SERPINE1
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex HMGB1
## Cargo Concentration In The Er CD59
## Plasma Lipoprotein Clearance PCSK9
## Sialic Acid Metabolism NANP
## Signaling By Notch2 CREB1
## Assembly Of Collagen Fibrils And Other Multimeric Structures MMP3,MMP9
## Gpvi Mediated Activation Cascade VAV2
## Nuclear Events Kinase And Transcription Factor Activation CREB1,FOS
## Regulation Of Tnfr1 Signaling BIRC3
## Signaling By Interleukins CASP1,CCL2,CCL20,CD80,CD86,CREB1,CSF2,CXCL10,CXCL8,FOS,HMGB1,ICAM1,IL10,IL17A,IL18,IL1B,IL33,IL6,MIF,MMP3,MMP9,STAT3
## Cytosolic Sensors Of Pathogen Associated Dna IFI16,TLR3
## Interleukin 7 Signaling STAT3
## Nuclear Pore Complex Npc Disassembly CDK1
## Ca Dependent Events CREB1
## Metalloprotease Dubs NLRP3
## Ovarian Tumor Domain Proteases CDK1
## Peptide Ligand Binding Receptors CCL2,CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL6,CXCL8
## Regulation Of Tp53 Expression And Degradation CDK1
## Rhoh Gtpase Cycle VAMP3
## Senescence Associated Secretory Phenotype Sasp CXCL8,FOS,IL6,STAT3
## Signaling By Fgfr1 In Disease STAT3
## Toll Like Receptor Cascades BIRC3,CREB1,FOS,HMGB1,TLR3,TLR9
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors EGFR
## Association Of Tric Cct With Target Proteins During Biosynthesis STAT3
## Complement Cascade C4B,CD19,CD55,CD59
## Generation Of Second Messenger Molecules HLA-DQB1
## Dag And Ip3 Signaling CREB1
## Interferon Gamma Signaling HLA-B,HLA-DQB1,ICAM1
## Transcriptional Regulation By Ventx IL6
## Beta Defensins DEFB4A
## Circadian Clock CREB1,SERPINE1
## Rhob Gtpase Cycle VAMP3,VAV2
## Rhof Gtpase Cycle VAMP3
## Sumoylation Of Transcription Cofactors UHRF2
## Tnf Signaling BIRC3
## Tp53 Regulates Transcription Of Cell Death Genes CASP1
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer SERPINE1
## Rhoc Gtpase Cycle VAMP3,VAV2
## Rhog Gtpase Cycle VAMP3,VAV2
## Heme Signaling CREB1
## Interleukin 3 Interleukin 5 And Gm Csf Signaling CSF2
## Irs Mediated Signalling TLR9
## Retrograde Transport At The Trans Golgi Network VAMP3
## Signaling By Notch3 EGFR
## Toll Like Receptor Tlr1 Tlr2 Cascade CREB1,FOS,HMGB1
## Tp53 Regulates Transcription Of Cell Cycle Genes CDK1
## Antigen Processing Cross Presentation HLA-B,HMGB1,VAMP3
## Apoptotic Execution Phase HMGB1
## Cargo Recognition For Clathrin Mediated Endocytosis EGFR,VAMP3,WNT5A
## Defensins DEFB4A
## Rhod Gtpase Cycle VAMP3
## Signaling By Egfr EGFR
## Signaling By Erbb2 EGFR
## Fceri Mediated Mapk Activation FOS,VAV2
## G Protein Mediated Events CREB1
## Insulin Receptor Signalling Cascade TLR9
## Intrinsic Pathway For Apoptosis STAT3
## Nuclear Envelope Breakdown CDK1
## Rhoj Gtpase Cycle VAMP3
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r TLR9
## Transcriptional Activation Of Mitochondrial Biogenesis CREB1
## Ca2 Pathway WNT5A
## Collagen Formation MMP3,MMP9
## Eph Ephrin Signaling MMP9,VAV2
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell CD19,CD40,FCGR2B,HLA-B,ICAM1,TREM1
## Nrage Signals Death Through Jnk VAV2
## O Linked Glycosylation Of Mucins MUC5B
## Rac2 Gtpase Cycle VAMP3,VAV2
## Rhoq Gtpase Cycle VAMP3
## Signaling By Erbb4 EGFR
## Signaling By Pdgf STAT3
## Tp53 Regulates Transcription Of Dna Repair Genes FOS
## Transcriptional Regulation Of Granulopoiesis CREB1,STAT3
## Unfolded Protein Response Upr CCL2,CXCL8
## Asymmetric Localization Of Pcp Proteins WNT5A
## Class B 2 Secretin Family Receptors CD55,WNT5A
## Copi Mediated Anterograde Transport CD55,CD59
## Copii Mediated Vesicle Transport CD59
## Diseases Associated With O Glycosylation Of Proteins MUC5B
## Dna Methylation DNMT3A
## Fcgr3a Mediated Il10 Synthesis CREB1,IL10
## Interleukin 1 Signaling HMGB1,IL1B
## Ncam Signaling For Neurite Out Growth CREB1
## P75 Ntr Receptor Mediated Signalling OMG,VAV2
## Rac3 Gtpase Cycle VAMP3,VAV2
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps CST3,IL6,PCSK9
## Signaling By Fgfr In Disease STAT3
## Synthesis Of Substrates In N Glycan Biosythesis NANP
## Transcriptional Regulation By Mecp2 CREB1
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers CD19
## Apc C Mediated Degradation Of Cell Cycle Proteins CDK1
## Aurka Activation By Tpx2 CDK1
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein NANP
## Cell Death Signalling Via Nrage Nrif And Nade VAV2
## Clathrin Mediated Endocytosis EGFR,VAMP3,WNT5A
## Condensation Of Prophase Chromosomes CDK1
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta HMGB1
## Death Receptor Signalling BIRC3,OMG,VAV2
## Degradation Of The Extracellular Matrix MMP3,MMP8,MMP9
## Ecm Proteoglycans SERPINE1
## Fceri Mediated Ca 2 Mobilization VAV2
## G Alpha 12 13 Signalling Events VAV2
## Initial Triggering Of Complement C4B
## Integrin Cell Surface Interactions ICAM1
## Interferon Alpha Beta Signaling HLA-B
## L1cam Interactions EGFR,VAV2
## Nuclear Envelope Ne Reassembly CDK1
## Plasma Lipoprotein Assembly Remodeling And Clearance PCSK9
## Potential Therapeutics For Sars TLR9
## Prc2 Methylates Histones And Dna DNMT3A
## Programmed Cell Death BIRC3,CASP1,HMGB1,IL18,IL1B,STAT3
## Recruitment Of Mitotic Centrosome Proteins And Complexes CDK1
## Regulation Of Plk1 Activity At G2 M Transition CDK1
## Regulation Of Runx2 Expression And Activity RUNX2
## Rmts Methylate Histone Arginines DNMT3A
## Signaling By Insulin Receptor TLR9
## Signaling By Met STAT3
## Signaling By Ntrks CREB1,FOS,STAT3
## Signaling By Tgf Beta Receptor Complex SERPINE1
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint CDK1
## Transcriptional Regulation By Runx2 CDK1,RUNX2
## 2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism
## Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism
## Abc Family Proteins Mediated Transport
## Abc Transporter Disorders
## Abc Transporters In Lipid Homeostasis
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Fyn
## Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Pi3k
## Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activated Tak1 Mediates P38 Mapk Activation
## Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria
## Activation Of Bh3 Only Proteins
## Activation Of Caspases Through Apoptosome Mediated Cleavage
## Activation Of Gene Expression By Srebf Srebp
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon
## Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Nmda Receptors And Postsynaptic Events CREB1
## Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells
## Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps
## Adaptive Immune System CD19,CD40,CD80,CD86,FCGR2B,HLA-B,HLA-DQB1,HMGB1,ICAM1,PDCD1LG2,TREM1,VAMP3
## Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions
## Adora2b Mediated Anti Inflammatory Cytokines Production CREB1,IL6
## Adp Signalling Through P2y Purinoceptor 1
## Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors
## Aflatoxin Activation And Detoxification
## Aggrephagy
## Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway
## Alternative Complement Activation
## Amine Ligand Binding Receptors
## Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity
## Amyloid Fiber Formation CST3
## Anchoring Fibril Formation
## Anchoring Of The Basal Body To The Plasma Membrane CDK1
## Androgen Biosynthesis
## Anti Inflammatory Response Favouring Leishmania Parasite Infection CREB1,IL10,IL6
## Antigen Processing Ubiquitination Proteasome Degradation
## Antimicrobial Peptides DEFB4A
## Antiviral Mechanism By Ifn Stimulated Genes
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection
## Apoptosis HMGB1,STAT3
## Apoptotic Cleavage Of Cell Adhesion Proteins
## Apoptotic Cleavage Of Cellular Proteins
## Apoptotic Factor Mediated Response
## Aquaporin Mediated Transport
## Arachidonate Production From Dag
## Arachidonic Acid Metabolism
## Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling
## Asparagine N Linked Glycosylation CD55,CD59,NANP
## Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex
## Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry
## Attachment Of Gpi Anchor To Upar
## Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## Autophagy
## B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair
## Base Excision Repair Ap Site Formation
## Basigin Interactions
## Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Independent Wnt Signaling WNT5A
## Beta Catenin Phosphorylation Cascade
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids
## Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism
## Binding And Uptake Of Ligands By Scavenger Receptors
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters
## Biological Oxidations
## Biosynthesis Of Epa Derived Spms
## Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins
## Biosynthesis Of Specialized Proresolving Mediators Spms
## Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis
## Branched Chain Amino Acid Catabolism
## Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions
## C Type Lectin Receptors Clrs IL1B,MUC5B
## Ca2 Activated K Channels
## Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin
## Cardiac Conduction KCNK1
## Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism
## Caspase Activation Via Death Receptors In The Presence Of Ligand
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway
## Caspase Mediated Cleavage Of Cytoskeletal Proteins
## Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation
## Cdc42 Gtpase Cycle VAMP3,VAV2
## Cdc6 Association With The Orc Origin Complex
## Cell Cell Communication
## Cell Cell Junction Organization
## Cell Cycle CDK1
## Cell Cycle Checkpoints CDK1
## Cell Cycle Mitotic CDK1
## Cell Extracellular Matrix Interactions
## Cell Junction Organization
## Cell Surface Interactions At The Vascular Wall CEACAM8,MIF,TREM1
## Cellular Hexose Transport
## Cellular Response To Chemical Stress NLRP3,STAT3
## Cellular Response To Heat Stress
## Cellular Response To Hypoxia
## Cellular Response To Starvation
## Cellular Responses To External Stimuli CREB1,CXCL8,FOS,IL6,NLRP3,STAT3
## Cellular Senescence CXCL8,FOS,IL6,STAT3
## Cgmp Effects
## Chaperone Mediated Autophagy
## Chl1 Interactions
## Cholesterol Biosynthesis
## Choline Catabolism
## Chondroitin Sulfate Biosynthesis
## Chondroitin Sulfate Dermatan Sulfate Metabolism
## Chrebp Activates Metabolic Gene Expression
## Chromatin Modifying Enzymes DNMT3A
## Chromosome Maintenance
## Chylomicron Assembly
## Chylomicron Clearance
## Chylomicron Remodeling
## Cilium Assembly CDK1
## Citric Acid Cycle Tca Cycle
## Class A 1 Rhodopsin Like Receptors CCL2,CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL6,CXCL8
## Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Mhc Mediated Antigen Processing Presentation HLA-B,HMGB1,VAMP3
## Class I Peroxisomal Membrane Protein Import
## Clec7a Dectin 1 Induces Nfat Activation
## Clec7a Dectin 1 Signaling IL1B
## Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization
## Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complex I Biogenesis
## Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic
## Creatine Metabolism
## Creation Of C4 And C2 Activators
## Creb3 Factors Activate Genes
## Cristae Formation
## Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Crosslinking Of Collagen Fibrils
## Cs Ds Degradation
## Cyclin A Cdk2 Associated Events At S Phase Entry
## Cyclin D Associated Events In G1
## Cyp2e1 Reactions
## Cytochrome C Mediated Apoptotic Response
## Cytochrome P450 Arranged By Substrate Type
## Cytokine Signaling In Immune System BIRC3,CASP1,CCL2,CCL20,CD40,CD70,CD80,CD86,CREB1,CSF2,CXCL10,CXCL8,FOS,HLA-B,HLA-DQB1,HMGB1,ICAM1,IL10,IL17A,IL18,IL1B,IL33,IL6,MIF,MMP3,MMP9,STAT3,TNFRSF11B,TNFSF11
## Cytoprotection By Hmox1 NLRP3,STAT3
## Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation
## Darpp 32 Events
## Dcc Mediated Attractive Signaling
## Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna
## Dectin 1 Mediated Noncanonical Nf Kb Signaling
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type
## Defective Cftr Causes Cystic Fibrosis
## Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2
## Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B
## Defective Factor Viii Causes Hemophilia A
## Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks
## Degradation Of Axin
## Degradation Of Beta Catenin By The Destruction Complex
## Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models
## Dermatan Sulfate Biosynthesis
## Detoxification Of Reactive Oxygen Species
## Deubiquitination BIRC3,CDK1,IL33,NLRP3
## Developmental Biology CREB1,EGFR,MMP9,STAT3,VAV2
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production
## Digestion
## Digestion And Absorption
## Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane
## Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With Glycosylation Precursor Biosynthesis
## Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair
## Diseases Of Glycosylation MUC5B
## Diseases Of Metabolism MUC5B
## Diseases Of Mismatch Repair Mmr
## Diseases Of Mitotic Cell Cycle
## Diseases Of Programmed Cell Death DNMT3A
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers CD19,CD80,CD86,CREB1,EGFR,STAT3
## Disinhibition Of Snare Formation
## Disorders Of Transmembrane Transporters
## Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass
## Dna Damage Recognition In Gg Ner
## Dna Damage Reversal
## Dna Damage Telomere Stress Induced Senescence
## Dna Double Strand Break Repair
## Dna Double Strand Break Response
## Dna Repair
## Dna Replication
## Dna Replication Initiation
## Dna Replication Pre Initiation
## Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Erbb4 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signaling Events Of B Cell Receptor Bcr
## Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4
## Dscam Interactions
## Dual Incision In Gg Ner
## Dual Incision In Tc Ner
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Early Phase Of Hiv Life Cycle
## Effects Of Pip2 Hydrolysis
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors
## Eicosanoids
## Elastic Fibre Formation
## Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Enos Activation
## Epha Mediated Growth Cone Collapse
## Ephb Mediated Forward Signaling
## Ephrin Signaling
## Epigenetic Regulation Of Gene Expression DNMT3A
## Er Quality Control Compartment Erqc
## Er To Golgi Anterograde Transport CD55,CD59
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets
## Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras
## Erythropoietin Activates Stat5
## Esr Mediated Signaling CREB1,EGFR,FOS,MMP3,MMP9
## Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis
## Estrogen Dependent Gene Expression FOS
## Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation
## Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus
## Extension Of Telomeres
## Extracellular Matrix Organization CEACAM8,ICAM1,MMP3,MMP8,MMP9,SERPINE1
## Extrinsic Pathway Of Fibrin Clot Formation
## Factors Involved In Megakaryocyte Development And Platelet Production
## Fanconi Anemia Pathway
## Fasl Cd95l Signaling
## Fatty Acid Metabolism
## Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer
## Fc Epsilon Receptor Fceri Signaling FOS,VAV2
## Fceri Mediated Nf Kb Activation
## Fcgamma Receptor Fcgr Dependent Phagocytosis VAV2
## Fcgr Activation
## Fertilization
## Fgfr1 Ligand Binding And Activation
## Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling
## Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric
## Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling
## Formation Of Fibrin Clot Clotting Cascade
## Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex
## Formation Of The Beta Catenin Tcf Transactivating Complex
## Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription
## Foxo Mediated Transcription Of Cell Cycle Genes
## Foxo Mediated Transcription Of Cell Death Genes
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling
## Fructose Catabolism
## Fructose Metabolism
## G Alpha I Signalling Events CCL20,CCL25,CCR9,CREB1,CXCL10,CXCL11,CXCL6,CXCL8
## G Alpha Q Signalling Events CREB1,EGFR,MMP3
## G Alpha S Signalling Events
## G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Cdc42
## G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation
## G Protein Beta Gamma Signalling
## G1 S Dna Damage Checkpoints
## G2 M Checkpoints CDK1
## G2 M Dna Damage Checkpoint CDK1
## G2 Phase
## Gaba B Receptor Activation
## Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation
## Galactose Catabolism
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly
## Gap Junction Degradation
## Gap Junction Trafficking And Regulation
## Gdp Fucose Biosynthesis
## Gene Silencing By Rna
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis
## Gluconeogenesis
## Glucose Metabolism
## Glucuronidation
## Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation
## Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism
## Glycogen Storage Diseases
## Glycogen Synthesis
## Glycolysis
## Glycosaminoglycan Metabolism
## Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis
## Golgi To Er Retrograde Transport
## Gp1b Ix V Activation Signalling
## Gpcr Ligand Binding CCL2,CCL20,CCL25,CCR9,CD55,CXCL10,CXCL11,CXCL6,CXCL8,WNT5A
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins
## Grb7 Events In Erbb2 Signaling
## Hats Acetylate Histones
## Hcmv Early Events CREB1,EGFR
## Hcmv Infection CREB1,EGFR
## Hcmv Late Events
## Hdacs Deacetylate Histones
## Hdl Assembly
## Hdl Clearance
## Hdl Remodeling
## Hdms Demethylate Histones
## Hdr Through Homologous Recombination Hrr
## Hdr Through Mmej Alt Nhej
## Hdr Through Single Strand Annealing Ssa
## Hedgehog Ligand Biogenesis
## Hedgehog Off State
## Hedgehog On State
## Heme Biosynthesis
## Heme Degradation
## Hemostasis CD63,CEACAM8,MIF,SERPINE1,TREM1,VAV2
## Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism
## Hiv Elongation Arrest And Recovery
## Hiv Infection
## Hiv Life Cycle
## Hiv Transcription Elongation
## Hiv Transcription Initiation
## Homologous Dna Pairing And Strand Exchange
## Homology Directed Repair
## Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis
## Hs Gag Degradation
## Hsf1 Activation
## Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc
## Ikba Variant Leads To Eda Id
## Il 6 Type Cytokine Receptor Ligand Interactions
## Inactivation Of Cdc42 And Rac1
## Incretin Synthesis Secretion And Inactivation
## Infection With Mycobacterium Tuberculosis
## Infectious Disease CASP1,CREB1,EGFR,IL10,IL18,IL1B,IL6,NLRP3,TLR9,VAV2,WNT5A
## Influenza Infection
## Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Innate Immune System AIM2,BIRC3,C4B,CASP1,CD19,CD55,CD59,CD63,CEACAM8,CREB1,CST3,DEFB4A,FOS,HLA-B,HMGB1,IFI16,IL1B,MIF,MMP8,MMP9,MUC5B,NLRP3,SLPI,TLR3,TLR9,TREM1,VAV2
## Inositol Phosphate Metabolism
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane
## Insulin Processing
## Insulin Receptor Recycling
## Integration Of Energy Metabolism
## Integration Of Provirus
## Integrin Signaling
## Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates
## Interferon Signaling HLA-B,HLA-DQB1,ICAM1
## Interleukin 2 Signaling
## Interleukin 36 Pathway
## Intestinal Absorption
## Intra Golgi And Retrograde Golgi To Er Traffic VAMP3
## Intra Golgi Traffic
## Intracellular Signaling By Second Messengers CD19,CD80,CD86,CREB1,EGFR,IL33
## Intraflagellar Transport
## Intrinsic Pathway Of Fibrin Clot Formation
## Inwardly Rectifying K Channels
## Ion Channel Transport BEST2
## Ion Homeostasis
## Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors
## Irak1 Recruits Ikk Complex
## Irak2 Mediated Activation Of Tak1 Complex
## Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn
## Iron Uptake And Transport
## Irs Activation
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1
## Josephin Domain Dubs
## Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism
## Keratinization
## Ketone Body Metabolism
## Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna
## Lagging Strand Synthesis
## Laminin Interactions
## Late Endosomal Microautophagy
## Lectin Pathway Of Complement Activation
## Leishmania Infection CASP1,CREB1,IL10,IL18,IL1B,IL6,NLRP3,VAV2,WNT5A
## Leukotriene Receptors
## Lgi Adam Interactions
## Ligand Receptor Interactions
## Linoleic Acid La Metabolism
## Lipid Particle Organization
## Lipophagy
## Listeria Monocytogenes Entry Into Host Cells
## Long Term Potentiation
## Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism
## Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors
## M Phase CDK1
## Map2k And Mapk Activation
## Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Mapk Family Signaling Cascades CDK1,CSF2,EGFR,IL6
## Mapk6 Mapk4 Signaling CDK1
## Maturation Of Nucleoprotein
## Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein
## Meiosis
## Meiotic Recombination
## Meiotic Synapsis
## Melanin Biosynthesis
## Membrane Trafficking CD55,CD59,EGFR,VAMP3,WNT5A
## Met Activates Pi3k Akt Signaling
## Met Activates Ptk2 Signaling
## Met Activates Ptpn11
## Met Activates Rap1 And Rac1
## Met Activates Ras Signaling
## Met Interacts With Tns Proteins
## Met Promotes Cell Motility
## Met Receptor Activation
## Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones
## Metabolism Of Amino Acids And Derivatives
## Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Carbohydrates
## Metabolism Of Cofactors
## Metabolism Of Fat Soluble Vitamins
## Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Lipids
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation
## Metabolism Of Nucleotides
## Metabolism Of Polyamines
## Metabolism Of Porphyrins
## Metabolism Of Rna
## Metabolism Of Steroid Hormones
## Metabolism Of Steroids
## Metabolism Of Vitamins And Cofactors
## Metabolism Of Water Soluble Vitamins And Cofactors
## Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins
## Metallothioneins Bind Metals
## Methionine Salvage Pathway
## Methylation
## Mhc Class Ii Antigen Presentation HLA-DQB1
## Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle
## Miscellaneous Substrates
## Miscellaneous Transport And Binding Events
## Mismatch Repair
## Mitochondrial Biogenesis CREB1
## Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import
## Mitochondrial Translation
## Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling
## Mitophagy
## Mitotic G1 Phase And G1 S Transition CDK1
## Mitotic G2 G2 M Phases CDK1
## Mitotic Metaphase And Anaphase CDK1
## Mitotic Prometaphase CDK1
## Mitotic Prophase CDK1
## Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis
## Modulation By Mtb Of Host Immune System
## Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis
## Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing
## Mrna Editing C To U Conversion
## Mrna Splicing
## Mrna Splicing Minor Pathway
## Mtor Signalling
## Mtorc1 Mediated Signalling
## Mucopolysaccharidoses
## Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors
## Muscle Contraction KCNK1
## Myoclonic Epilepsy Of Lafora
## Myogenesis
## N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters
## Nade Modulates Death Signalling
## Ncam1 Interactions
## Nectin Necl Trans Heterodimerization
## Neddylation
## Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Epigenetic Regulation Of Rrna Expression
## Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Fgfr1 Signaling
## Negative Regulation Of Fgfr2 Signaling
## Negative Regulation Of Fgfr3 Signaling
## Negative Regulation Of Fgfr4 Signaling
## Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Negative Regulators Of Ddx58 Ifih1 Signaling
## Nephrin Family Interactions
## Nervous System Development CREB1,EGFR,MMP9,VAV2
## Netrin 1 Signaling
## Netrin Mediated Repulsion Signals
## Neurexins And Neuroligins
## Neurofascin Interactions
## Neuronal System CREB1,KCNK1
## Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance
## Neurotransmitter Receptors And Postsynaptic Signal Transmission CREB1
## Neurotransmitter Release Cycle
## Neutrophil Degranulation CD55,CD59,CD63,CEACAM8,CST3,HLA-B,HMGB1,MIF,MMP8,MMP9,SLPI
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10
## Nf Kb Is Activated And Signals Survival
## Ngf Independant Trka Activation
## Nicotinamide Salvaging
## Nicotinate Metabolism
## Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3
## Nonhomologous End Joining Nhej
## Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle
## Nostrin Mediated Enos Trafficking
## Notch Hlh Transcription Pathway
## Notch1 Intracellular Domain Regulates Transcription
## Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch3 Intracellular Domain Regulates Transcription
## Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrcam Interactions
## Nrif Signals Cell Death From The Nucleus
## Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1
## Nuclear Import Of Rev Protein
## Nuclear Receptor Transcription Pathway
## Nuclear Signaling By Erbb4
## Nucleobase Biosynthesis
## Nucleobase Catabolism
## Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors
## Nucleotide Salvage
## O Glycosylation Of Tsr Domain Containing Proteins
## O Linked Glycosylation MUC5B
## Oas Antiviral Response
## Olfactory Signaling Pathway
## Oncogene Induced Senescence
## Oncogenic Mapk Signaling
## Opioid Signalling CREB1
## Opsins
## Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organelle Biogenesis And Maintenance CDK1,CREB1
## Organic Anion Transport
## Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport
## Organic Cation Transport
## Other Interleukin Signaling
## Other Semaphorin Interactions
## Oxidative Stress Induced Senescence FOS
## P130cas Linkage To Mapk Signaling For Integrins
## P2y Receptors
## P38mapk Events
## P75ntr Negatively Regulates Cell Cycle Via Sc1
## P75ntr Recruits Signalling Complexes
## P75ntr Signals Via Nf Kb
## Parasite Infection VAV2
## Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair
## Pcp Ce Pathway WNT5A
## Pecam1 Interactions
## Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis
## Peptide Hormone Metabolism
## Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import
## Pexophagy
## Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation
## Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4
## Phospholipid Metabolism
## Physiological Factors
## Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4
## Pi Metabolism
## Pi3k Akt Activation
## Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation
## Pink1 Prkn Mediated Mitophagy
## Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines
## Plasma Lipoprotein Assembly
## Plasma Lipoprotein Remodeling
## Platelet Activation Signaling And Aggregation CD63,SERPINE1,VAV2
## Platelet Adhesion To Exposed Collagen
## Platelet Aggregation Plug Formation
## Platelet Calcium Homeostasis
## Platelet Homeostasis
## Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events
## Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway
## Post Translational Modification Synthesis Of Gpi Anchored Proteins
## Postmitotic Nuclear Pore Complex Npc Reformation
## Potassium Channels KCNK1
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Pre Notch Expression And Processing
## Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna
## Processing Of Dna Double Strand Break Ends
## Processing Of Intronless Pre Mrnas
## Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand
## Prolactin Receptor Signaling
## Prolonged Erk Activation Events
## Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors
## Protein Folding STAT3
## Protein Localization
## Protein Methylation
## Protein Protein Interactions At Synapses
## Protein Repair
## Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport
## Pten Regulation
## Ptk6 Expression
## Ptk6 Regulates Cell Cycle
## Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis
## Purine Salvage
## Pyrimidine Catabolism
## Pyrimidine Salvage
## Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway
## Rab Gefs Exchange Gtp For Gdp On Rabs
## Rab Geranylgeranylation
## Rab Regulation Of Trafficking
## Rac1 Gtpase Cycle VAMP3,VAV2
## Raf Activation
## Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Mediated Mitophagy
## Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recruitment Of Numa To Mitotic Centrosomes CDK1
## Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp
## Recycling Pathway Of L1
## Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr
## Regulation By C Flip
## Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Commissural Axon Pathfinding By Slit And Robo
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos
## Regulation Of Foxo Transcriptional Activity By Acetylation
## Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Hmox1 Expression And Activity
## Regulation Of Hsf1 Mediated Heat Shock Response
## Regulation Of Ifna Signaling
## Regulation Of Ifng Signaling
## Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Secretion
## Regulation Of Kit Signaling
## Regulation Of Lipid Metabolism By Pparalpha
## Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps
## Regulation Of Runx1 Expression And Activity
## Regulation Of Runx3 Expression And Activity
## Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal
## Regulation Of Tp53 Activity CDK1
## Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors
## Regulation Of Tp53 Activity Through Methylation
## Regulation Of Tp53 Activity Through Phosphorylation
## Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Repression Of Wnt Target Genes
## Reproduction
## Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Resolution Of D Loop Structures
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa
## Resolution Of Sister Chromatid Cohesion CDK1
## Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis
## Response To Elevated Platelet Cytosolic Ca2 CD63,SERPINE1
## Response To Metal Ions
## Ret Signaling
## Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling
## Reversible Hydration Of Carbon Dioxide
## Rho Gtpase Cycle VAMP3,VAV2
## Rho Gtpase Effectors
## Rho Gtpases Activate Cit
## Rho Gtpases Activate Formins
## Rho Gtpases Activate Iqgaps
## Rho Gtpases Activate Ktn1
## Rho Gtpases Activate Nadph Oxidases
## Rho Gtpases Activate Paks
## Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks
## Rho Gtpases Activate Wasps And Waves
## Rhoa Gtpase Cycle VAMP3,VAV2
## Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle
## Rhot1 Gtpase Cycle
## Rhou Gtpase Cycle
## Rhov Gtpase Cycle
## Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination
## Rnd1 Gtpase Cycle
## Rnd2 Gtpase Cycle
## Rnd3 Gtpase Cycle
## Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression
## Ros And Rns Production In Phagocytes
## Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol
## Rrna Processing
## Rrna Processing In The Mitochondrion
## Rsk Activation
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Expression Of Components Of Tight Junctions
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf
## Runx3 Regulates Wnt Signaling
## Runx3 Regulates Yap1 Mediated Transcription
## S Phase
## Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection
## Sars Cov 2 Infection
## Sars Cov Infections TLR9
## Scavenging By Class A Receptors
## Scavenging By Class B Receptors
## Scavenging By Class F Receptors
## Scavenging Of Heme From Plasma
## Scf Skp2 Mediated Degradation Of P27 P21
## Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selective Autophagy
## Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Semaphorin Interactions
## Sensing Of Dna Double Strand Breaks
## Sensory Perception
## Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids
## Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors
## Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r
## Shc1 Events In Erbb4 Signaling
## Signal Amplification
## Signal Attenuation
## Signal Regulatory Protein Family Interactions
## Signaling By Activin
## Signaling By Bmp
## Signaling By Braf And Raf Fusions
## Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Erythropoietin
## Signaling By Fgfr
## Signaling By Fgfr1
## Signaling By Fgfr2
## Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease
## Signaling By Fgfr3
## Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4
## Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Gpcr CCL2,CCL20,CCL25,CCR9,CD55,CREB1,CXCL10,CXCL11,CXCL6,CXCL8,EGFR,MMP3,VAV2,WNT5A
## Signaling By Hedgehog
## Signaling By Hippo
## Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Moderate Kinase Activity Braf Mutants
## Signaling By Mras Complex Mutants
## Signaling By Mst1
## Signaling By Nodal
## Signaling By Notch CREB1,EGFR
## Signaling By Notch1
## Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 Pest Domain Mutants In Cancer
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch4
## Signaling By Ntrk2 Trkb
## Signaling By Ntrk3 Trkc
## Signaling By Nuclear Receptors CREB1,EGFR,FOS,MMP3,MMP9
## Signaling By Receptor Tyrosine Kinases CREB1,EGFR,FOS,MMP9,STAT3,TLR9,VAV2
## Signaling By Retinoic Acid
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 VAMP3,VAV2
## Signaling By Rnf43 Mutants
## Signaling By Robo Receptors
## Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By Tgfb Family Members SERPINE1
## Signaling By The B Cell Receptor Bcr CD19
## Signaling By Vegf VAV2
## Signaling By Wnt WNT5A
## Signaling By Wnt In Cancer
## Signalling To Erks
## Signalling To P38 Via Rit And Rin
## Signalling To Ras
## Sirt1 Negatively Regulates Rrna Expression
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport
## Slc Transporter Disorders
## Smac Xiap Regulated Apoptotic Response
## Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction
## Snrnp Assembly
## Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers
## Sos Mediated Signalling
## Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism
## Spry Regulation Of Fgf Signaling
## Srp Dependent Cotranslational Protein Targeting To Membrane
## Stabilization Of P53
## Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants
## Stimuli Sensing Channels BEST2
## Striated Muscle Contraction
## Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation DNMT3A,UHRF2
## Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins
## Sumoylation Of Immune Response Proteins
## Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation
## Surfactant Metabolism
## Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules
## Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx
## Synthesis Of Pa
## Synthesis Of Pc
## Synthesis Of Pe
## Synthesis Of Pg
## Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pips At The Plasma Membrane
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx
## Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip
## Tachykinin Receptors Bind Tachykinins
## Tbc Rabgaps
## Tcf Dependent Signaling In Response To Wnt WNT5A
## Tcr Signaling HLA-DQB1
## Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation
## Telomere Extension By Telomerase
## Telomere Maintenance
## Terminal Pathway Of Complement
## Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model
## The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thrombin Signalling Through Proteinase Activated Receptors Pars
## Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis
## Tie2 Signaling
## Tight Junction Interactions
## Tnfr1 Induced Proapoptotic Signaling
## Tnfr1 Mediated Ceramide Production
## Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Traf3 Dependent Irf Activation Pathway
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex
## Traf6 Mediated Irf7 Activation
## Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling
## Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of E2f Targets Under Negative Control By Dream Complex
## Transcription Of The Hiv Genome
## Transcriptional Regulation By E2f6
## Transcriptional Regulation By Runx1 CSF2,RUNX2
## Transcriptional Regulation By Runx3
## Transcriptional Regulation By Small Rnas
## Transcriptional Regulation By Tp53 CASP1,CDK1,FOS
## Transcriptional Regulation Of Testis Differentiation
## Transcriptional Regulation Of White Adipocyte Differentiation
## Transferrin Endocytosis And Recycling
## Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh
## Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane
## Transmission Across Chemical Synapses CREB1
## Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars
## Transport Of Organic Anions
## Transport Of Small Molecules BEST2,PCSK9
## Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules
## Transport To The Golgi And Subsequent Modification CD55,CD59
## Trif Mediated Programmed Cell Death
## Triglyceride Biosynthesis
## Triglyceride Catabolism
## Triglyceride Metabolism
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation
## Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol
## Trna Processing
## Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus
## Trp Channels
## Tryptophan Catabolism
## Type I Hemidesmosome Assembly
## Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins
## Ub Specific Processing Proteases BIRC3,IL33
## Ubiquinol Biosynthesis
## Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin
## Urea Cycle
## Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions
## Vegfr2 Mediated Cell Proliferation
## Vesicle Mediated Transport CD55,CD59,EGFR,VAMP3,WNT5A
## Viral Messenger Rna Synthesis
## Visual Phototransduction
## Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism
## Vitamins
## Vldl Assembly
## Vldl Clearance
## Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl
## Xenobiotics
## Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters
##
## $pml
## label
## Interleukin 10 Signaling Interleukin 10 Signaling
## Chemokine Receptors Bind Chemokines Chemokine Receptors Bind Chemokines
## Interleukin 4 And Interleukin 13 Signaling Interleukin 4 And Interleukin 13 Signaling
## Irak4 Deficiency Tlr2 4 Irak4 Deficiency Tlr2 4
## Fibronectin Matrix Formation Fibronectin Matrix Formation
## Diseases Of Immune System Diseases Of Immune System
## Regulation Of Tlr By Endogenous Ligand Regulation Of Tlr By Endogenous Ligand
## Interleukin 18 Signaling Interleukin 18 Signaling
## Cd163 Mediating An Anti Inflammatory Response Cd163 Mediating An Anti Inflammatory Response
## Interleukin 1 Processing Interleukin 1 Processing
## Purinergic Signaling In Leishmaniasis Infection Purinergic Signaling In Leishmaniasis Infection
## P75ntr Signals Via Nf Kb P75ntr Signals Via Nf Kb
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1
## Interleukin 6 Signaling Interleukin 6 Signaling
## Tnfs Bind Their Physiological Receptors Tnfs Bind Their Physiological Receptors
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway
## Nod1 2 Signaling Pathway Nod1 2 Signaling Pathway
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways
## Cd28 Dependent Vav1 Pathway Cd28 Dependent Vav1 Pathway
## Gastrin Creb Signalling Pathway Via Pkc And Mapk Gastrin Creb Signalling Pathway Via Pkc And Mapk
## Killing Mechanisms Killing Mechanisms
## P75ntr Recruits Signalling Complexes P75ntr Recruits Signalling Complexes
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling
## Pyroptosis Pyroptosis
## Activation Of C3 And C5 Activation Of C3 And C5
## Runx2 Regulates Genes Involved In Cell Migration Runx2 Regulates Genes Involved In Cell Migration
## Ctla4 Inhibitory Signaling Ctla4 Inhibitory Signaling
## Inflammasomes Inflammasomes
## Egfr Interacts With Phospholipase C Gamma Egfr Interacts With Phospholipase C Gamma
## Egfr Transactivation By Gastrin Egfr Transactivation By Gastrin
## Interleukin 9 Signaling Interleukin 9 Signaling
## Trif Mediated Programmed Cell Death Trif Mediated Programmed Cell Death
## Activated Tak1 Mediates P38 Mapk Activation Activated Tak1 Mediates P38 Mapk Activation
## Caspase Activation Via Death Receptors In The Presence Of Ligand Caspase Activation Via Death Receptors In The Presence Of Ligand
## The Nlrp3 Inflammasome The Nlrp3 Inflammasome
## Toll Like Receptor Tlr1 Tlr2 Cascade Toll Like Receptor Tlr1 Tlr2 Cascade
## Ovarian Tumor Domain Proteases Ovarian Tumor Domain Proteases
## Activation Of The Ap 1 Family Of Transcription Factors Activation Of The Ap 1 Family Of Transcription Factors
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling
## Gab1 Signalosome Gab1 Signalosome
## Interleukin 21 Signaling Interleukin 21 Signaling
## Mapk3 Erk1 Activation Mapk3 Erk1 Activation
## Rip Mediated Nfkb Activation Via Zbp1 Rip Mediated Nfkb Activation Via Zbp1
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs
## Activation Of Matrix Metalloproteinases Activation Of Matrix Metalloproteinases
## Apoptotic Cleavage Of Cell Adhesion Proteins Apoptotic Cleavage Of Cell Adhesion Proteins
## Interleukin 27 Signaling Interleukin 27 Signaling
## Receptor Mediated Mitophagy Receptor Mediated Mitophagy
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway Caspase Activation Via Extrinsic Apoptotic Signalling Pathway
## Toll Like Receptor 9 Tlr9 Cascade Toll Like Receptor 9 Tlr9 Cascade
## Gp1b Ix V Activation Signalling Gp1b Ix V Activation Signalling
## Interleukin 35 Signalling Interleukin 35 Signalling
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants
## Tp53 Regulates Transcription Of Caspase Activators And Caspases Tp53 Regulates Transcription Of Caspase Activators And Caspases
## Signaling By Kit In Disease Signaling By Kit In Disease
## Alternative Complement Activation Alternative Complement Activation
## Fasl Cd95l Signaling Fasl Cd95l Signaling
## G2 M Dna Replication Checkpoint G2 M Dna Replication Checkpoint
## Galactose Catabolism Galactose Catabolism
## Hdl Clearance Hdl Clearance
## Mecp2 Regulates Transcription Factors Mecp2 Regulates Transcription Factors
## Nostrin Mediated Enos Trafficking Nostrin Mediated Enos Trafficking
## Runx1 Regulates Expression Of Components Of Tight Junctions Runx1 Regulates Expression Of Components Of Tight Junctions
## Runx2 Regulates Chondrocyte Maturation Runx2 Regulates Chondrocyte Maturation
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors
## Apoptosis Induced Dna Fragmentation Apoptosis Induced Dna Fragmentation
## Erbb2 Activates Ptk6 Signaling Erbb2 Activates Ptk6 Signaling
## Nf Kb Is Activated And Signals Survival Nf Kb Is Activated And Signals Survival
## Tnfr1 Induced Proapoptotic Signaling Tnfr1 Induced Proapoptotic Signaling
## Trafficking And Processing Of Endosomal Tlr Trafficking And Processing Of Endosomal Tlr
## Zbp1 Dai Mediated Induction Of Type I Ifns Zbp1 Dai Mediated Induction Of Type I Ifns
## Dcc Mediated Attractive Signaling Dcc Mediated Attractive Signaling
## Early Phase Of Hiv Life Cycle Early Phase Of Hiv Life Cycle
## Interleukin 15 Signaling Interleukin 15 Signaling
## Shc1 Events In Egfr Signaling Shc1 Events In Egfr Signaling
## Toll Like Receptor Cascades Toll Like Receptor Cascades
## Activated Ntrk3 Signals Through Pi3k Activated Ntrk3 Signals Through Pi3k
## Activation Of Caspases Through Apoptosome Mediated Cleavage Activation Of Caspases Through Apoptosome Mediated Cleavage
## Biosynthesis Of Epa Derived Spms Biosynthesis Of Epa Derived Spms
## Clec7a Inflammasome Pathway Clec7a Inflammasome Pathway
## Nade Modulates Death Signalling Nade Modulates Death Signalling
## Phosphorylation Of Emi1 Phosphorylation Of Emi1
## Protein Repair Protein Repair
## Ptk6 Promotes Hif1a Stabilization Ptk6 Promotes Hif1a Stabilization
## Ptk6 Regulates Cell Cycle Ptk6 Regulates Cell Cycle
## Scavenging By Class B Receptors Scavenging By Class B Receptors
## Sensing Of Dna Double Strand Breaks Sensing Of Dna Double Strand Breaks
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives Synthesis Of 15 Eicosatetraenoic Acid Derivatives
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death Tlr3 Mediated Ticam1 Dependent Programmed Cell Death
## Tnfr1 Mediated Ceramide Production Tnfr1 Mediated Ceramide Production
## Ikk Complex Recruitment Mediated By Rip1 Ikk Complex Recruitment Mediated By Rip1
## Constitutive Signaling By Egfrviii Constitutive Signaling By Egfrviii
## Erbb2 Regulates Cell Motility Erbb2 Regulates Cell Motility
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins Grb2 Sos Provides Linkage To Mapk Signaling For Integrins
## P130cas Linkage To Mapk Signaling For Integrins P130cas Linkage To Mapk Signaling For Integrins
## Heme Signaling Heme Signaling
## Regulated Necrosis Regulated Necrosis
## Activated Ntrk2 Signals Through Fyn Activated Ntrk2 Signals Through Fyn
## Activation Of Nima Kinases Nek9 Nek6 Nek7 Activation Of Nima Kinases Nek9 Nek6 Nek7
## Creb Phosphorylation Creb Phosphorylation
## Defective Factor Viii Causes Hemophilia A Defective Factor Viii Causes Hemophilia A
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production
## Ikba Variant Leads To Eda Id Ikba Variant Leads To Eda Id
## Interleukin 6 Family Signaling Interleukin 6 Family Signaling
## Modulation By Mtb Of Host Immune System Modulation By Mtb Of Host Immune System
## Myd88 Independent Tlr4 Cascade Myd88 Independent Tlr4 Cascade
## Traf6 Mediated Nf Kb Activation Traf6 Mediated Nf Kb Activation
## Cd28 Co Stimulation Cd28 Co Stimulation
## Grb2 Events In Erbb2 Signaling Grb2 Events In Erbb2 Signaling
## Pi3k Events In Erbb2 Signaling Pi3k Events In Erbb2 Signaling
## Signal Regulatory Protein Family Interactions Signal Regulatory Protein Family Interactions
## Signaling By Erbb2 Ecd Mutants Signaling By Erbb2 Ecd Mutants
## Sumoylation Of Dna Methylation Proteins Sumoylation Of Dna Methylation Proteins
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex
## Beta Defensins Beta Defensins
## Extra Nuclear Estrogen Signaling Extra Nuclear Estrogen Signaling
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde
## Hdl Assembly Hdl Assembly
## Inactivation Of Cdc42 And Rac1 Inactivation Of Cdc42 And Rac1
## Lectin Pathway Of Complement Activation Lectin Pathway Of Complement Activation
## Mecp2 Regulates Transcription Of Neuronal Ligands Mecp2 Regulates Transcription Of Neuronal Ligands
## Netrin Mediated Repulsion Signals Netrin Mediated Repulsion Signals
## Runx3 Regulates Wnt Signaling Runx3 Regulates Wnt Signaling
## Smac Xiap Regulated Apoptotic Response Smac Xiap Regulated Apoptotic Response
## Interleukin 2 Family Signaling Interleukin 2 Family Signaling
## Signaling By Cytosolic Fgfr1 Fusion Mutants Signaling By Cytosolic Fgfr1 Fusion Mutants
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members
## Dap12 Interactions Dap12 Interactions
## Downregulation Of Erbb4 Signaling Downregulation Of Erbb4 Signaling
## E2f Enabled Inhibition Of Pre Replication Complex Formation E2f Enabled Inhibition Of Pre Replication Complex Formation
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells
## Interleukin 23 Signaling Interleukin 23 Signaling
## Mapk1 Erk2 Activation Mapk1 Erk2 Activation
## Oas Antiviral Response Oas Antiviral Response
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants Constitutive Signaling By Ligand Responsive Egfr Cancer Variants
## Interleukin 17 Signaling Interleukin 17 Signaling
## Other Semaphorin Interactions Other Semaphorin Interactions
## Pd 1 Signaling Pd 1 Signaling
## Scavenging By Class A Receptors Scavenging By Class A Receptors
## Ticam1 Rip1 Mediated Ikk Complex Recruitment Ticam1 Rip1 Mediated Ikk Complex Recruitment
## Akt Phosphorylates Targets In The Nucleus Akt Phosphorylates Targets In The Nucleus
## Camk Iv Mediated Phosphorylation Of Creb Camk Iv Mediated Phosphorylation Of Creb
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand Caspase Activation Via Dependence Receptors In The Absence Of Ligand
## Chylomicron Assembly Chylomicron Assembly
## Chylomicron Remodeling Chylomicron Remodeling
## Dap12 Signaling Dap12 Signaling
## Downstream Signal Transduction Downstream Signal Transduction
## Hdl Remodeling Hdl Remodeling
## Mastl Facilitates Mitotic Progression Mastl Facilitates Mitotic Progression
## P75ntr Regulates Axonogenesis P75ntr Regulates Axonogenesis
## Regulation Of Commissural Axon Pathfinding By Slit And Robo Regulation Of Commissural Axon Pathfinding By Slit And Robo
## Regulation Of Foxo Transcriptional Activity By Acetylation Regulation Of Foxo Transcriptional Activity By Acetylation
## Interleukin 1 Family Signaling Interleukin 1 Family Signaling
## Signaling By Pdgfr In Disease Signaling By Pdgfr In Disease
## Costimulation By The Cd28 Family Costimulation By The Cd28 Family
## Peptide Ligand Binding Receptors Peptide Ligand Binding Receptors
## Tnfr1 Induced Nfkappab Signaling Pathway Tnfr1 Induced Nfkappab Signaling Pathway
## Interleukin 37 Signaling Interleukin 37 Signaling
## Signal Transduction By L1 Signal Transduction By L1
## Condensation Of Prometaphase Chromosomes Condensation Of Prometaphase Chromosomes
## Dermatan Sulfate Biosynthesis Dermatan Sulfate Biosynthesis
## Dscam Interactions Dscam Interactions
## Egfr Downregulation Egfr Downregulation
## Endosomal Vacuolar Pathway Endosomal Vacuolar Pathway
## Enos Activation Enos Activation
## Mapk Targets Nuclear Events Mediated By Map Kinases Mapk Targets Nuclear Events Mediated By Map Kinases
## Pexophagy Pexophagy
## Regulation By C Flip Regulation By C Flip
## Rho Gtpases Activate Ktn1 Rho Gtpases Activate Ktn1
## Signaling By Leptin Signaling By Leptin
## Sumoylation Of Immune Response Proteins Sumoylation Of Immune Response Proteins
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex Ticam1 Traf6 Dependent Induction Of Tak1 Complex
## Cd28 Dependent Pi3k Akt Signaling Cd28 Dependent Pi3k Akt Signaling
## Shc1 Events In Erbb2 Signaling Shc1 Events In Erbb2 Signaling
## Caspase Mediated Cleavage Of Cytoskeletal Proteins Caspase Mediated Cleavage Of Cytoskeletal Proteins
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase
## Interleukin 2 Signaling Interleukin 2 Signaling
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10
## Notch2 Intracellular Domain Regulates Transcription Notch2 Intracellular Domain Regulates Transcription
## Pecam1 Interactions Pecam1 Interactions
## Tandem Pore Domain Potassium Channels Tandem Pore Domain Potassium Channels
## Ticam1 Dependent Activation Of Irf3 Irf7 Ticam1 Dependent Activation Of Irf3 Irf7
## Vldlr Internalisation And Degradation Vldlr Internalisation And Degradation
## Raf Independent Mapk1 3 Activation Raf Independent Mapk1 3 Activation
## Defensins Defensins
## Signaling By Scf Kit Signaling By Scf Kit
## Advanced Glycosylation Endproduct Receptor Signaling Advanced Glycosylation Endproduct Receptor Signaling
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex
## Cytochrome C Mediated Apoptotic Response Cytochrome C Mediated Apoptotic Response
## Dissolution Of Fibrin Clot Dissolution Of Fibrin Clot
## Growth Hormone Receptor Signaling Growth Hormone Receptor Signaling
## Irf3 Mediated Induction Of Type I Ifn Irf3 Mediated Induction Of Type I Ifn
## Negative Regulators Of Ddx58 Ifih1 Signaling Negative Regulators Of Ddx58 Ifih1 Signaling
## P38mapk Events P38mapk Events
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation
## Purine Salvage Purine Salvage
## Runx2 Regulates Osteoblast Differentiation Runx2 Regulates Osteoblast Differentiation
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2
## Regulation Of Tnfr1 Signaling Regulation Of Tnfr1 Signaling
## Golgi Cisternae Pericentriolar Stack Reorganization Golgi Cisternae Pericentriolar Stack Reorganization
## Inactivation Of Csf3 G Csf Signaling Inactivation Of Csf3 G Csf Signaling
## Irak1 Recruits Ikk Complex Irak1 Recruits Ikk Complex
## Notch3 Activation And Transmission Of Signal To The Nucleus Notch3 Activation And Transmission Of Signal To The Nucleus
## Regulation Of Ifng Signaling Regulation Of Ifng Signaling
## Repression Of Wnt Target Genes Repression Of Wnt Target Genes
## Signaling By Egfr In Cancer Signaling By Egfr In Cancer
## Traf3 Dependent Irf Activation Pathway Traf3 Dependent Irf Activation Pathway
## Interleukin 20 Family Signaling Interleukin 20 Family Signaling
## Signaling By Erbb2 In Cancer Signaling By Erbb2 In Cancer
## Depolymerisation Of The Nuclear Lamina Depolymerisation Of The Nuclear Lamina
## Heme Degradation Heme Degradation
## Interleukin 12 Family Signaling Interleukin 12 Family Signaling
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation Metabolism Of Nitric Oxide Nos3 Activation And Regulation
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists
## Platelet Adhesion To Exposed Collagen Platelet Adhesion To Exposed Collagen
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx Synthesis Of Prostaglandins Pg And Thromboxanes Tx
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors
## Wnt5a Dependent Internalization Of Fzd4 Wnt5a Dependent Internalization Of Fzd4
## Yap1 And Wwtr1 Taz Stimulated Gene Expression Yap1 And Wwtr1 Taz Stimulated Gene Expression
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks
## Foxo Mediated Transcription Of Cell Death Genes Foxo Mediated Transcription Of Cell Death Genes
## G0 And Early G1 G0 And Early G1
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation
## Integrin Signaling Integrin Signaling
## Interleukin Receptor Shc Signaling Interleukin Receptor Shc Signaling
## Nrif Signals Cell Death From The Nucleus Nrif Signals Cell Death From The Nucleus
## Regulation Of Kit Signaling Regulation Of Kit Signaling
## Spry Regulation Of Fgf Signaling Spry Regulation Of Fgf Signaling
## Sting Mediated Induction Of Host Immune Responses Sting Mediated Induction Of Host Immune Responses
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1
## Vegfr2 Mediated Vascular Permeability Vegfr2 Mediated Vascular Permeability
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps
## Downregulation Of Erbb2 Signaling Downregulation Of Erbb2 Signaling
## Foxo Mediated Transcription Of Cell Cycle Genes Foxo Mediated Transcription Of Cell Cycle Genes
## Mitophagy Mitophagy
## Regulation Of Runx1 Expression And Activity Regulation Of Runx1 Expression And Activity
## Ripk1 Mediated Regulated Necrosis Ripk1 Mediated Regulated Necrosis
## Signaling By Egfr Signaling By Egfr
## Signaling By Ntrk3 Trkc Signaling By Ntrk3 Trkc
## Abc Transporters In Lipid Homeostasis Abc Transporters In Lipid Homeostasis
## Crosslinking Of Collagen Fibrils Crosslinking Of Collagen Fibrils
## Diseases Associated With Glycosylation Precursor Biosynthesis Diseases Associated With Glycosylation Precursor Biosynthesis
## Eph Ephrin Mediated Repulsion Of Cells Eph Ephrin Mediated Repulsion Of Cells
## Mecp2 Regulates Neuronal Receptors And Channels Mecp2 Regulates Neuronal Receptors And Channels
## Signaling By Csf3 G Csf Signaling By Csf3 G Csf
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest
## Biosynthesis Of Specialized Proresolving Mediators Spms Biosynthesis Of Specialized Proresolving Mediators Spms
## Ephrin Signaling Ephrin Signaling
## Fgfr1 Mutant Receptor Activation Fgfr1 Mutant Receptor Activation
## Initiation Of Nuclear Envelope Ne Reformation Initiation Of Nuclear Envelope Ne Reformation
## Interleukin 1 Signaling Interleukin 1 Signaling
## Ldl Clearance Ldl Clearance
## Nicotinamide Salvaging Nicotinamide Salvaging
## Nicotinate Metabolism Nicotinate Metabolism
## Phase 4 Resting Membrane Potential Phase 4 Resting Membrane Potential
## Plasma Lipoprotein Assembly Plasma Lipoprotein Assembly
## Regulation Of Tp53 Activity Through Methylation Regulation Of Tp53 Activity Through Methylation
## Runx2 Regulates Bone Development Runx2 Regulates Bone Development
## Signaling By Interleukins Signaling By Interleukins
## Tnfr2 Non Canonical Nf Kb Pathway Tnfr2 Non Canonical Nf Kb Pathway
## Transcription Of E2f Targets Under Negative Control By Dream Complex Transcription Of E2f Targets Under Negative Control By Dream Complex
## Vegfr2 Mediated Cell Proliferation Vegfr2 Mediated Cell Proliferation
## Apoptotic Factor Mediated Response Apoptotic Factor Mediated Response
## Cargo Concentration In The Er Cargo Concentration In The Er
## Collagen Degradation Collagen Degradation
## G Beta Gamma Signalling Through Cdc42 G Beta Gamma Signalling Through Cdc42
## Listeria Monocytogenes Entry Into Host Cells Listeria Monocytogenes Entry Into Host Cells
## Perk Regulates Gene Expression Perk Regulates Gene Expression
## Phosphorylation Of The Apc C Phosphorylation Of The Apc C
## Pka Mediated Phosphorylation Of Creb Pka Mediated Phosphorylation Of Creb
## Plasma Lipoprotein Clearance Plasma Lipoprotein Clearance
## Signaling By Hippo Signaling By Hippo
## Signaling By Ptk6 Signaling By Ptk6
## Signalling To Ras Signalling To Ras
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1
## Tnf Signaling Tnf Signaling
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release
## Branched Chain Amino Acid Catabolism Branched Chain Amino Acid Catabolism
## Chaperone Mediated Autophagy Chaperone Mediated Autophagy
## Complement Cascade Complement Cascade
## Constitutive Signaling By Aberrant Pi3k In Cancer Constitutive Signaling By Aberrant Pi3k In Cancer
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models
## E2f Mediated Regulation Of Dna Replication E2f Mediated Regulation Of Dna Replication
## Gpvi Mediated Activation Cascade Gpvi Mediated Activation Cascade
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane
## P75 Ntr Receptor Mediated Signalling P75 Ntr Receptor Mediated Signalling
## Pink1 Prkn Mediated Mitophagy Pink1 Prkn Mediated Mitophagy
## Rho Gtpases Activate Paks Rho Gtpases Activate Paks
## Incretin Synthesis Secretion And Inactivation Incretin Synthesis Secretion And Inactivation
## Interleukin 12 Signaling Interleukin 12 Signaling
## Intrinsic Pathway Of Fibrin Clot Formation Intrinsic Pathway Of Fibrin Clot Formation
## Long Term Potentiation Long Term Potentiation
## Nucleotide Salvage Nucleotide Salvage
## Regulation Of Tp53 Expression And Degradation Regulation Of Tp53 Expression And Degradation
## Rhoh Gtpase Cycle Rhoh Gtpase Cycle
## Rhoq Gtpase Cycle Rhoq Gtpase Cycle
## Signaling By Notch3 Signaling By Notch3
## Telomere Extension By Telomerase Telomere Extension By Telomerase
## Termination Of O Glycan Biosynthesis Termination Of O Glycan Biosynthesis
## Adp Signalling Through P2y Purinoceptor 1 Adp Signalling Through P2y Purinoceptor 1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc
## Apc C Cdc20 Mediated Degradation Of Cyclin B Apc C Cdc20 Mediated Degradation Of Cyclin B
## Apoptotic Cleavage Of Cellular Proteins Apoptotic Cleavage Of Cellular Proteins
## Apoptotic Execution Phase Apoptotic Execution Phase
## Assembly Of Collagen Fibrils And Other Multimeric Structures Assembly Of Collagen Fibrils And Other Multimeric Structures
## Basigin Interactions Basigin Interactions
## Constitutive Signaling By Akt1 E17k In Cancer Constitutive Signaling By Akt1 E17k In Cancer
## Cyclin A B1 B2 Associated Events During G2 M Transition Cyclin A B1 B2 Associated Events During G2 M Transition
## Cytosolic Sensors Of Pathogen Associated Dna Cytosolic Sensors Of Pathogen Associated Dna
## Death Receptor Signalling Death Receptor Signalling
## Dectin 2 Family Dectin 2 Family
## Negative Regulation Of The Pi3k Akt Network Negative Regulation Of The Pi3k Akt Network
## Netrin 1 Signaling Netrin 1 Signaling
## Ngf Stimulated Transcription Ngf Stimulated Transcription
## Notch3 Intracellular Domain Regulates Transcription Notch3 Intracellular Domain Regulates Transcription
## Other Interleukin Signaling Other Interleukin Signaling
## Platelet Aggregation Plug Formation Platelet Aggregation Plug Formation
## Regulation Of Ifna Signaling Regulation Of Ifna Signaling
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa
## Rho Gtpases Activate Nadph Oxidases Rho Gtpases Activate Nadph Oxidases
## Signaling By Erbb2 Signaling By Erbb2
## Signaling By Fgfr1 In Disease Signaling By Fgfr1 In Disease
## Signaling By Ntrk2 Trkb Signaling By Ntrk2 Trkb
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors
## Triglyceride Catabolism Triglyceride Catabolism
## Wnt Ligand Biogenesis And Trafficking Wnt Ligand Biogenesis And Trafficking
## Antigen Processing Cross Presentation Antigen Processing Cross Presentation
## Bmal1 Clock Npas2 Activates Circadian Gene Expression Bmal1 Clock Npas2 Activates Circadian Gene Expression
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling
## Epha Mediated Growth Cone Collapse Epha Mediated Growth Cone Collapse
## Ephb Mediated Forward Signaling Ephb Mediated Forward Signaling
## G1 S Specific Transcription G1 S Specific Transcription
## Infection With Mycobacterium Tuberculosis Infection With Mycobacterium Tuberculosis
## Intrinsic Pathway For Apoptosis Intrinsic Pathway For Apoptosis
## Map2k And Mapk Activation Map2k And Mapk Activation
## Metabolism Of Porphyrins Metabolism Of Porphyrins
## Myogenesis Myogenesis
## Negative Regulation Of Fgfr3 Signaling Negative Regulation Of Fgfr3 Signaling
## Rhof Gtpase Cycle Rhof Gtpase Cycle
## Rhoj Gtpase Cycle Rhoj Gtpase Cycle
## Tp53 Regulates Transcription Of Cell Death Genes Tp53 Regulates Transcription Of Cell Death Genes
## Traf6 Mediated Irf7 Activation Traf6 Mediated Irf7 Activation
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer
## Activation Of Bh3 Only Proteins Activation Of Bh3 Only Proteins
## Antimicrobial Peptides Antimicrobial Peptides
## Ca Dependent Events Ca Dependent Events
## Cyclin D Associated Events In G1 Cyclin D Associated Events In G1
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane
## Foxo Mediated Transcription Foxo Mediated Transcription
## G Protein Beta Gamma Signalling G Protein Beta Gamma Signalling
## Hdr Through Single Strand Annealing Ssa Hdr Through Single Strand Annealing Ssa
## Interleukin 3 Interleukin 5 And Gm Csf Signaling Interleukin 3 Interleukin 5 And Gm Csf Signaling
## Interleukin 7 Signaling Interleukin 7 Signaling
## Late Endosomal Microautophagy Late Endosomal Microautophagy
## Met Activates Ptk2 Signaling Met Activates Ptk2 Signaling
## Metalloprotease Dubs Metalloprotease Dubs
## Negative Regulation Of Fgfr1 Signaling Negative Regulation Of Fgfr1 Signaling
## Negative Regulation Of Fgfr2 Signaling Negative Regulation Of Fgfr2 Signaling
## Negative Regulation Of Fgfr4 Signaling Negative Regulation Of Fgfr4 Signaling
## Nuclear Pore Complex Npc Disassembly Nuclear Pore Complex Npc Disassembly
## Nuclear Signaling By Erbb4 Nuclear Signaling By Erbb4
## Oncogene Induced Senescence Oncogene Induced Senescence
## Pi3k Akt Signaling In Cancer Pi3k Akt Signaling In Cancer
## Plasma Lipoprotein Remodeling Plasma Lipoprotein Remodeling
## Raf Activation Raf Activation
## Regulation Of Mecp2 Expression And Activity Regulation Of Mecp2 Expression And Activity
## Resolution Of D Loop Structures Resolution Of D Loop Structures
## Rho Gtpases Activate Iqgaps Rho Gtpases Activate Iqgaps
## Rho Gtpases Activate Wasps And Waves Rho Gtpases Activate Wasps And Waves
## Rhod Gtpase Cycle Rhod Gtpase Cycle
## Rhog Gtpase Cycle Rhog Gtpase Cycle
## Rhou Gtpase Cycle Rhou Gtpase Cycle
## Rhov Gtpase Cycle Rhov Gtpase Cycle
## Ros And Rns Production In Phagocytes Ros And Rns Production In Phagocytes
## Sialic Acid Metabolism Sialic Acid Metabolism
## Signal Amplification Signal Amplification
## Signaling By Erbb4 Signaling By Erbb4
## Signaling By Moderate Kinase Activity Braf Mutants Signaling By Moderate Kinase Activity Braf Mutants
## Signaling By Notch2 Signaling By Notch2
## Signaling By Pdgf Signaling By Pdgf
## Signalling To Erks Signalling To Erks
## Thrombin Signalling Through Proteinase Activated Receptors Pars Thrombin Signalling Through Proteinase Activated Receptors Pars
## Transcriptional Regulation Of Pluripotent Stem Cells Transcriptional Regulation Of Pluripotent Stem Cells
## 2 Ltr Circle Formation 2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism Abacavir Metabolism
## Abacavir Transmembrane Transport Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism Abacavir Transport And Metabolism
## Abc Family Proteins Mediated Transport Abc Family Proteins Mediated Transport
## Abc Transporter Disorders Abc Transporter Disorders
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5 Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3 Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Pi3k Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Ras Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activation Of Ampk Downstream Of Nmdars Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria Activation Of Bad And Translocation To Mitochondria
## Activation Of Gene Expression By Srebf Srebp Activation Of Gene Expression By Srebf Srebp
## Activation Of Kainate Receptors Upon Glutamate Binding Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Nmda Receptors And Postsynaptic Events Activation Of Nmda Receptors And Postsynaptic Events
## Activation Of Noxa And Translocation To Mitochondria Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1 Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells Activation Of Ras In B Cells
## Activation Of Smo Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps Acyl Chain Remodelling Of Ps
## Adaptive Immune System Adaptive Immune System
## Adenylate Cyclase Activating Pathway Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions Adherens Junctions Interactions
## Adora2b Mediated Anti Inflammatory Cytokines Production Adora2b Mediated Anti Inflammatory Cytokines Production
## Adp Signalling Through P2y Purinoceptor 12 Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors Adrenoceptors
## Aflatoxin Activation And Detoxification Aflatoxin Activation And Detoxification
## Aggrephagy Aggrephagy
## Akt Phosphorylates Targets In The Cytosol Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway Alpha Protein Kinase 1 Signaling Pathway
## Amine Ligand Binding Receptors Amine Ligand Binding Receptors
## Amino Acid Conjugation Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1 Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity Ampk Inhibits Chrebp Transcriptional Activation Activity
## Amyloid Fiber Formation Amyloid Fiber Formation
## Anchoring Fibril Formation Anchoring Fibril Formation
## Anchoring Of The Basal Body To The Plasma Membrane Anchoring Of The Basal Body To The Plasma Membrane
## Androgen Biosynthesis Androgen Biosynthesis
## Anti Inflammatory Response Favouring Leishmania Parasite Infection Anti Inflammatory Response Favouring Leishmania Parasite Infection
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers
## Antigen Processing Ubiquitination Proteasome Degradation Antigen Processing Ubiquitination Proteasome Degradation
## Antiviral Mechanism By Ifn Stimulated Genes Antiviral Mechanism By Ifn Stimulated Genes
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc C Mediated Degradation Of Cell Cycle Proteins Apc C Mediated Degradation Of Cell Cycle Proteins
## Apc Cdc20 Mediated Degradation Of Nek2a Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection Apobec3g Mediated Resistance To Hiv 1 Infection
## Apoptosis Apoptosis
## Aquaporin Mediated Transport Aquaporin Mediated Transport
## Arachidonate Production From Dag Arachidonate Production From Dag
## Arachidonic Acid Metabolism Arachidonic Acid Metabolism
## Arms Mediated Activation Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling Aryl Hydrocarbon Receptor Signalling
## Asparagine N Linked Glycosylation Asparagine N Linked Glycosylation
## Aspartate And Asparagine Metabolism Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of The Hiv Virion Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex Assembly Of The Pre Replicative Complex
## Association Of Tric Cct With Target Proteins During Biosynthesis Association Of Tric Cct With Target Proteins During Biosynthesis
## Asymmetric Localization Of Pcp Proteins Asymmetric Localization Of Pcp Proteins
## Atf6 Atf6 Alpha Activates Chaperone Genes Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry Attachment And Entry
## Attachment Of Gpi Anchor To Upar Attachment Of Gpi Anchor To Upar
## Attenuation Phase Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## Aurka Activation By Tpx2 Aurka Activation By Tpx2
## Autophagy Autophagy
## B Wich Complex Positively Regulates Rrna Expression B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair Base Excision Repair
## Base Excision Repair Ap Site Formation Base Excision Repair Ap Site Formation
## Bbsome Mediated Cargo Targeting To Cilium Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Independent Wnt Signaling Beta Catenin Independent Wnt Signaling
## Beta Catenin Phosphorylation Cascade Beta Catenin Phosphorylation Cascade
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids Beta Oxidation Of Very Long Chain Fatty Acids
## Bicarbonate Transporters Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism Bile Acid And Bile Salt Metabolism
## Binding And Uptake Of Ligands By Scavenger Receptors Binding And Uptake Of Ligands By Scavenger Receptors
## Biological Oxidations Biological Oxidations
## Biosynthesis Of Maresin Like Spms Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins Biosynthesis Of Maresins
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein
## Biotin Transport And Metabolism Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis Blood Group Systems Biosynthesis
## Budding And Maturation Of Hiv Virion Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions Butyrophilin Btn Family Interactions
## C Type Lectin Receptors Clrs C Type Lectin Receptors Clrs
## Ca2 Activated K Channels Ca2 Activated K Channels
## Ca2 Pathway Ca2 Pathway
## Calcineurin Activates Nfat Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin Carboxyterminal Post Translational Modifications Of Tubulin
## Cardiac Conduction Cardiac Conduction
## Cargo Recognition For Clathrin Mediated Endocytosis Cargo Recognition For Clathrin Mediated Endocytosis
## Cargo Trafficking To The Periciliary Membrane Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism Carnitine Metabolism
## Cation Coupled Chloride Cotransporters Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation Cd22 Mediated Bcr Regulation
## Cdc42 Gtpase Cycle Cdc42 Gtpase Cycle
## Cdc6 Association With The Orc Origin Complex Cdc6 Association With The Orc Origin Complex
## Cell Cell Communication Cell Cell Communication
## Cell Cell Junction Organization Cell Cell Junction Organization
## Cell Cycle Cell Cycle
## Cell Cycle Checkpoints Cell Cycle Checkpoints
## Cell Cycle Mitotic Cell Cycle Mitotic
## Cell Death Signalling Via Nrage Nrif And Nade Cell Death Signalling Via Nrage Nrif And Nade
## Cell Extracellular Matrix Interactions Cell Extracellular Matrix Interactions
## Cell Junction Organization Cell Junction Organization
## Cell Surface Interactions At The Vascular Wall Cell Surface Interactions At The Vascular Wall
## Cellular Hexose Transport Cellular Hexose Transport
## Cellular Response To Chemical Stress Cellular Response To Chemical Stress
## Cellular Response To Heat Stress Cellular Response To Heat Stress
## Cellular Response To Hypoxia Cellular Response To Hypoxia
## Cellular Response To Starvation Cellular Response To Starvation
## Cellular Responses To External Stimuli Cellular Responses To External Stimuli
## Cellular Senescence Cellular Senescence
## Cgmp Effects Cgmp Effects
## Chl1 Interactions Chl1 Interactions
## Cholesterol Biosynthesis Cholesterol Biosynthesis
## Choline Catabolism Choline Catabolism
## Chondroitin Sulfate Biosynthesis Chondroitin Sulfate Biosynthesis
## Chondroitin Sulfate Dermatan Sulfate Metabolism Chondroitin Sulfate Dermatan Sulfate Metabolism
## Chrebp Activates Metabolic Gene Expression Chrebp Activates Metabolic Gene Expression
## Chromatin Modifying Enzymes Chromatin Modifying Enzymes
## Chromosome Maintenance Chromosome Maintenance
## Chylomicron Clearance Chylomicron Clearance
## Cilium Assembly Cilium Assembly
## Circadian Clock Circadian Clock
## Citric Acid Cycle Tca Cycle Citric Acid Cycle Tca Cycle
## Class A 1 Rhodopsin Like Receptors Class A 1 Rhodopsin Like Receptors
## Class B 2 Secretin Family Receptors Class B 2 Secretin Family Receptors
## Class C 3 Metabotropic Glutamate Pheromone Receptors Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Mhc Mediated Antigen Processing Presentation Class I Mhc Mediated Antigen Processing Presentation
## Class I Peroxisomal Membrane Protein Import Class I Peroxisomal Membrane Protein Import
## Clathrin Mediated Endocytosis Clathrin Mediated Endocytosis
## Clec7a Dectin 1 Induces Nfat Activation Clec7a Dectin 1 Induces Nfat Activation
## Clec7a Dectin 1 Signaling Clec7a Dectin 1 Signaling
## Cobalamin Cbl Vitamin B12 Transport And Metabolism Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization Collagen Chain Trimerization
## Collagen Formation Collagen Formation
## Common Pathway Of Fibrin Clot Formation Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complex I Biogenesis Complex I Biogenesis
## Condensation Of Prophase Chromosomes Condensation Of Prophase Chromosomes
## Conjugation Of Benzoate With Glycine Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Overexpressed Erbb2 Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic Copi Independent Golgi To Er Retrograde Traffic
## Copi Mediated Anterograde Transport Copi Mediated Anterograde Transport
## Copii Mediated Vesicle Transport Copii Mediated Vesicle Transport
## Creatine Metabolism Creatine Metabolism
## Creation Of C4 And C2 Activators Creation Of C4 And C2 Activators
## Creb3 Factors Activate Genes Creb3 Factors Activate Genes
## Cristae Formation Cristae Formation
## Crmps In Sema3a Signaling Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Cs Ds Degradation Cs Ds Degradation
## Cyclin A Cdk2 Associated Events At S Phase Entry Cyclin A Cdk2 Associated Events At S Phase Entry
## Cyp2e1 Reactions Cyp2e1 Reactions
## Cytochrome P450 Arranged By Substrate Type Cytochrome P450 Arranged By Substrate Type
## Cytokine Signaling In Immune System Cytokine Signaling In Immune System
## Cytoprotection By Hmox1 Cytoprotection By Hmox1
## Cytosolic Iron Sulfur Cluster Assembly Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation Cytosolic Trna Aminoacylation
## Dag And Ip3 Signaling Dag And Ip3 Signaling
## Darpp 32 Events Darpp 32 Events
## Deactivation Of The Beta Catenin Transactivating Complex Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna Deadenylation Of Mrna
## Dectin 1 Mediated Noncanonical Nf Kb Signaling Dectin 1 Mediated Noncanonical Nf Kb Signaling
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type Defective B4galt7 Causes Eds Progeroid Type
## Defective Cftr Causes Cystic Fibrosis Defective Cftr Causes Cystic Fibrosis
## Defective Chst14 Causes Eds Musculocontractural Type Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1 Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5 Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2 Defective Ext2 Causes Exostoses 2
## Defective F9 Activation Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B Defective Factor Ix Causes Hemophilia B
## Defective Lfng Causes Scdo3 Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15 Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism Defects In Vitamin And Cofactor Metabolism
## Degradation Of Axin Degradation Of Axin
## Degradation Of Beta Catenin By The Destruction Complex Degradation Of Beta Catenin By The Destruction Complex
## Degradation Of Cysteine And Homocysteine Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome Degradation Of Gli1 By The Proteasome
## Degradation Of The Extracellular Matrix Degradation Of The Extracellular Matrix
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Detoxification Of Reactive Oxygen Species Detoxification Of Reactive Oxygen Species
## Deubiquitination Deubiquitination
## Developmental Biology Developmental Biology
## Digestion Digestion
## Digestion And Absorption Digestion And Absorption
## Digestion Of Dietary Carbohydrate Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid Digestion Of Dietary Lipid
## Diseases Associated With Glycosaminoglycan Metabolism Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With N Glycosylation Of Proteins Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With O Glycosylation Of Proteins Diseases Associated With O Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair Diseases Of Dna Repair
## Diseases Of Glycosylation Diseases Of Glycosylation
## Diseases Of Metabolism Diseases Of Metabolism
## Diseases Of Mismatch Repair Mmr Diseases Of Mismatch Repair Mmr
## Diseases Of Mitotic Cell Cycle Diseases Of Mitotic Cell Cycle
## Diseases Of Programmed Cell Death Diseases Of Programmed Cell Death
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers
## Disinhibition Of Snare Formation Disinhibition Of Snare Formation
## Disorders Of Transmembrane Transporters Disorders Of Transmembrane Transporters
## Displacement Of Dna Glycosylase By Apex1 Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass Dna Damage Bypass
## Dna Damage Recognition In Gg Ner Dna Damage Recognition In Gg Ner
## Dna Damage Reversal Dna Damage Reversal
## Dna Damage Telomere Stress Induced Senescence Dna Damage Telomere Stress Induced Senescence
## Dna Double Strand Break Repair Dna Double Strand Break Repair
## Dna Double Strand Break Response Dna Double Strand Break Response
## Dna Methylation Dna Methylation
## Dna Repair Dna Repair
## Dna Replication Dna Replication
## Dna Replication Initiation Dna Replication Initiation
## Dna Replication Pre Initiation Dna Replication Pre Initiation
## Dna Strand Elongation Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signaling Events Of B Cell Receptor Bcr Downstream Signaling Events Of B Cell Receptor Bcr
## Downstream Signaling Of Activated Fgfr1 Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2 Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3 Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4 Downstream Signaling Of Activated Fgfr4
## Dual Incision In Gg Ner Dual Incision In Gg Ner
## Dual Incision In Tc Ner Dual Incision In Tc Ner
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Ecm Proteoglycans Ecm Proteoglycans
## Effects Of Pip2 Hydrolysis Effects Of Pip2 Hydrolysis
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors Eicosanoid Ligand Binding Receptors
## Eicosanoids Eicosanoids
## Elastic Fibre Formation Elastic Fibre Formation
## Electric Transmission Across Gap Junctions Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt Endosomal Sorting Complex Required For Transport Escrt
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Eph Ephrin Signaling Eph Ephrin Signaling
## Epigenetic Regulation Of Gene Expression Epigenetic Regulation Of Gene Expression
## Er Quality Control Compartment Erqc Er Quality Control Compartment Erqc
## Er To Golgi Anterograde Transport Er To Golgi Anterograde Transport
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets Erk Mapk Targets
## Erks Are Inactivated Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras Erythropoietin Activates Ras
## Erythropoietin Activates Stat5 Erythropoietin Activates Stat5
## Esr Mediated Signaling Esr Mediated Signaling
## Establishment Of Sister Chromatid Cohesion Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis Estrogen Biosynthesis
## Estrogen Dependent Gene Expression Estrogen Dependent Gene Expression
## Estrogen Stimulated Signaling Through Prkcz Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation Ethanol Oxidation
## Eukaryotic Translation Elongation Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus Export Of Viral Ribonucleoproteins From Nucleus
## Extension Of Telomeres Extension Of Telomeres
## Extracellular Matrix Organization Extracellular Matrix Organization
## Extrinsic Pathway Of Fibrin Clot Formation Extrinsic Pathway Of Fibrin Clot Formation
## Factors Involved In Megakaryocyte Development And Platelet Production Factors Involved In Megakaryocyte Development And Platelet Production
## Fanconi Anemia Pathway Fanconi Anemia Pathway
## Fatty Acid Metabolism Fatty Acid Metabolism
## Fatty Acids Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer Fbxw7 Mutants And Notch1 In Cancer
## Fc Epsilon Receptor Fceri Signaling Fc Epsilon Receptor Fceri Signaling
## Fceri Mediated Ca 2 Mobilization Fceri Mediated Ca 2 Mobilization
## Fceri Mediated Mapk Activation Fceri Mediated Mapk Activation
## Fceri Mediated Nf Kb Activation Fceri Mediated Nf Kb Activation
## Fcgamma Receptor Fcgr Dependent Phagocytosis Fcgamma Receptor Fcgr Dependent Phagocytosis
## Fcgr Activation Fcgr Activation
## Fcgr3a Mediated Il10 Synthesis Fcgr3a Mediated Il10 Synthesis
## Fertilization Fertilization
## Fgfr1 Ligand Binding And Activation Fgfr1 Ligand Binding And Activation
## Fgfr1b Ligand Binding And Activation Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling Flt3 Signaling
## Flt3 Signaling By Cbl Mutants Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric Folding Of Actin By Cct Tric
## Formation Of Apoptosome Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling Formation Of Atp By Chemiosmotic Coupling
## Formation Of Fibrin Clot Clotting Cascade Formation Of Fibrin Clot Clotting Cascade
## Formation Of Incision Complex In Gg Ner Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex Formation Of Tc Ner Pre Incision Complex
## Formation Of The Beta Catenin Tcf Transactivating Complex Formation Of The Beta Catenin Tcf Transactivating Complex
## Formation Of The Cornified Envelope Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling Frs Mediated Fgfr4 Signaling
## Fructose Catabolism Fructose Catabolism
## Fructose Metabolism Fructose Metabolism
## G Alpha 12 13 Signalling Events G Alpha 12 13 Signalling Events
## G Alpha I Signalling Events G Alpha I Signalling Events
## G Alpha Q Signalling Events G Alpha Q Signalling Events
## G Alpha S Signalling Events G Alpha S Signalling Events
## G Alpha Z Signalling Events G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Pi3kgamma G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation G Protein Activation
## G Protein Mediated Events G Protein Mediated Events
## G1 S Dna Damage Checkpoints G1 S Dna Damage Checkpoints
## G2 M Checkpoints G2 M Checkpoints
## G2 M Dna Damage Checkpoint G2 M Dna Damage Checkpoint
## G2 Phase G2 Phase
## Gaba B Receptor Activation Gaba B Receptor Activation
## Gaba Receptor Activation Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation Gaba Synthesis Release Reuptake And Degradation
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly Gap Junction Assembly
## Gap Junction Degradation Gap Junction Degradation
## Gap Junction Trafficking And Regulation Gap Junction Trafficking And Regulation
## Gdp Fucose Biosynthesis Gdp Fucose Biosynthesis
## Gene Silencing By Rna Gene Silencing By Rna
## Generation Of Second Messenger Molecules Generation Of Second Messenger Molecules
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis Glucocorticoid Biosynthesis
## Gluconeogenesis Gluconeogenesis
## Glucose Metabolism Glucose Metabolism
## Glucuronidation Glucuronidation
## Glutamate And Glutamine Metabolism Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation Glutathione Conjugation
## Glutathione Synthesis And Recycling Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism Glycogen Metabolism
## Glycogen Storage Diseases Glycogen Storage Diseases
## Glycogen Synthesis Glycogen Synthesis
## Glycolysis Glycolysis
## Glycosaminoglycan Metabolism Glycosaminoglycan Metabolism
## Glycosphingolipid Metabolism Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis Golgi Associated Vesicle Biogenesis
## Golgi To Er Retrograde Transport Golgi To Er Retrograde Transport
## Gpcr Ligand Binding Gpcr Ligand Binding
## Grb7 Events In Erbb2 Signaling Grb7 Events In Erbb2 Signaling
## Hats Acetylate Histones Hats Acetylate Histones
## Hcmv Early Events Hcmv Early Events
## Hcmv Infection Hcmv Infection
## Hcmv Late Events Hcmv Late Events
## Hdacs Deacetylate Histones Hdacs Deacetylate Histones
## Hdms Demethylate Histones Hdms Demethylate Histones
## Hdr Through Homologous Recombination Hrr Hdr Through Homologous Recombination Hrr
## Hdr Through Mmej Alt Nhej Hdr Through Mmej Alt Nhej
## Hedgehog Ligand Biogenesis Hedgehog Ligand Biogenesis
## Hedgehog Off State Hedgehog Off State
## Hedgehog On State Hedgehog On State
## Heme Biosynthesis Heme Biosynthesis
## Hemostasis Hemostasis
## Heparan Sulfate Heparin Hs Gag Metabolism Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism Histidine Catabolism
## Hiv Elongation Arrest And Recovery Hiv Elongation Arrest And Recovery
## Hiv Infection Hiv Infection
## Hiv Life Cycle Hiv Life Cycle
## Hiv Transcription Elongation Hiv Transcription Elongation
## Hiv Transcription Initiation Hiv Transcription Initiation
## Homologous Dna Pairing And Strand Exchange Homologous Dna Pairing And Strand Exchange
## Homology Directed Repair Homology Directed Repair
## Hormone Ligand Binding Receptors Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis Hs Gag Biosynthesis
## Hs Gag Degradation Hs Gag Degradation
## Hsf1 Activation Hsf1 Activation
## Hsf1 Dependent Transactivation Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc Hydrolysis Of Lpc
## Il 6 Type Cytokine Receptor Ligand Interactions Il 6 Type Cytokine Receptor Ligand Interactions
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell
## Infectious Disease Infectious Disease
## Influenza Infection Influenza Infection
## Inhibition Of Dna Recombination At Telomere Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Initial Triggering Of Complement Initial Triggering Of Complement
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Innate Immune System Innate Immune System
## Inositol Phosphate Metabolism Inositol Phosphate Metabolism
## Insulin Processing Insulin Processing
## Insulin Receptor Recycling Insulin Receptor Recycling
## Insulin Receptor Signalling Cascade Insulin Receptor Signalling Cascade
## Integration Of Energy Metabolism Integration Of Energy Metabolism
## Integration Of Provirus Integration Of Provirus
## Integrin Cell Surface Interactions Integrin Cell Surface Interactions
## Interaction Between L1 And Ankyrins Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates Interconversion Of Nucleotide Di And Triphosphates
## Interferon Alpha Beta Signaling Interferon Alpha Beta Signaling
## Interferon Gamma Signaling Interferon Gamma Signaling
## Interferon Signaling Interferon Signaling
## Interleukin 36 Pathway Interleukin 36 Pathway
## Intestinal Absorption Intestinal Absorption
## Intra Golgi And Retrograde Golgi To Er Traffic Intra Golgi And Retrograde Golgi To Er Traffic
## Intra Golgi Traffic Intra Golgi Traffic
## Intracellular Signaling By Second Messengers Intracellular Signaling By Second Messengers
## Intraflagellar Transport Intraflagellar Transport
## Inwardly Rectifying K Channels Inwardly Rectifying K Channels
## Ion Channel Transport Ion Channel Transport
## Ion Homeostasis Ion Homeostasis
## Ion Transport By P Type Atpases Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors Ionotropic Activity Of Kainate Receptors
## Irak2 Mediated Activation Of Tak1 Complex Irak2 Mediated Activation Of Tak1 Complex
## Ire1alpha Activates Chaperones Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn Irf3 Mediated Activation Of Type 1 Ifn
## Iron Uptake And Transport Iron Uptake And Transport
## Irs Activation Irs Activation
## Irs Mediated Signalling Irs Mediated Signalling
## Josephin Domain Dubs Josephin Domain Dubs
## Keratan Sulfate Biosynthesis Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism Keratan Sulfate Keratin Metabolism
## Keratinization Keratinization
## Ketone Body Metabolism Ketone Body Metabolism
## Kinesins Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna Ksrp Khsrp Binds And Destabilizes Mrna
## L1cam Interactions L1cam Interactions
## Lagging Strand Synthesis Lagging Strand Synthesis
## Laminin Interactions Laminin Interactions
## Leishmania Infection Leishmania Infection
## Leukotriene Receptors Leukotriene Receptors
## Lgi Adam Interactions Lgi Adam Interactions
## Ligand Receptor Interactions Ligand Receptor Interactions
## Linoleic Acid La Metabolism Linoleic Acid La Metabolism
## Lipid Particle Organization Lipid Particle Organization
## Lipophagy Lipophagy
## Loss Of Function Of Mecp2 In Rett Syndrome Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism Lysine Catabolism
## Lysosome Vesicle Biogenesis Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors Lysosphingolipid And Lpa Receptors
## M Phase M Phase
## Map3k8 Tpl2 Dependent Mapk1 3 Activation Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Mapk Family Signaling Cascades Mapk Family Signaling Cascades
## Mapk6 Mapk4 Signaling Mapk6 Mapk4 Signaling
## Maturation Of Nucleoprotein Maturation Of Nucleoprotein
## Maturation Of Protein 3a Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein Maturation Of Sars Cov 2 Spike Protein
## Meiosis Meiosis
## Meiotic Recombination Meiotic Recombination
## Meiotic Synapsis Meiotic Synapsis
## Melanin Biosynthesis Melanin Biosynthesis
## Membrane Trafficking Membrane Trafficking
## Met Activates Pi3k Akt Signaling Met Activates Pi3k Akt Signaling
## Met Activates Ptpn11 Met Activates Ptpn11
## Met Activates Rap1 And Rac1 Met Activates Rap1 And Rac1
## Met Activates Ras Signaling Met Activates Ras Signaling
## Met Interacts With Tns Proteins Met Interacts With Tns Proteins
## Met Promotes Cell Motility Met Promotes Cell Motility
## Met Receptor Activation Met Receptor Activation
## Met Receptor Recycling Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones Metabolism Of Amine Derived Hormones
## Metabolism Of Amino Acids And Derivatives Metabolism Of Amino Acids And Derivatives
## Metabolism Of Angiotensinogen To Angiotensins Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Carbohydrates Metabolism Of Carbohydrates
## Metabolism Of Cofactors Metabolism Of Cofactors
## Metabolism Of Fat Soluble Vitamins Metabolism Of Fat Soluble Vitamins
## Metabolism Of Folate And Pterines Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Lipids Metabolism Of Lipids
## Metabolism Of Nucleotides Metabolism Of Nucleotides
## Metabolism Of Polyamines Metabolism Of Polyamines
## Metabolism Of Rna Metabolism Of Rna
## Metabolism Of Steroid Hormones Metabolism Of Steroid Hormones
## Metabolism Of Steroids Metabolism Of Steroids
## Metabolism Of Vitamins And Cofactors Metabolism Of Vitamins And Cofactors
## Metabolism Of Water Soluble Vitamins And Cofactors Metabolism Of Water Soluble Vitamins And Cofactors
## Metal Ion Slc Transporters Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins Metal Sequestration By Antimicrobial Proteins
## Metallothioneins Bind Metals Metallothioneins Bind Metals
## Methionine Salvage Pathway Methionine Salvage Pathway
## Methylation Methylation
## Mhc Class Ii Antigen Presentation Mhc Class Ii Antigen Presentation
## Microrna Mirna Biogenesis Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle Miro Gtpase Cycle
## Miscellaneous Substrates Miscellaneous Substrates
## Miscellaneous Transport And Binding Events Miscellaneous Transport And Binding Events
## Mismatch Repair Mismatch Repair
## Mitochondrial Biogenesis Mitochondrial Biogenesis
## Mitochondrial Calcium Ion Transport Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import Mitochondrial Protein Import
## Mitochondrial Translation Mitochondrial Translation
## Mitochondrial Trna Aminoacylation Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling Mitochondrial Uncoupling
## Mitotic G1 Phase And G1 S Transition Mitotic G1 Phase And G1 S Transition
## Mitotic G2 G2 M Phases Mitotic G2 G2 M Phases
## Mitotic Metaphase And Anaphase Mitotic Metaphase And Anaphase
## Mitotic Prometaphase Mitotic Prometaphase
## Mitotic Prophase Mitotic Prophase
## Mitotic Spindle Checkpoint Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis Mitotic Telophase Cytokinesis
## Molecules Associated With Elastic Fibres Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis Molybdenum Cofactor Biosynthesis
## Mrna Capping Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing Mrna Editing
## Mrna Editing C To U Conversion Mrna Editing C To U Conversion
## Mrna Splicing Mrna Splicing
## Mrna Splicing Minor Pathway Mrna Splicing Minor Pathway
## Mtor Signalling Mtor Signalling
## Mtorc1 Mediated Signalling Mtorc1 Mediated Signalling
## Mucopolysaccharidoses Mucopolysaccharidoses
## Multifunctional Anion Exchangers Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors Muscarinic Acetylcholine Receptors
## Muscle Contraction Muscle Contraction
## Myoclonic Epilepsy Of Lafora Myoclonic Epilepsy Of Lafora
## N Glycan Antennae Elongation N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters Na Cl Dependent Neurotransmitter Transporters
## Ncam Signaling For Neurite Out Growth Ncam Signaling For Neurite Out Growth
## Ncam1 Interactions Ncam1 Interactions
## Nectin Necl Trans Heterodimerization Nectin Necl Trans Heterodimerization
## Neddylation Neddylation
## Nef And Signal Transduction Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Epigenetic Regulation Of Rrna Expression Negative Epigenetic Regulation Of Rrna Expression
## Negative Feedback Regulation Of Mapk Pathway Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Flt3 Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Nephrin Family Interactions Nephrin Family Interactions
## Nervous System Development Nervous System Development
## Neurexins And Neuroligins Neurexins And Neuroligins
## Neurofascin Interactions Neurofascin Interactions
## Neuronal System Neuronal System
## Neurotoxicity Of Clostridium Toxins Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance Neurotransmitter Clearance
## Neurotransmitter Receptors And Postsynaptic Signal Transmission Neurotransmitter Receptors And Postsynaptic Signal Transmission
## Neurotransmitter Release Cycle Neurotransmitter Release Cycle
## Neutrophil Degranulation Neutrophil Degranulation
## Ngf Independant Trka Activation Ngf Independant Trka Activation
## Nitric Oxide Stimulates Guanylate Cyclase Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3 Noncanonical Activation Of Notch3
## Nonhomologous End Joining Nhej Nonhomologous End Joining Nhej
## Nonsense Mediated Decay Nmd Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle Norepinephrine Neurotransmitter Release Cycle
## Notch Hlh Transcription Pathway Notch Hlh Transcription Pathway
## Notch1 Intracellular Domain Regulates Transcription Notch1 Intracellular Domain Regulates Transcription
## Notch2 Activation And Transmission Of Signal To The Nucleus Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch4 Activation And Transmission Of Signal To The Nucleus Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrage Signals Death Through Jnk Nrage Signals Death Through Jnk
## Nrcam Interactions Nrcam Interactions
## Ns1 Mediated Effects On Host Pathways Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1 Ntrk2 Activates Rac1
## Nuclear Envelope Breakdown Nuclear Envelope Breakdown
## Nuclear Envelope Ne Reassembly Nuclear Envelope Ne Reassembly
## Nuclear Events Kinase And Transcription Factor Activation Nuclear Events Kinase And Transcription Factor Activation
## Nuclear Import Of Rev Protein Nuclear Import Of Rev Protein
## Nuclear Receptor Transcription Pathway Nuclear Receptor Transcription Pathway
## Nucleobase Biosynthesis Nucleobase Biosynthesis
## Nucleobase Catabolism Nucleobase Catabolism
## Nucleotide Excision Repair Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors Nucleotide Like Purinergic Receptors
## O Glycosylation Of Tsr Domain Containing Proteins O Glycosylation Of Tsr Domain Containing Proteins
## O Linked Glycosylation O Linked Glycosylation
## O Linked Glycosylation Of Mucins O Linked Glycosylation Of Mucins
## Olfactory Signaling Pathway Olfactory Signaling Pathway
## Oncogenic Mapk Signaling Oncogenic Mapk Signaling
## Opioid Signalling Opioid Signalling
## Opsins Opsins
## Orc1 Removal From Chromatin Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organelle Biogenesis And Maintenance Organelle Biogenesis And Maintenance
## Organic Anion Transport Organic Anion Transport
## Organic Anion Transporters Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport Organic Cation Anion Zwitterion Transport
## Organic Cation Transport Organic Cation Transport
## Oxidative Stress Induced Senescence Oxidative Stress Induced Senescence
## P2y Receptors P2y Receptors
## P75ntr Negatively Regulates Cell Cycle Via Sc1 P75ntr Negatively Regulates Cell Cycle Via Sc1
## Parasite Infection Parasite Infection
## Passive Transport By Aquaporins Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair Pcna Dependent Long Patch Base Excision Repair
## Pcp Ce Pathway Pcp Ce Pathway
## Pentose Phosphate Pathway Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis Peptide Hormone Biosynthesis
## Peptide Hormone Metabolism Peptide Hormone Metabolism
## Peroxisomal Lipid Metabolism Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import Peroxisomal Protein Import
## Phase 0 Rapid Depolarisation Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation Phase 3 Rapid Repolarisation
## Phase I Functionalization Of Compounds Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2 Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4 Phospholipase C Mediated Cascade Fgfr4
## Phospholipid Metabolism Phospholipid Metabolism
## Physiological Factors Physiological Factors
## Pi 3k Cascade Fgfr1 Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2 Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3 Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4 Pi 3k Cascade Fgfr4
## Pi Metabolism Pi Metabolism
## Pi3k Akt Activation Pi3k Akt Activation
## Pi3k Events In Erbb4 Signaling Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation Pi5p Regulates Tp53 Acetylation
## Piwi Interacting Rna Pirna Biogenesis Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines Pkmts Methylate Histone Lysines
## Plasma Lipoprotein Assembly Remodeling And Clearance Plasma Lipoprotein Assembly Remodeling And Clearance
## Platelet Activation Signaling And Aggregation Platelet Activation Signaling And Aggregation
## Platelet Calcium Homeostasis Platelet Calcium Homeostasis
## Platelet Homeostasis Platelet Homeostasis
## Platelet Sensitization By Ldl Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events Polo Like Kinase Mediated Events
## Polymerase Switching Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway Post Chaperonin Tubulin Folding Pathway
## Post Translational Modification Synthesis Of Gpi Anchored Proteins Post Translational Modification Synthesis Of Gpi Anchored Proteins
## Postmitotic Nuclear Pore Complex Npc Reformation Postmitotic Nuclear Pore Complex Npc Reformation
## Potassium Channels Potassium Channels
## Potential Therapeutics For Sars Potential Therapeutics For Sars
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Prc2 Methylates Histones And Dna Prc2 Methylates Histones And Dna
## Pre Notch Expression And Processing Pre Notch Expression And Processing
## Pre Notch Processing In Golgi Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna Processing Of Capped Intronless Pre Mrna
## Processing Of Dna Double Strand Break Ends Processing Of Dna Double Strand Break Ends
## Processing Of Intronless Pre Mrnas Processing Of Intronless Pre Mrnas
## Processing Of Smdt1 Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand Processive Synthesis On The Lagging Strand
## Programmed Cell Death Programmed Cell Death
## Prolactin Receptor Signaling Prolactin Receptor Signaling
## Prolonged Erk Activation Events Prolonged Erk Activation Events
## Propionyl Coa Catabolism Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors Prostanoid Ligand Receptors
## Protein Folding Protein Folding
## Protein Localization Protein Localization
## Protein Methylation Protein Methylation
## Protein Protein Interactions At Synapses Protein Protein Interactions At Synapses
## Protein Ubiquitination Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport Proton Coupled Monocarboxylate Transport
## Pten Regulation Pten Regulation
## Ptk6 Expression Ptk6 Expression
## Ptk6 Regulates Proteins Involved In Rna Processing Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis Purine Ribonucleoside Monophosphate Biosynthesis
## Pyrimidine Catabolism Pyrimidine Catabolism
## Pyrimidine Salvage Pyrimidine Salvage
## Pyruvate Metabolism Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway Ra Biosynthesis Pathway
## Rab Gefs Exchange Gtp For Gdp On Rabs Rab Gefs Exchange Gtp For Gdp On Rabs
## Rab Geranylgeranylation Rab Geranylgeranylation
## Rab Regulation Of Trafficking Rab Regulation Of Trafficking
## Rac1 Gtpase Cycle Rac1 Gtpase Cycle
## Rac2 Gtpase Cycle Rac2 Gtpase Cycle
## Rac3 Gtpase Cycle Rac3 Gtpase Cycle
## Rap1 Signalling Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Type Tyrosine Protein Phosphatases Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recruitment Of Mitotic Centrosome Proteins And Complexes Recruitment Of Mitotic Centrosome Proteins And Complexes
## Recruitment Of Numa To Mitotic Centrosomes Recruitment Of Numa To Mitotic Centrosomes
## Recycling Of Bile Acids And Salts Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp Recycling Of Eif2 Gdp
## Recycling Pathway Of L1 Recycling Pathway Of L1
## Reduction Of Cytosolic Ca Levels Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr Regulated Proteolysis Of P75ntr
## Regulation Of Bach1 Activity Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos Regulation Of Expression Of Slits And Robos
## Regulation Of Fzd By Ubiquitination Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Hmox1 Expression And Activity Regulation Of Hmox1 Expression And Activity
## Regulation Of Hsf1 Mediated Heat Shock Response Regulation Of Hsf1 Mediated Heat Shock Response
## Regulation Of Innate Immune Responses To Cytosolic Dna Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps
## Regulation Of Insulin Secretion Regulation Of Insulin Secretion
## Regulation Of Lipid Metabolism By Pparalpha Regulation Of Lipid Metabolism By Pparalpha
## Regulation Of Localization Of Foxo Transcription Factors Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Plk1 Activity At G2 M Transition Regulation Of Plk1 Activity At G2 M Transition
## Regulation Of Pten Gene Transcription Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps Regulation Of Ras By Gaps
## Regulation Of Runx2 Expression And Activity Regulation Of Runx2 Expression And Activity
## Regulation Of Runx3 Expression And Activity Regulation Of Runx3 Expression And Activity
## Regulation Of Signaling By Cbl Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal Regulation Of Signaling By Nodal
## Regulation Of Tp53 Activity Regulation Of Tp53 Activity
## Regulation Of Tp53 Activity Through Acetylation Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors Regulation Of Tp53 Activity Through Association With Co Factors
## Regulation Of Tp53 Activity Through Phosphorylation Regulation Of Tp53 Activity Through Phosphorylation
## Relaxin Receptors Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Reproduction Reproduction
## Resolution Of Abasic Sites Ap Sites Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Resolution Of Sister Chromatid Cohesion Resolution Of Sister Chromatid Cohesion
## Respiratory Electron Transport Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis Response Of Mtb To Phagocytosis
## Response To Elevated Platelet Cytosolic Ca2 Response To Elevated Platelet Cytosolic Ca2
## Response To Metal Ions Response To Metal Ions
## Ret Signaling Ret Signaling
## Retinoid Cycle Disease Events Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling Retrograde Neurotrophin Signalling
## Retrograde Transport At The Trans Golgi Network Retrograde Transport At The Trans Golgi Network
## Reversible Hydration Of Carbon Dioxide Reversible Hydration Of Carbon Dioxide
## Rho Gtpase Cycle Rho Gtpase Cycle
## Rho Gtpase Effectors Rho Gtpase Effectors
## Rho Gtpases Activate Cit Rho Gtpases Activate Cit
## Rho Gtpases Activate Formins Rho Gtpases Activate Formins
## Rho Gtpases Activate Pkns Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks Rho Gtpases Activate Rocks
## Rhoa Gtpase Cycle Rhoa Gtpase Cycle
## Rhob Gtpase Cycle Rhob Gtpase Cycle
## Rhobtb Gtpase Cycle Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle Rhobtb3 Atpase Cycle
## Rhoc Gtpase Cycle Rhoc Gtpase Cycle
## Rhot1 Gtpase Cycle Rhot1 Gtpase Cycle
## Rmts Methylate Histone Arginines Rmts Methylate Histone Arginines
## Rna Polymerase I Promoter Escape Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination Rna Polymerase Iii Transcription Termination
## Rnd1 Gtpase Cycle Rnd1 Gtpase Cycle
## Rnd2 Gtpase Cycle Rnd2 Gtpase Cycle
## Rnd3 Gtpase Cycle Rnd3 Gtpase Cycle
## Robo Receptors Bind Akap5 Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression Rora Activates Gene Expression
## Rrna Modification In The Mitochondrion Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol Rrna Modification In The Nucleus And Cytosol
## Rrna Processing Rrna Processing
## Rrna Processing In The Mitochondrion Rrna Processing In The Mitochondrion
## Rsk Activation Rsk Activation
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx3 Regulates Bcl2l11 Bim Transcription Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf Runx3 Regulates P14 Arf
## Runx3 Regulates Yap1 Mediated Transcription Runx3 Regulates Yap1 Mediated Transcription
## S Phase S Phase
## Sars Cov 1 Genome Replication And Transcription Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection Sars Cov 1 Infection
## Sars Cov 2 Infection Sars Cov 2 Infection
## Sars Cov Infections Sars Cov Infections
## Scavenging By Class F Receptors Scavenging By Class F Receptors
## Scavenging Of Heme From Plasma Scavenging Of Heme From Plasma
## Scf Skp2 Mediated Degradation Of P27 P21 Scf Skp2 Mediated Degradation Of P27 P21
## Sealing Of The Nuclear Envelope Ne By Escrt Iii Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selective Autophagy Selective Autophagy
## Selenoamino Acid Metabolism Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Semaphorin Interactions Semaphorin Interactions
## Senescence Associated Secretory Phenotype Sasp Senescence Associated Secretory Phenotype Sasp
## Sensory Perception Sensory Perception
## Sensory Processing Of Sound Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids Separation Of Sister Chromatids
## Serine Biosynthesis Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors Serotonin Receptors
## Shc Mediated Cascade Fgfr1 Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3 Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4 Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r Shc Related Events Triggered By Igf1r
## Shc1 Events In Erbb4 Signaling Shc1 Events In Erbb4 Signaling
## Signal Attenuation Signal Attenuation
## Signaling By Activin Signaling By Activin
## Signaling By Bmp Signaling By Bmp
## Signaling By Braf And Raf Fusions Signaling By Braf And Raf Fusions
## Signaling By Ctnnb1 Phospho Site Mutants Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Erythropoietin Signaling By Erythropoietin
## Signaling By Fgfr Signaling By Fgfr
## Signaling By Fgfr In Disease Signaling By Fgfr In Disease
## Signaling By Fgfr1 Signaling By Fgfr1
## Signaling By Fgfr2 Signaling By Fgfr2
## Signaling By Fgfr2 Iiia Tm Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease Signaling By Fgfr2 In Disease
## Signaling By Fgfr3 Signaling By Fgfr3
## Signaling By Fgfr3 Fusions In Cancer Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4 Signaling By Fgfr4
## Signaling By Fgfr4 In Disease Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Gpcr Signaling By Gpcr
## Signaling By Hedgehog Signaling By Hedgehog
## Signaling By Insulin Receptor Signaling By Insulin Receptor
## Signaling By Lrp5 Mutants Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Met Signaling By Met
## Signaling By Mras Complex Mutants Signaling By Mras Complex Mutants
## Signaling By Mst1 Signaling By Mst1
## Signaling By Nodal Signaling By Nodal
## Signaling By Notch Signaling By Notch
## Signaling By Notch1 Signaling By Notch1
## Signaling By Notch1 Hd Domain Mutants In Cancer Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 Pest Domain Mutants In Cancer Signaling By Notch1 Pest Domain Mutants In Cancer
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch4 Signaling By Notch4
## Signaling By Ntrks Signaling By Ntrks
## Signaling By Nuclear Receptors Signaling By Nuclear Receptors
## Signaling By Receptor Tyrosine Kinases Signaling By Receptor Tyrosine Kinases
## Signaling By Retinoic Acid Signaling By Retinoic Acid
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 Signaling By Rho Gtpases Miro Gtpases And Rhobtb3
## Signaling By Rnf43 Mutants Signaling By Rnf43 Mutants
## Signaling By Robo Receptors Signaling By Robo Receptors
## Signaling By Tgf Beta Receptor Complex Signaling By Tgf Beta Receptor Complex
## Signaling By Tgf Beta Receptor Complex In Cancer Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By Tgfb Family Members Signaling By Tgfb Family Members
## Signaling By The B Cell Receptor Bcr Signaling By The B Cell Receptor Bcr
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r
## Signaling By Vegf Signaling By Vegf
## Signaling By Wnt Signaling By Wnt
## Signaling By Wnt In Cancer Signaling By Wnt In Cancer
## Signalling To P38 Via Rit And Rin Signalling To P38 Via Rit And Rin
## Sirt1 Negatively Regulates Rrna Expression Sirt1 Negatively Regulates Rrna Expression
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport Slc Mediated Transmembrane Transport
## Slc Transporter Disorders Slc Transporter Disorders
## Small Interfering Rna Sirna Biogenesis Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction Smooth Muscle Contraction
## Snrnp Assembly Snrnp Assembly
## Sodium Calcium Exchangers Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers Sodium Proton Exchangers
## Sos Mediated Signalling Sos Mediated Signalling
## Sperm Motility And Taxes Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism Sphingolipid Metabolism
## Srp Dependent Cotranslational Protein Targeting To Membrane Srp Dependent Cotranslational Protein Targeting To Membrane
## Stabilization Of P53 Stabilization Of P53
## Stat5 Activation Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants Stat5 Activation Downstream Of Flt3 Itd Mutants
## Stimuli Sensing Channels Stimuli Sensing Channels
## Striated Muscle Contraction Striated Muscle Contraction
## Sulfide Oxidation To Sulfate Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1 Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation Sumoylation
## Sumoylation Of Chromatin Organization Proteins Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins Sumoylation Of Dna Replication Proteins
## Sumoylation Of Intracellular Receptors Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Cofactors Sumoylation Of Transcription Cofactors
## Sumoylation Of Transcription Factors Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation Suppression Of Phagosomal Maturation
## Surfactant Metabolism Surfactant Metabolism
## Switching Of Origins To A Post Replicative State Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules Synaptic Adhesion Like Molecules
## Syndecan Interactions Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2 Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx Synthesis Of Lipoxins Lx
## Synthesis Of Pa Synthesis Of Pa
## Synthesis Of Pc Synthesis Of Pc
## Synthesis Of Pe Synthesis Of Pe
## Synthesis Of Pg Synthesis Of Pg
## Synthesis Of Pi Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pips At The Plasma Membrane Synthesis Of Pips At The Plasma Membrane
## Synthesis Of Pyrophosphates In The Cytosol Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Substrates In N Glycan Biosythesis Synthesis Of Substrates In N Glycan Biosythesis
## Synthesis Of Udp N Acetyl Glucosamine Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin Synthesis Secretion And Deacylation Of Ghrelin
## Tachykinin Receptors Bind Tachykinins Tachykinin Receptors Bind Tachykinins
## Tbc Rabgaps Tbc Rabgaps
## Tcf Dependent Signaling In Response To Wnt Tcf Dependent Signaling In Response To Wnt
## Tcr Signaling Tcr Signaling
## Telomere C Strand Lagging Strand Synthesis Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation Telomere C Strand Synthesis Initiation
## Telomere Maintenance Telomere Maintenance
## Terminal Pathway Of Complement Terminal Pathway Of Complement
## Termination Of Translesion Dna Synthesis Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model The Fatty Acid Cycling Model
## The Phototransduction Cascade The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision The Retinoid Cycle In Cones Daylight Vision
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint The Role Of Gtse1 In G2 M Progression After G2 Checkpoint
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thromboxane Signalling Through Tp Receptor Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis Thyroxine Biosynthesis
## Tie2 Signaling Tie2 Signaling
## Tight Junction Interactions Tight Junction Interactions
## Toxicity Of Botulinum Toxin Type D Botd Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Cell Cycle Genes Tp53 Regulates Transcription Of Cell Cycle Genes
## Tp53 Regulates Transcription Of Death Receptors And Ligands Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Dna Repair Genes Tp53 Regulates Transcription Of Dna Repair Genes
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Trafficking Of Ampa Receptors Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling Trail Signaling
## Trans Golgi Network Vesicle Budding Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of The Hiv Genome Transcription Of The Hiv Genome
## Transcriptional Activation Of Mitochondrial Biogenesis Transcriptional Activation Of Mitochondrial Biogenesis
## Transcriptional Regulation By E2f6 Transcriptional Regulation By E2f6
## Transcriptional Regulation By Mecp2 Transcriptional Regulation By Mecp2
## Transcriptional Regulation By Runx1 Transcriptional Regulation By Runx1
## Transcriptional Regulation By Runx2 Transcriptional Regulation By Runx2
## Transcriptional Regulation By Runx3 Transcriptional Regulation By Runx3
## Transcriptional Regulation By Small Rnas Transcriptional Regulation By Small Rnas
## Transcriptional Regulation By Tp53 Transcriptional Regulation By Tp53
## Transcriptional Regulation By Ventx Transcriptional Regulation By Ventx
## Transcriptional Regulation Of Granulopoiesis Transcriptional Regulation Of Granulopoiesis
## Transcriptional Regulation Of Testis Differentiation Transcriptional Regulation Of Testis Differentiation
## Transcriptional Regulation Of White Adipocyte Differentiation Transcriptional Regulation Of White Adipocyte Differentiation
## Transferrin Endocytosis And Recycling Transferrin Endocytosis And Recycling
## Translation Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh Translesion Synthesis By Polh
## Translesion Synthesis By Polk Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane Translocation Of Slc2a4 Glut4 To The Plasma Membrane
## Transmission Across Chemical Synapses Transmission Across Chemical Synapses
## Transport And Synthesis Of Paps Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars Transport Of Nucleotide Sugars
## Transport Of Organic Anions Transport Of Organic Anions
## Transport Of Small Molecules Transport Of Small Molecules
## Transport Of The Slbp Dependant Mature Mrna Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules Transport Of Vitamins Nucleosides And Related Molecules
## Transport To The Golgi And Subsequent Modification Transport To The Golgi And Subsequent Modification
## Triglyceride Biosynthesis Triglyceride Biosynthesis
## Triglyceride Metabolism Triglyceride Metabolism
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation Trna Aminoacylation
## Trna Modification In The Mitochondrion Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol Trna Modification In The Nucleus And Cytosol
## Trna Processing Trna Processing
## Trna Processing In The Mitochondrion Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus Trna Processing In The Nucleus
## Trp Channels Trp Channels
## Tryptophan Catabolism Tryptophan Catabolism
## Type I Hemidesmosome Assembly Type I Hemidesmosome Assembly
## Tyrosine Catabolism Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins Tysnd1 Cleaves Peroxisomal Proteins
## Ub Specific Processing Proteases Ub Specific Processing Proteases
## Ubiquinol Biosynthesis Ubiquinol Biosynthesis
## Uch Proteinases Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unfolded Protein Response Upr Unfolded Protein Response Upr
## Unwinding Of Dna Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin Uptake And Function Of Diphtheria Toxin
## Urea Cycle Urea Cycle
## Vasopressin Like Receptors Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions Vegf Ligand Receptor Interactions
## Vesicle Mediated Transport Vesicle Mediated Transport
## Viral Messenger Rna Synthesis Viral Messenger Rna Synthesis
## Visual Phototransduction Visual Phototransduction
## Vitamin B1 Thiamin Metabolism Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism Vitamin D Calciferol Metabolism
## Vitamins Vitamins
## Vldl Assembly Vldl Assembly
## Vldl Clearance Vldl Clearance
## Voltage Gated Potassium Channels Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl Wnt Mediated Activation Of Dvl
## Xenobiotics Xenobiotics
## Zinc Efflux And Compartmentalization By The Slc30 Family Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters Zinc Transporters
## pval
## Interleukin 10 Signaling 2.9e-08
## Chemokine Receptors Bind Chemokines 5.4e-05
## Interleukin 4 And Interleukin 13 Signaling 2.6e-03
## Irak4 Deficiency Tlr2 4 2.1e-02
## Fibronectin Matrix Formation 3.2e-02
## Diseases Of Immune System 3.9e-02
## Regulation Of Tlr By Endogenous Ligand 4.5e-02
## Interleukin 18 Signaling 7.4e-02
## Cd163 Mediating An Anti Inflammatory Response 1.0e-01
## Interleukin 1 Processing 1.0e-01
## Purinergic Signaling In Leishmaniasis Infection 1.1e-01
## P75ntr Signals Via Nf Kb 1.4e-01
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 1.5e-01
## Interleukin 6 Signaling 1.6e-01
## Tnfs Bind Their Physiological Receptors 1.6e-01
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 1.7e-01
## Nod1 2 Signaling Pathway 1.8e-01
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 1.8e-01
## Cd28 Dependent Vav1 Pathway 2.0e-01
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 2.0e-01
## Killing Mechanisms 2.0e-01
## P75ntr Recruits Signalling Complexes 2.3e-01
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 2.3e-01
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 2.3e-01
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 2.3e-01
## Pyroptosis 2.7e-01
## Activation Of C3 And C5 2.8e-01
## Runx2 Regulates Genes Involved In Cell Migration 2.8e-01
## Ctla4 Inhibitory Signaling 2.9e-01
## Inflammasomes 2.9e-01
## Egfr Interacts With Phospholipase C Gamma 3.3e-01
## Egfr Transactivation By Gastrin 3.3e-01
## Interleukin 9 Signaling 3.3e-01
## Trif Mediated Programmed Cell Death 3.3e-01
## Activated Tak1 Mediates P38 Mapk Activation 3.5e-01
## Caspase Activation Via Death Receptors In The Presence Of Ligand 3.5e-01
## The Nlrp3 Inflammasome 3.5e-01
## Toll Like Receptor Tlr1 Tlr2 Cascade 3.6e-01
## Ovarian Tumor Domain Proteases 3.7e-01
## Activation Of The Ap 1 Family Of Transcription Factors 3.8e-01
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 3.8e-01
## Gab1 Signalosome 3.8e-01
## Interleukin 21 Signaling 3.8e-01
## Mapk3 Erk1 Activation 3.8e-01
## Rip Mediated Nfkb Activation Via Zbp1 3.8e-01
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 3.8e-01
## Activation Of Matrix Metalloproteinases 4.3e-01
## Apoptotic Cleavage Of Cell Adhesion Proteins 4.3e-01
## Interleukin 27 Signaling 4.3e-01
## Receptor Mediated Mitophagy 4.3e-01
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 4.4e-01
## Toll Like Receptor 9 Tlr9 Cascade 4.5e-01
## Gp1b Ix V Activation Signalling 4.8e-01
## Interleukin 35 Signalling 4.8e-01
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 4.8e-01
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 4.8e-01
## Signaling By Kit In Disease 4.9e-01
## Alternative Complement Activation 5.0e-01
## Fasl Cd95l Signaling 5.0e-01
## G2 M Dna Replication Checkpoint 5.0e-01
## Galactose Catabolism 5.0e-01
## Hdl Clearance 5.0e-01
## Mecp2 Regulates Transcription Factors 5.0e-01
## Nostrin Mediated Enos Trafficking 5.0e-01
## Runx1 Regulates Expression Of Components Of Tight Junctions 5.0e-01
## Runx2 Regulates Chondrocyte Maturation 5.0e-01
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 5.0e-01
## Apoptosis Induced Dna Fragmentation 5.2e-01
## Erbb2 Activates Ptk6 Signaling 5.2e-01
## Nf Kb Is Activated And Signals Survival 5.2e-01
## Tnfr1 Induced Proapoptotic Signaling 5.2e-01
## Trafficking And Processing Of Endosomal Tlr 5.2e-01
## Zbp1 Dai Mediated Induction Of Type I Ifns 5.3e-01
## Dcc Mediated Attractive Signaling 5.6e-01
## Early Phase Of Hiv Life Cycle 5.6e-01
## Interleukin 15 Signaling 5.6e-01
## Shc1 Events In Egfr Signaling 5.6e-01
## Toll Like Receptor Cascades 5.6e-01
## Activated Ntrk3 Signals Through Pi3k 5.7e-01
## Activation Of Caspases Through Apoptosome Mediated Cleavage 5.7e-01
## Biosynthesis Of Epa Derived Spms 5.7e-01
## Clec7a Inflammasome Pathway 5.7e-01
## Nade Modulates Death Signalling 5.7e-01
## Phosphorylation Of Emi1 5.7e-01
## Protein Repair 5.7e-01
## Ptk6 Promotes Hif1a Stabilization 5.7e-01
## Ptk6 Regulates Cell Cycle 5.7e-01
## Scavenging By Class B Receptors 5.7e-01
## Sensing Of Dna Double Strand Breaks 5.7e-01
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 5.7e-01
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 5.7e-01
## Tnfr1 Mediated Ceramide Production 5.7e-01
## Ikk Complex Recruitment Mediated By Rip1 5.9e-01
## Constitutive Signaling By Egfrviii 6.0e-01
## Erbb2 Regulates Cell Motility 6.0e-01
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 6.0e-01
## P130cas Linkage To Mapk Signaling For Integrins 6.0e-01
## Heme Signaling 6.1e-01
## Regulated Necrosis 6.1e-01
## Activated Ntrk2 Signals Through Fyn 6.2e-01
## Activation Of Nima Kinases Nek9 Nek6 Nek7 6.2e-01
## Creb Phosphorylation 6.2e-01
## Defective Factor Viii Causes Hemophilia A 6.2e-01
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 6.2e-01
## Ikba Variant Leads To Eda Id 6.2e-01
## Interleukin 6 Family Signaling 6.2e-01
## Modulation By Mtb Of Host Immune System 6.2e-01
## Myd88 Independent Tlr4 Cascade 6.2e-01
## Traf6 Mediated Nf Kb Activation 6.2e-01
## Cd28 Co Stimulation 6.4e-01
## Grb2 Events In Erbb2 Signaling 6.4e-01
## Pi3k Events In Erbb2 Signaling 6.4e-01
## Signal Regulatory Protein Family Interactions 6.4e-01
## Signaling By Erbb2 Ecd Mutants 6.4e-01
## Sumoylation Of Dna Methylation Proteins 6.4e-01
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 6.4e-01
## Beta Defensins 6.6e-01
## Extra Nuclear Estrogen Signaling 6.6e-01
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 6.7e-01
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 6.7e-01
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 6.7e-01
## Hdl Assembly 6.7e-01
## Inactivation Of Cdc42 And Rac1 6.7e-01
## Lectin Pathway Of Complement Activation 6.7e-01
## Mecp2 Regulates Transcription Of Neuronal Ligands 6.7e-01
## Netrin Mediated Repulsion Signals 6.7e-01
## Runx3 Regulates Wnt Signaling 6.7e-01
## Smac Xiap Regulated Apoptotic Response 6.7e-01
## Interleukin 2 Family Signaling 7.0e-01
## Signaling By Cytosolic Fgfr1 Fusion Mutants 7.0e-01
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 7.2e-01
## Dap12 Interactions 7.2e-01
## Downregulation Of Erbb4 Signaling 7.2e-01
## E2f Enabled Inhibition Of Pre Replication Complex Formation 7.2e-01
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 7.2e-01
## Interleukin 23 Signaling 7.2e-01
## Mapk1 Erk2 Activation 7.2e-01
## Oas Antiviral Response 7.2e-01
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 7.3e-01
## Interleukin 17 Signaling 7.3e-01
## Other Semaphorin Interactions 7.3e-01
## Pd 1 Signaling 7.3e-01
## Scavenging By Class A Receptors 7.3e-01
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 7.3e-01
## Akt Phosphorylates Targets In The Nucleus 7.5e-01
## Camk Iv Mediated Phosphorylation Of Creb 7.5e-01
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 7.5e-01
## Chylomicron Assembly 7.5e-01
## Chylomicron Remodeling 7.5e-01
## Dap12 Signaling 7.5e-01
## Downstream Signal Transduction 7.5e-01
## Hdl Remodeling 7.5e-01
## Mastl Facilitates Mitotic Progression 7.5e-01
## P75ntr Regulates Axonogenesis 7.5e-01
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 7.5e-01
## Regulation Of Foxo Transcriptional Activity By Acetylation 7.5e-01
## Interleukin 1 Family Signaling 7.6e-01
## Signaling By Pdgfr In Disease 7.6e-01
## Costimulation By The Cd28 Family 7.7e-01
## Peptide Ligand Binding Receptors 7.7e-01
## Tnfr1 Induced Nfkappab Signaling Pathway 7.7e-01
## Interleukin 37 Signaling 7.8e-01
## Signal Transduction By L1 7.8e-01
## Condensation Of Prometaphase Chromosomes 7.9e-01
## Dermatan Sulfate Biosynthesis 7.9e-01
## Dscam Interactions 7.9e-01
## Egfr Downregulation 7.9e-01
## Endosomal Vacuolar Pathway 7.9e-01
## Enos Activation 7.9e-01
## Mapk Targets Nuclear Events Mediated By Map Kinases 7.9e-01
## Pexophagy 7.9e-01
## Regulation By C Flip 7.9e-01
## Rho Gtpases Activate Ktn1 7.9e-01
## Signaling By Leptin 7.9e-01
## Sumoylation Of Immune Response Proteins 7.9e-01
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 7.9e-01
## Cd28 Dependent Pi3k Akt Signaling 8.0e-01
## Shc1 Events In Erbb2 Signaling 8.0e-01
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 8.1e-01
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 8.1e-01
## Interleukin 2 Signaling 8.1e-01
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 8.1e-01
## Notch2 Intracellular Domain Regulates Transcription 8.1e-01
## Pecam1 Interactions 8.1e-01
## Tandem Pore Domain Potassium Channels 8.1e-01
## Ticam1 Dependent Activation Of Irf3 Irf7 8.1e-01
## Vldlr Internalisation And Degradation 8.1e-01
## Raf Independent Mapk1 3 Activation 8.2e-01
## Defensins 8.3e-01
## Signaling By Scf Kit 8.3e-01
## Advanced Glycosylation Endproduct Receptor Signaling 8.4e-01
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 8.4e-01
## Cytochrome C Mediated Apoptotic Response 8.4e-01
## Dissolution Of Fibrin Clot 8.4e-01
## Growth Hormone Receptor Signaling 8.4e-01
## Irf3 Mediated Induction Of Type I Ifn 8.4e-01
## Negative Regulators Of Ddx58 Ifih1 Signaling 8.4e-01
## P38mapk Events 8.4e-01
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 8.4e-01
## Purine Salvage 8.4e-01
## Runx2 Regulates Osteoblast Differentiation 8.4e-01
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 8.4e-01
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 8.4e-01
## Regulation Of Tnfr1 Signaling 8.5e-01
## Golgi Cisternae Pericentriolar Stack Reorganization 8.6e-01
## Inactivation Of Csf3 G Csf Signaling 8.6e-01
## Irak1 Recruits Ikk Complex 8.6e-01
## Notch3 Activation And Transmission Of Signal To The Nucleus 8.6e-01
## Regulation Of Ifng Signaling 8.6e-01
## Repression Of Wnt Target Genes 8.6e-01
## Signaling By Egfr In Cancer 8.6e-01
## Traf3 Dependent Irf Activation Pathway 8.6e-01
## Interleukin 20 Family Signaling 8.7e-01
## Signaling By Erbb2 In Cancer 8.7e-01
## Depolymerisation Of The Nuclear Lamina 8.8e-01
## Heme Degradation 8.8e-01
## Interleukin 12 Family Signaling 8.8e-01
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 8.8e-01
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 8.8e-01
## Platelet Adhesion To Exposed Collagen 8.8e-01
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 8.8e-01
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 8.8e-01
## Wnt5a Dependent Internalization Of Fzd4 8.8e-01
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 8.8e-01
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 8.9e-01
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 8.9e-01
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 8.9e-01
## Foxo Mediated Transcription Of Cell Death Genes 8.9e-01
## G0 And Early G1 8.9e-01
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 8.9e-01
## Integrin Signaling 8.9e-01
## Interleukin Receptor Shc Signaling 8.9e-01
## Nrif Signals Cell Death From The Nucleus 8.9e-01
## Regulation Of Kit Signaling 8.9e-01
## Spry Regulation Of Fgf Signaling 8.9e-01
## Sting Mediated Induction Of Host Immune Responses 8.9e-01
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 8.9e-01
## Vegfr2 Mediated Vascular Permeability 8.9e-01
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 9.1e-01
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 9.1e-01
## Downregulation Of Erbb2 Signaling 9.1e-01
## Foxo Mediated Transcription Of Cell Cycle Genes 9.1e-01
## Mitophagy 9.1e-01
## Regulation Of Runx1 Expression And Activity 9.1e-01
## Ripk1 Mediated Regulated Necrosis 9.1e-01
## Signaling By Egfr 9.1e-01
## Signaling By Ntrk3 Trkc 9.1e-01
## Abc Transporters In Lipid Homeostasis 9.2e-01
## Crosslinking Of Collagen Fibrils 9.2e-01
## Diseases Associated With Glycosylation Precursor Biosynthesis 9.2e-01
## Eph Ephrin Mediated Repulsion Of Cells 9.2e-01
## Mecp2 Regulates Neuronal Receptors And Channels 9.2e-01
## Signaling By Csf3 G Csf 9.2e-01
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 9.2e-01
## Biosynthesis Of Specialized Proresolving Mediators Spms 9.3e-01
## Ephrin Signaling 9.3e-01
## Fgfr1 Mutant Receptor Activation 9.3e-01
## Initiation Of Nuclear Envelope Ne Reformation 9.3e-01
## Interleukin 1 Signaling 9.3e-01
## Ldl Clearance 9.3e-01
## Nicotinamide Salvaging 9.3e-01
## Nicotinate Metabolism 9.3e-01
## Phase 4 Resting Membrane Potential 9.3e-01
## Plasma Lipoprotein Assembly 9.3e-01
## Regulation Of Tp53 Activity Through Methylation 9.3e-01
## Runx2 Regulates Bone Development 9.3e-01
## Signaling By Interleukins 9.3e-01
## Tnfr2 Non Canonical Nf Kb Pathway 9.3e-01
## Transcription Of E2f Targets Under Negative Control By Dream Complex 9.3e-01
## Vegfr2 Mediated Cell Proliferation 9.3e-01
## Apoptotic Factor Mediated Response 9.4e-01
## Cargo Concentration In The Er 9.4e-01
## Collagen Degradation 9.4e-01
## G Beta Gamma Signalling Through Cdc42 9.4e-01
## Listeria Monocytogenes Entry Into Host Cells 9.4e-01
## Perk Regulates Gene Expression 9.4e-01
## Phosphorylation Of The Apc C 9.4e-01
## Pka Mediated Phosphorylation Of Creb 9.4e-01
## Plasma Lipoprotein Clearance 9.4e-01
## Signaling By Hippo 9.4e-01
## Signaling By Ptk6 9.4e-01
## Signalling To Ras 9.4e-01
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 9.4e-01
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 9.4e-01
## Tnf Signaling 9.4e-01
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 9.4e-01
## Branched Chain Amino Acid Catabolism 9.5e-01
## Chaperone Mediated Autophagy 9.5e-01
## Complement Cascade 9.5e-01
## Constitutive Signaling By Aberrant Pi3k In Cancer 9.5e-01
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 9.5e-01
## E2f Mediated Regulation Of Dna Replication 9.5e-01
## Gpvi Mediated Activation Cascade 9.5e-01
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 9.5e-01
## P75 Ntr Receptor Mediated Signalling 9.5e-01
## Pink1 Prkn Mediated Mitophagy 9.5e-01
## Rho Gtpases Activate Paks 9.5e-01
## Incretin Synthesis Secretion And Inactivation 9.6e-01
## Interleukin 12 Signaling 9.6e-01
## Intrinsic Pathway Of Fibrin Clot Formation 9.6e-01
## Long Term Potentiation 9.6e-01
## Nucleotide Salvage 9.6e-01
## Regulation Of Tp53 Expression And Degradation 9.6e-01
## Rhoh Gtpase Cycle 9.6e-01
## Rhoq Gtpase Cycle 9.6e-01
## Signaling By Notch3 9.6e-01
## Telomere Extension By Telomerase 9.6e-01
## Termination Of O Glycan Biosynthesis 9.6e-01
## Adp Signalling Through P2y Purinoceptor 1 9.7e-01
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 9.7e-01
## Apc C Cdc20 Mediated Degradation Of Cyclin B 9.7e-01
## Apoptotic Cleavage Of Cellular Proteins 9.7e-01
## Apoptotic Execution Phase 9.7e-01
## Assembly Of Collagen Fibrils And Other Multimeric Structures 9.7e-01
## Basigin Interactions 9.7e-01
## Constitutive Signaling By Akt1 E17k In Cancer 9.7e-01
## Cyclin A B1 B2 Associated Events During G2 M Transition 9.7e-01
## Cytosolic Sensors Of Pathogen Associated Dna 9.7e-01
## Death Receptor Signalling 9.7e-01
## Dectin 2 Family 9.7e-01
## Negative Regulation Of The Pi3k Akt Network 9.7e-01
## Netrin 1 Signaling 9.7e-01
## Ngf Stimulated Transcription 9.7e-01
## Notch3 Intracellular Domain Regulates Transcription 9.7e-01
## Other Interleukin Signaling 9.7e-01
## Platelet Aggregation Plug Formation 9.7e-01
## Regulation Of Ifna Signaling 9.7e-01
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 9.7e-01
## Rho Gtpases Activate Nadph Oxidases 9.7e-01
## Signaling By Erbb2 9.7e-01
## Signaling By Fgfr1 In Disease 9.7e-01
## Signaling By Ntrk2 Trkb 9.7e-01
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 9.7e-01
## Triglyceride Catabolism 9.7e-01
## Wnt Ligand Biogenesis And Trafficking 9.7e-01
## Antigen Processing Cross Presentation 9.8e-01
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 9.8e-01
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 9.8e-01
## Epha Mediated Growth Cone Collapse 9.8e-01
## Ephb Mediated Forward Signaling 9.8e-01
## G1 S Specific Transcription 9.8e-01
## Infection With Mycobacterium Tuberculosis 9.8e-01
## Intrinsic Pathway For Apoptosis 9.8e-01
## Map2k And Mapk Activation 9.8e-01
## Metabolism Of Porphyrins 9.8e-01
## Myogenesis 9.8e-01
## Negative Regulation Of Fgfr3 Signaling 9.8e-01
## Rhof Gtpase Cycle 9.8e-01
## Rhoj Gtpase Cycle 9.8e-01
## Tp53 Regulates Transcription Of Cell Death Genes 9.8e-01
## Traf6 Mediated Irf7 Activation 9.8e-01
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 9.8e-01
## Activation Of Bh3 Only Proteins 9.9e-01
## Antimicrobial Peptides 9.9e-01
## Ca Dependent Events 9.9e-01
## Cyclin D Associated Events In G1 9.9e-01
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 9.9e-01
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 9.9e-01
## Foxo Mediated Transcription 9.9e-01
## G Protein Beta Gamma Signalling 9.9e-01
## Hdr Through Single Strand Annealing Ssa 9.9e-01
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 9.9e-01
## Interleukin 7 Signaling 9.9e-01
## Late Endosomal Microautophagy 9.9e-01
## Met Activates Ptk2 Signaling 9.9e-01
## Metalloprotease Dubs 9.9e-01
## Negative Regulation Of Fgfr1 Signaling 9.9e-01
## Negative Regulation Of Fgfr2 Signaling 9.9e-01
## Negative Regulation Of Fgfr4 Signaling 9.9e-01
## Nuclear Pore Complex Npc Disassembly 9.9e-01
## Nuclear Signaling By Erbb4 9.9e-01
## Oncogene Induced Senescence 9.9e-01
## Pi3k Akt Signaling In Cancer 9.9e-01
## Plasma Lipoprotein Remodeling 9.9e-01
## Raf Activation 9.9e-01
## Regulation Of Mecp2 Expression And Activity 9.9e-01
## Resolution Of D Loop Structures 9.9e-01
## Rho Gtpases Activate Iqgaps 9.9e-01
## Rho Gtpases Activate Wasps And Waves 9.9e-01
## Rhod Gtpase Cycle 9.9e-01
## Rhog Gtpase Cycle 9.9e-01
## Rhou Gtpase Cycle 9.9e-01
## Rhov Gtpase Cycle 9.9e-01
## Ros And Rns Production In Phagocytes 9.9e-01
## Sialic Acid Metabolism 9.9e-01
## Signal Amplification 9.9e-01
## Signaling By Erbb4 9.9e-01
## Signaling By Moderate Kinase Activity Braf Mutants 9.9e-01
## Signaling By Notch2 9.9e-01
## Signaling By Pdgf 9.9e-01
## Signalling To Erks 9.9e-01
## Thrombin Signalling Through Proteinase Activated Receptors Pars 9.9e-01
## Transcriptional Regulation Of Pluripotent Stem Cells 9.9e-01
## 2 Ltr Circle Formation 1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 1.0e+00
## Abacavir Metabolism 1.0e+00
## Abacavir Transmembrane Transport 1.0e+00
## Abacavir Transport And Metabolism 1.0e+00
## Abc Family Proteins Mediated Transport 1.0e+00
## Abc Transporter Disorders 1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 1.0e+00
## Acetylcholine Binding And Downstream Events 1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 1.0e+00
## Acetylcholine Neurotransmitter Release Cycle 1.0e+00
## Acetylcholine Regulates Insulin Secretion 1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding 1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus 1.0e+00
## Activated Ntrk2 Signals Through Cdk5 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3 1.0e+00
## Activated Ntrk2 Signals Through Pi3k 1.0e+00
## Activated Ntrk2 Signals Through Ras 1.0e+00
## Activated Ntrk3 Signals Through Ras 1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 1.0e+00
## Activation Of Ampk Downstream Of Nmdars 1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 1.0e+00
## Activation Of Atr In Response To Replication Stress 1.0e+00
## Activation Of Bad And Translocation To Mitochondria 1.0e+00
## Activation Of Gene Expression By Srebf Srebp 1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding 1.0e+00
## Activation Of Nmda Receptors And Postsynaptic Events 1.0e+00
## Activation Of Noxa And Translocation To Mitochondria 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 1.0e+00
## Activation Of Puma And Translocation To Mitochondria 1.0e+00
## Activation Of Rac1 1.0e+00
## Activation Of Rac1 Downstream Of Nmdars 1.0e+00
## Activation Of Ras In B Cells 1.0e+00
## Activation Of Smo 1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 1.0e+00
## Activation Of The Phototransduction Cascade 1.0e+00
## Activation Of The Pre Replicative Complex 1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 1.0e+00
## Activation Of Trka Receptors 1.0e+00
## Acyl Chain Remodeling Of Cl 1.0e+00
## Acyl Chain Remodeling Of Dag And Tag 1.0e+00
## Acyl Chain Remodelling Of Pc 1.0e+00
## Acyl Chain Remodelling Of Pe 1.0e+00
## Acyl Chain Remodelling Of Pg 1.0e+00
## Acyl Chain Remodelling Of Pi 1.0e+00
## Acyl Chain Remodelling Of Ps 1.0e+00
## Adaptive Immune System 1.0e+00
## Adenylate Cyclase Activating Pathway 1.0e+00
## Adenylate Cyclase Inhibitory Pathway 1.0e+00
## Adherens Junctions Interactions 1.0e+00
## Adora2b Mediated Anti Inflammatory Cytokines Production 1.0e+00
## Adp Signalling Through P2y Purinoceptor 12 1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion 1.0e+00
## Adrenoceptors 1.0e+00
## Aflatoxin Activation And Detoxification 1.0e+00
## Aggrephagy 1.0e+00
## Akt Phosphorylates Targets In The Cytosol 1.0e+00
## Alpha Defensins 1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 1.0e+00
## Alpha Oxidation Of Phytanate 1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway 1.0e+00
## Amine Ligand Binding Receptors 1.0e+00
## Amino Acid Conjugation 1.0e+00
## Amino Acid Transport Across The Plasma Membrane 1.0e+00
## Amino Acids Regulate Mtorc1 1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity 1.0e+00
## Amyloid Fiber Formation 1.0e+00
## Anchoring Fibril Formation 1.0e+00
## Anchoring Of The Basal Body To The Plasma Membrane 1.0e+00
## Androgen Biosynthesis 1.0e+00
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 1.0e+00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation 1.0e+00
## Antiviral Mechanism By Ifn Stimulated Genes 1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 1.0e+00
## Apc C Mediated Degradation Of Cell Cycle Proteins 1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a 1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection 1.0e+00
## Apoptosis 1.0e+00
## Aquaporin Mediated Transport 1.0e+00
## Arachidonate Production From Dag 1.0e+00
## Arachidonic Acid Metabolism 1.0e+00
## Arms Mediated Activation 1.0e+00
## Aryl Hydrocarbon Receptor Signalling 1.0e+00
## Asparagine N Linked Glycosylation 1.0e+00
## Aspartate And Asparagine Metabolism 1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors 1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes 1.0e+00
## Assembly Of The Hiv Virion 1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication 1.0e+00
## Assembly Of The Pre Replicative Complex 1.0e+00
## Association Of Tric Cct With Target Proteins During Biosynthesis 1.0e+00
## Asymmetric Localization Of Pcp Proteins 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones 1.0e+00
## Attachment And Entry 1.0e+00
## Attachment Of Gpi Anchor To Upar 1.0e+00
## Attenuation Phase 1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 1.0e+00
## Aurka Activation By Tpx2 1.0e+00
## Autophagy 1.0e+00
## B Wich Complex Positively Regulates Rrna Expression 1.0e+00
## Base Excision Repair 1.0e+00
## Base Excision Repair Ap Site Formation 1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium 1.0e+00
## Beta Catenin Independent Wnt Signaling 1.0e+00
## Beta Catenin Phosphorylation Cascade 1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 1.0e+00
## Beta Oxidation Of Pristanoyl Coa 1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids 1.0e+00
## Bicarbonate Transporters 1.0e+00
## Bile Acid And Bile Salt Metabolism 1.0e+00
## Binding And Uptake Of Ligands By Scavenger Receptors 1.0e+00
## Biological Oxidations 1.0e+00
## Biosynthesis Of Maresin Like Spms 1.0e+00
## Biosynthesis Of Maresins 1.0e+00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1.0e+00
## Biotin Transport And Metabolism 1.0e+00
## Blood Group Systems Biosynthesis 1.0e+00
## Budding And Maturation Of Hiv Virion 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 1.0e+00
## Butyrophilin Btn Family Interactions 1.0e+00
## C Type Lectin Receptors Clrs 1.0e+00
## Ca2 Activated K Channels 1.0e+00
## Ca2 Pathway 1.0e+00
## Calcineurin Activates Nfat 1.0e+00
## Calcitonin Like Ligand Receptors 1.0e+00
## Calnexin Calreticulin Cycle 1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin 1.0e+00
## Cardiac Conduction 1.0e+00
## Cargo Recognition For Clathrin Mediated Endocytosis 1.0e+00
## Cargo Trafficking To The Periciliary Membrane 1.0e+00
## Carnitine Metabolism 1.0e+00
## Cation Coupled Chloride Cotransporters 1.0e+00
## Cd209 Dc Sign Signaling 1.0e+00
## Cd22 Mediated Bcr Regulation 1.0e+00
## Cdc42 Gtpase Cycle 1.0e+00
## Cdc6 Association With The Orc Origin Complex 1.0e+00
## Cell Cell Communication 1.0e+00
## Cell Cell Junction Organization 1.0e+00
## Cell Cycle 1.0e+00
## Cell Cycle Checkpoints 1.0e+00
## Cell Cycle Mitotic 1.0e+00
## Cell Death Signalling Via Nrage Nrif And Nade 1.0e+00
## Cell Extracellular Matrix Interactions 1.0e+00
## Cell Junction Organization 1.0e+00
## Cell Surface Interactions At The Vascular Wall 1.0e+00
## Cellular Hexose Transport 1.0e+00
## Cellular Response To Chemical Stress 1.0e+00
## Cellular Response To Heat Stress 1.0e+00
## Cellular Response To Hypoxia 1.0e+00
## Cellular Response To Starvation 1.0e+00
## Cellular Responses To External Stimuli 1.0e+00
## Cellular Senescence 1.0e+00
## Cgmp Effects 1.0e+00
## Chl1 Interactions 1.0e+00
## Cholesterol Biosynthesis 1.0e+00
## Choline Catabolism 1.0e+00
## Chondroitin Sulfate Biosynthesis 1.0e+00
## Chondroitin Sulfate Dermatan Sulfate Metabolism 1.0e+00
## Chrebp Activates Metabolic Gene Expression 1.0e+00
## Chromatin Modifying Enzymes 1.0e+00
## Chromosome Maintenance 1.0e+00
## Chylomicron Clearance 1.0e+00
## Cilium Assembly 1.0e+00
## Circadian Clock 1.0e+00
## Citric Acid Cycle Tca Cycle 1.0e+00
## Class A 1 Rhodopsin Like Receptors 1.0e+00
## Class B 2 Secretin Family Receptors 1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors 1.0e+00
## Class I Mhc Mediated Antigen Processing Presentation 1.0e+00
## Class I Peroxisomal Membrane Protein Import 1.0e+00
## Clathrin Mediated Endocytosis 1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation 1.0e+00
## Clec7a Dectin 1 Signaling 1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 1.0e+00
## Coenzyme A Biosynthesis 1.0e+00
## Cohesin Loading Onto Chromatin 1.0e+00
## Collagen Biosynthesis And Modifying Enzymes 1.0e+00
## Collagen Chain Trimerization 1.0e+00
## Collagen Formation 1.0e+00
## Common Pathway Of Fibrin Clot Formation 1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation 1.0e+00
## Complex I Biogenesis 1.0e+00
## Condensation Of Prophase Chromosomes 1.0e+00
## Conjugation Of Benzoate With Glycine 1.0e+00
## Constitutive Signaling By Overexpressed Erbb2 1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic 1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic 1.0e+00
## Copi Mediated Anterograde Transport 1.0e+00
## Copii Mediated Vesicle Transport 1.0e+00
## Creatine Metabolism 1.0e+00
## Creation Of C4 And C2 Activators 1.0e+00
## Creb3 Factors Activate Genes 1.0e+00
## Cristae Formation 1.0e+00
## Crmps In Sema3a Signaling 1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 1.0e+00
## Cs Ds Degradation 1.0e+00
## Cyclin A Cdk2 Associated Events At S Phase Entry 1.0e+00
## Cyp2e1 Reactions 1.0e+00
## Cytochrome P450 Arranged By Substrate Type 1.0e+00
## Cytokine Signaling In Immune System 1.0e+00
## Cytoprotection By Hmox1 1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly 1.0e+00
## Cytosolic Sulfonation Of Small Molecules 1.0e+00
## Cytosolic Trna Aminoacylation 1.0e+00
## Dag And Ip3 Signaling 1.0e+00
## Darpp 32 Events 1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex 1.0e+00
## Deadenylation Dependent Mrna Decay 1.0e+00
## Deadenylation Of Mrna 1.0e+00
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type 1.0e+00
## Defective Cftr Causes Cystic Fibrosis 1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type 1.0e+00
## Defective Chst3 Causes Sedcjd 1.0e+00
## Defective Chst6 Causes Mcdc1 1.0e+00
## Defective Chsy1 Causes Tpbs 1.0e+00
## Defective Csf2rb Causes Smdp5 1.0e+00
## Defective Ext2 Causes Exostoses 2 1.0e+00
## Defective F9 Activation 1.0e+00
## Defective Factor Ix Causes Hemophilia B 1.0e+00
## Defective Lfng Causes Scdo3 1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis 1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15 1.0e+00
## Defects In Biotin Btn Metabolism 1.0e+00
## Defects In Cobalamin B12 Metabolism 1.0e+00
## Defects In Vitamin And Cofactor Metabolism 1.0e+00
## Degradation Of Axin 1.0e+00
## Degradation Of Beta Catenin By The Destruction Complex 1.0e+00
## Degradation Of Cysteine And Homocysteine 1.0e+00
## Degradation Of Dvl 1.0e+00
## Degradation Of Gli1 By The Proteasome 1.0e+00
## Degradation Of The Extracellular Matrix 1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 1.0e+00
## Detoxification Of Reactive Oxygen Species 1.0e+00
## Deubiquitination 1.0e+00
## Developmental Biology 1.0e+00
## Digestion 1.0e+00
## Digestion And Absorption 1.0e+00
## Digestion Of Dietary Carbohydrate 1.0e+00
## Digestion Of Dietary Lipid 1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism 1.0e+00
## Diseases Associated With N Glycosylation Of Proteins 1.0e+00
## Diseases Associated With O Glycosylation Of Proteins 1.0e+00
## Diseases Associated With Surfactant Metabolism 1.0e+00
## Diseases Of Base Excision Repair 1.0e+00
## Diseases Of Carbohydrate Metabolism 1.0e+00
## Diseases Of Dna Repair 1.0e+00
## Diseases Of Glycosylation 1.0e+00
## Diseases Of Metabolism 1.0e+00
## Diseases Of Mismatch Repair Mmr 1.0e+00
## Diseases Of Mitotic Cell Cycle 1.0e+00
## Diseases Of Programmed Cell Death 1.0e+00
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 1.0e+00
## Disinhibition Of Snare Formation 1.0e+00
## Disorders Of Transmembrane Transporters 1.0e+00
## Displacement Of Dna Glycosylase By Apex1 1.0e+00
## Dna Damage Bypass 1.0e+00
## Dna Damage Recognition In Gg Ner 1.0e+00
## Dna Damage Reversal 1.0e+00
## Dna Damage Telomere Stress Induced Senescence 1.0e+00
## Dna Double Strand Break Repair 1.0e+00
## Dna Double Strand Break Response 1.0e+00
## Dna Methylation 1.0e+00
## Dna Repair 1.0e+00
## Dna Replication 1.0e+00
## Dna Replication Initiation 1.0e+00
## Dna Replication Pre Initiation 1.0e+00
## Dna Strand Elongation 1.0e+00
## Dopamine Neurotransmitter Release Cycle 1.0e+00
## Dopamine Receptors 1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling 1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling 1.0e+00
## Downstream Signaling Events Of B Cell Receptor Bcr 1.0e+00
## Downstream Signaling Of Activated Fgfr1 1.0e+00
## Downstream Signaling Of Activated Fgfr2 1.0e+00
## Downstream Signaling Of Activated Fgfr3 1.0e+00
## Downstream Signaling Of Activated Fgfr4 1.0e+00
## Dual Incision In Gg Ner 1.0e+00
## Dual Incision In Tc Ner 1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 1.0e+00
## Ecm Proteoglycans 1.0e+00
## Effects Of Pip2 Hydrolysis 1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 1.0e+00
## Eicosanoid Ligand Binding Receptors 1.0e+00
## Eicosanoids 1.0e+00
## Elastic Fibre Formation 1.0e+00
## Electric Transmission Across Gap Junctions 1.0e+00
## Elevation Of Cytosolic Ca2 Levels 1.0e+00
## Endogenous Sterols 1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt 1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 1.0e+00
## Eph Ephrin Signaling 1.0e+00
## Epigenetic Regulation Of Gene Expression 1.0e+00
## Er Quality Control Compartment Erqc 1.0e+00
## Er To Golgi Anterograde Transport 1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 1.0e+00
## Erk Mapk Targets 1.0e+00
## Erks Are Inactivated 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg 1.0e+00
## Erythropoietin Activates Ras 1.0e+00
## Erythropoietin Activates Stat5 1.0e+00
## Esr Mediated Signaling 1.0e+00
## Establishment Of Sister Chromatid Cohesion 1.0e+00
## Estrogen Biosynthesis 1.0e+00
## Estrogen Dependent Gene Expression 1.0e+00
## Estrogen Stimulated Signaling Through Prkcz 1.0e+00
## Ethanol Oxidation 1.0e+00
## Eukaryotic Translation Elongation 1.0e+00
## Eukaryotic Translation Initiation 1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus 1.0e+00
## Extension Of Telomeres 1.0e+00
## Extracellular Matrix Organization 1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Factors Involved In Megakaryocyte Development And Platelet Production 1.0e+00
## Fanconi Anemia Pathway 1.0e+00
## Fatty Acid Metabolism 1.0e+00
## Fatty Acids 1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 1.0e+00
## Fatty Acyl Coa Biosynthesis 1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer 1.0e+00
## Fc Epsilon Receptor Fceri Signaling 1.0e+00
## Fceri Mediated Ca 2 Mobilization 1.0e+00
## Fceri Mediated Mapk Activation 1.0e+00
## Fceri Mediated Nf Kb Activation 1.0e+00
## Fcgamma Receptor Fcgr Dependent Phagocytosis 1.0e+00
## Fcgr Activation 1.0e+00
## Fcgr3a Mediated Il10 Synthesis 1.0e+00
## Fertilization 1.0e+00
## Fgfr1 Ligand Binding And Activation 1.0e+00
## Fgfr1b Ligand Binding And Activation 1.0e+00
## Fgfr1c Ligand Binding And Activation 1.0e+00
## Fgfr2 Alternative Splicing 1.0e+00
## Fgfr2 Ligand Binding And Activation 1.0e+00
## Fgfr2 Mutant Receptor Activation 1.0e+00
## Fgfr2b Ligand Binding And Activation 1.0e+00
## Fgfr2c Ligand Binding And Activation 1.0e+00
## Fgfr3 Ligand Binding And Activation 1.0e+00
## Fgfr3b Ligand Binding And Activation 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 1.0e+00
## Flt3 Signaling 1.0e+00
## Flt3 Signaling By Cbl Mutants 1.0e+00
## Flt3 Signaling In Disease 1.0e+00
## Flt3 Signaling Through Src Family Kinases 1.0e+00
## Folding Of Actin By Cct Tric 1.0e+00
## Formation Of Apoptosome 1.0e+00
## Formation Of Atp By Chemiosmotic Coupling 1.0e+00
## Formation Of Fibrin Clot Clotting Cascade 1.0e+00
## Formation Of Incision Complex In Gg Ner 1.0e+00
## Formation Of Rna Pol Ii Elongation Complex 1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf 1.0e+00
## Formation Of Tc Ner Pre Incision Complex 1.0e+00
## Formation Of The Beta Catenin Tcf Transactivating Complex 1.0e+00
## Formation Of The Cornified Envelope 1.0e+00
## Formation Of The Early Elongation Complex 1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric 1.0e+00
## Formation Of Xylulose 5 Phosphate 1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 1.0e+00
## Free Fatty Acid Receptors 1.0e+00
## Free Fatty Acids Regulate Insulin Secretion 1.0e+00
## Frs Mediated Fgfr1 Signaling 1.0e+00
## Frs Mediated Fgfr2 Signaling 1.0e+00
## Frs Mediated Fgfr3 Signaling 1.0e+00
## Frs Mediated Fgfr4 Signaling 1.0e+00
## Fructose Catabolism 1.0e+00
## Fructose Metabolism 1.0e+00
## G Alpha 12 13 Signalling Events 1.0e+00
## G Alpha I Signalling Events 1.0e+00
## G Alpha Q Signalling Events 1.0e+00
## G Alpha S Signalling Events 1.0e+00
## G Alpha Z Signalling Events 1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma 1.0e+00
## G Protein Activation 1.0e+00
## G Protein Mediated Events 1.0e+00
## G1 S Dna Damage Checkpoints 1.0e+00
## G2 M Checkpoints 1.0e+00
## G2 M Dna Damage Checkpoint 1.0e+00
## G2 Phase 1.0e+00
## Gaba B Receptor Activation 1.0e+00
## Gaba Receptor Activation 1.0e+00
## Gaba Synthesis Release Reuptake And Degradation 1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 1.0e+00
## Gap Junction Assembly 1.0e+00
## Gap Junction Degradation 1.0e+00
## Gap Junction Trafficking And Regulation 1.0e+00
## Gdp Fucose Biosynthesis 1.0e+00
## Gene Silencing By Rna 1.0e+00
## Generation Of Second Messenger Molecules 1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner 1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 1.0e+00
## Glucagon Signaling In Metabolic Regulation 1.0e+00
## Glucagon Type Ligand Receptors 1.0e+00
## Glucocorticoid Biosynthesis 1.0e+00
## Gluconeogenesis 1.0e+00
## Glucose Metabolism 1.0e+00
## Glucuronidation 1.0e+00
## Glutamate And Glutamine Metabolism 1.0e+00
## Glutamate Neurotransmitter Release Cycle 1.0e+00
## Glutathione Conjugation 1.0e+00
## Glutathione Synthesis And Recycling 1.0e+00
## Glycerophospholipid Biosynthesis 1.0e+00
## Glycerophospholipid Catabolism 1.0e+00
## Glycogen Breakdown Glycogenolysis 1.0e+00
## Glycogen Metabolism 1.0e+00
## Glycogen Storage Diseases 1.0e+00
## Glycogen Synthesis 1.0e+00
## Glycolysis 1.0e+00
## Glycosaminoglycan Metabolism 1.0e+00
## Glycosphingolipid Metabolism 1.0e+00
## Glyoxylate Metabolism And Glycine Degradation 1.0e+00
## Golgi Associated Vesicle Biogenesis 1.0e+00
## Golgi To Er Retrograde Transport 1.0e+00
## Gpcr Ligand Binding 1.0e+00
## Grb7 Events In Erbb2 Signaling 1.0e+00
## Hats Acetylate Histones 1.0e+00
## Hcmv Early Events 1.0e+00
## Hcmv Infection 1.0e+00
## Hcmv Late Events 1.0e+00
## Hdacs Deacetylate Histones 1.0e+00
## Hdms Demethylate Histones 1.0e+00
## Hdr Through Homologous Recombination Hrr 1.0e+00
## Hdr Through Mmej Alt Nhej 1.0e+00
## Hedgehog Ligand Biogenesis 1.0e+00
## Hedgehog Off State 1.0e+00
## Hedgehog On State 1.0e+00
## Heme Biosynthesis 1.0e+00
## Hemostasis 1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism 1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 1.0e+00
## Histidine Catabolism 1.0e+00
## Hiv Elongation Arrest And Recovery 1.0e+00
## Hiv Infection 1.0e+00
## Hiv Life Cycle 1.0e+00
## Hiv Transcription Elongation 1.0e+00
## Hiv Transcription Initiation 1.0e+00
## Homologous Dna Pairing And Strand Exchange 1.0e+00
## Homology Directed Repair 1.0e+00
## Hormone Ligand Binding Receptors 1.0e+00
## Host Interactions Of Hiv Factors 1.0e+00
## Hs Gag Biosynthesis 1.0e+00
## Hs Gag Degradation 1.0e+00
## Hsf1 Activation 1.0e+00
## Hsf1 Dependent Transactivation 1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna 1.0e+00
## Hyaluronan Biosynthesis And Export 1.0e+00
## Hyaluronan Metabolism 1.0e+00
## Hyaluronan Uptake And Degradation 1.0e+00
## Hydrolysis Of Lpc 1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions 1.0e+00
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 1.0e+00
## Infectious Disease 1.0e+00
## Influenza Infection 1.0e+00
## Inhibition Of Dna Recombination At Telomere 1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 1.0e+00
## Initial Triggering Of Complement 1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 1.0e+00
## Innate Immune System 1.0e+00
## Inositol Phosphate Metabolism 1.0e+00
## Insulin Processing 1.0e+00
## Insulin Receptor Recycling 1.0e+00
## Insulin Receptor Signalling Cascade 1.0e+00
## Integration Of Energy Metabolism 1.0e+00
## Integration Of Provirus 1.0e+00
## Integrin Cell Surface Interactions 1.0e+00
## Interaction Between L1 And Ankyrins 1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida 1.0e+00
## Interactions Of Rev With Host Cellular Proteins 1.0e+00
## Interactions Of Vpr With Host Cellular Proteins 1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates 1.0e+00
## Interferon Alpha Beta Signaling 1.0e+00
## Interferon Gamma Signaling 1.0e+00
## Interferon Signaling 1.0e+00
## Interleukin 36 Pathway 1.0e+00
## Intestinal Absorption 1.0e+00
## Intra Golgi And Retrograde Golgi To Er Traffic 1.0e+00
## Intra Golgi Traffic 1.0e+00
## Intracellular Signaling By Second Messengers 1.0e+00
## Intraflagellar Transport 1.0e+00
## Inwardly Rectifying K Channels 1.0e+00
## Ion Channel Transport 1.0e+00
## Ion Homeostasis 1.0e+00
## Ion Transport By P Type Atpases 1.0e+00
## Ionotropic Activity Of Kainate Receptors 1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex 1.0e+00
## Ire1alpha Activates Chaperones 1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn 1.0e+00
## Iron Uptake And Transport 1.0e+00
## Irs Activation 1.0e+00
## Irs Mediated Signalling 1.0e+00
## Josephin Domain Dubs 1.0e+00
## Keratan Sulfate Biosynthesis 1.0e+00
## Keratan Sulfate Degradation 1.0e+00
## Keratan Sulfate Keratin Metabolism 1.0e+00
## Keratinization 1.0e+00
## Ketone Body Metabolism 1.0e+00
## Kinesins 1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna 1.0e+00
## L1cam Interactions 1.0e+00
## Lagging Strand Synthesis 1.0e+00
## Laminin Interactions 1.0e+00
## Leishmania Infection 1.0e+00
## Leukotriene Receptors 1.0e+00
## Lgi Adam Interactions 1.0e+00
## Ligand Receptor Interactions 1.0e+00
## Linoleic Acid La Metabolism 1.0e+00
## Lipid Particle Organization 1.0e+00
## Lipophagy 1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome 1.0e+00
## Loss Of Function Of Smad2 3 In Cancer 1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 1.0e+00
## Ltc4 Cysltr Mediated Il4 Production 1.0e+00
## Lysine Catabolism 1.0e+00
## Lysosome Vesicle Biogenesis 1.0e+00
## Lysosphingolipid And Lpa Receptors 1.0e+00
## M Phase 1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 1.0e+00
## Mapk Family Signaling Cascades 1.0e+00
## Mapk6 Mapk4 Signaling 1.0e+00
## Maturation Of Nucleoprotein 1.0e+00
## Maturation Of Protein 3a 1.0e+00
## Maturation Of Sars Cov 1 Spike Protein 1.0e+00
## Maturation Of Sars Cov 2 Spike Protein 1.0e+00
## Meiosis 1.0e+00
## Meiotic Recombination 1.0e+00
## Meiotic Synapsis 1.0e+00
## Melanin Biosynthesis 1.0e+00
## Membrane Trafficking 1.0e+00
## Met Activates Pi3k Akt Signaling 1.0e+00
## Met Activates Ptpn11 1.0e+00
## Met Activates Rap1 And Rac1 1.0e+00
## Met Activates Ras Signaling 1.0e+00
## Met Interacts With Tns Proteins 1.0e+00
## Met Promotes Cell Motility 1.0e+00
## Met Receptor Activation 1.0e+00
## Met Receptor Recycling 1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes 1.0e+00
## Metabolism Of Amine Derived Hormones 1.0e+00
## Metabolism Of Amino Acids And Derivatives 1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins 1.0e+00
## Metabolism Of Carbohydrates 1.0e+00
## Metabolism Of Cofactors 1.0e+00
## Metabolism Of Fat Soluble Vitamins 1.0e+00
## Metabolism Of Folate And Pterines 1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se 1.0e+00
## Metabolism Of Lipids 1.0e+00
## Metabolism Of Nucleotides 1.0e+00
## Metabolism Of Polyamines 1.0e+00
## Metabolism Of Rna 1.0e+00
## Metabolism Of Steroid Hormones 1.0e+00
## Metabolism Of Steroids 1.0e+00
## Metabolism Of Vitamins And Cofactors 1.0e+00
## Metabolism Of Water Soluble Vitamins And Cofactors 1.0e+00
## Metal Ion Slc Transporters 1.0e+00
## Metal Sequestration By Antimicrobial Proteins 1.0e+00
## Metallothioneins Bind Metals 1.0e+00
## Methionine Salvage Pathway 1.0e+00
## Methylation 1.0e+00
## Mhc Class Ii Antigen Presentation 1.0e+00
## Microrna Mirna Biogenesis 1.0e+00
## Mineralocorticoid Biosynthesis 1.0e+00
## Miro Gtpase Cycle 1.0e+00
## Miscellaneous Substrates 1.0e+00
## Miscellaneous Transport And Binding Events 1.0e+00
## Mismatch Repair 1.0e+00
## Mitochondrial Biogenesis 1.0e+00
## Mitochondrial Calcium Ion Transport 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis 1.0e+00
## Mitochondrial Protein Import 1.0e+00
## Mitochondrial Translation 1.0e+00
## Mitochondrial Trna Aminoacylation 1.0e+00
## Mitochondrial Uncoupling 1.0e+00
## Mitotic G1 Phase And G1 S Transition 1.0e+00
## Mitotic G2 G2 M Phases 1.0e+00
## Mitotic Metaphase And Anaphase 1.0e+00
## Mitotic Prometaphase 1.0e+00
## Mitotic Prophase 1.0e+00
## Mitotic Spindle Checkpoint 1.0e+00
## Mitotic Telophase Cytokinesis 1.0e+00
## Molecules Associated With Elastic Fibres 1.0e+00
## Molybdenum Cofactor Biosynthesis 1.0e+00
## Mrna Capping 1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease 1.0e+00
## Mrna Editing 1.0e+00
## Mrna Editing C To U Conversion 1.0e+00
## Mrna Splicing 1.0e+00
## Mrna Splicing Minor Pathway 1.0e+00
## Mtor Signalling 1.0e+00
## Mtorc1 Mediated Signalling 1.0e+00
## Mucopolysaccharidoses 1.0e+00
## Multifunctional Anion Exchangers 1.0e+00
## Muscarinic Acetylcholine Receptors 1.0e+00
## Muscle Contraction 1.0e+00
## Myoclonic Epilepsy Of Lafora 1.0e+00
## N Glycan Antennae Elongation 1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi 1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi 1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 1.0e+00
## Na Cl Dependent Neurotransmitter Transporters 1.0e+00
## Ncam Signaling For Neurite Out Growth 1.0e+00
## Ncam1 Interactions 1.0e+00
## Nectin Necl Trans Heterodimerization 1.0e+00
## Neddylation 1.0e+00
## Nef And Signal Transduction 1.0e+00
## Nef Mediated Cd4 Down Regulation 1.0e+00
## Nef Mediated Cd8 Down Regulation 1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 1.0e+00
## Negative Epigenetic Regulation Of Rrna Expression 1.0e+00
## Negative Feedback Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 1.0e+00
## Negative Regulation Of Flt3 1.0e+00
## Negative Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Met Activity 1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 1.0e+00
## Negative Regulation Of Notch4 Signaling 1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 1.0e+00
## Nephrin Family Interactions 1.0e+00
## Nervous System Development 1.0e+00
## Neurexins And Neuroligins 1.0e+00
## Neurofascin Interactions 1.0e+00
## Neuronal System 1.0e+00
## Neurotoxicity Of Clostridium Toxins 1.0e+00
## Neurotransmitter Clearance 1.0e+00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 1.0e+00
## Neurotransmitter Release Cycle 1.0e+00
## Neutrophil Degranulation 1.0e+00
## Ngf Independant Trka Activation 1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase 1.0e+00
## Non Integrin Membrane Ecm Interactions 1.0e+00
## Noncanonical Activation Of Notch3 1.0e+00
## Nonhomologous End Joining Nhej 1.0e+00
## Nonsense Mediated Decay Nmd 1.0e+00
## Norepinephrine Neurotransmitter Release Cycle 1.0e+00
## Notch Hlh Transcription Pathway 1.0e+00
## Notch1 Intracellular Domain Regulates Transcription 1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Intracellular Domain Regulates Transcription 1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 1.0e+00
## Nrage Signals Death Through Jnk 1.0e+00
## Nrcam Interactions 1.0e+00
## Ns1 Mediated Effects On Host Pathways 1.0e+00
## Ntrk2 Activates Rac1 1.0e+00
## Nuclear Envelope Breakdown 1.0e+00
## Nuclear Envelope Ne Reassembly 1.0e+00
## Nuclear Events Kinase And Transcription Factor Activation 1.0e+00
## Nuclear Import Of Rev Protein 1.0e+00
## Nuclear Receptor Transcription Pathway 1.0e+00
## Nucleobase Biosynthesis 1.0e+00
## Nucleobase Catabolism 1.0e+00
## Nucleotide Excision Repair 1.0e+00
## Nucleotide Like Purinergic Receptors 1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins 1.0e+00
## O Linked Glycosylation 1.0e+00
## O Linked Glycosylation Of Mucins 1.0e+00
## Olfactory Signaling Pathway 1.0e+00
## Oncogenic Mapk Signaling 1.0e+00
## Opioid Signalling 1.0e+00
## Opsins 1.0e+00
## Orc1 Removal From Chromatin 1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 1.0e+00
## Organelle Biogenesis And Maintenance 1.0e+00
## Organic Anion Transport 1.0e+00
## Organic Anion Transporters 1.0e+00
## Organic Cation Anion Zwitterion Transport 1.0e+00
## Organic Cation Transport 1.0e+00
## Oxidative Stress Induced Senescence 1.0e+00
## P2y Receptors 1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1 1.0e+00
## Parasite Infection 1.0e+00
## Passive Transport By Aquaporins 1.0e+00
## Pcna Dependent Long Patch Base Excision Repair 1.0e+00
## Pcp Ce Pathway 1.0e+00
## Pentose Phosphate Pathway 1.0e+00
## Peptide Hormone Biosynthesis 1.0e+00
## Peptide Hormone Metabolism 1.0e+00
## Peroxisomal Lipid Metabolism 1.0e+00
## Peroxisomal Protein Import 1.0e+00
## Phase 0 Rapid Depolarisation 1.0e+00
## Phase 1 Inactivation Of Fast Na Channels 1.0e+00
## Phase 2 Plateau Phase 1.0e+00
## Phase 3 Rapid Repolarisation 1.0e+00
## Phase I Functionalization Of Compounds 1.0e+00
## Phase Ii Conjugation Of Compounds 1.0e+00
## Phenylalanine And Tyrosine Metabolism 1.0e+00
## Phenylalanine Metabolism 1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins 1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins 1.0e+00
## Phospholipase C Mediated Cascade Fgfr2 1.0e+00
## Phospholipase C Mediated Cascade Fgfr4 1.0e+00
## Phospholipid Metabolism 1.0e+00
## Physiological Factors 1.0e+00
## Pi 3k Cascade Fgfr1 1.0e+00
## Pi 3k Cascade Fgfr2 1.0e+00
## Pi 3k Cascade Fgfr3 1.0e+00
## Pi 3k Cascade Fgfr4 1.0e+00
## Pi Metabolism 1.0e+00
## Pi3k Akt Activation 1.0e+00
## Pi3k Events In Erbb4 Signaling 1.0e+00
## Pi5p Regulates Tp53 Acetylation 1.0e+00
## Piwi Interacting Rna Pirna Biogenesis 1.0e+00
## Pka Activation In Glucagon Signalling 1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors 1.0e+00
## Pkmts Methylate Histone Lysines 1.0e+00
## Plasma Lipoprotein Assembly Remodeling And Clearance 1.0e+00
## Platelet Activation Signaling And Aggregation 1.0e+00
## Platelet Calcium Homeostasis 1.0e+00
## Platelet Homeostasis 1.0e+00
## Platelet Sensitization By Ldl 1.0e+00
## Polb Dependent Long Patch Base Excision Repair 1.0e+00
## Polo Like Kinase Mediated Events 1.0e+00
## Polymerase Switching 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression 1.0e+00
## Post Chaperonin Tubulin Folding Pathway 1.0e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation 1.0e+00
## Potassium Channels 1.0e+00
## Potential Therapeutics For Sars 1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 1.0e+00
## Prc2 Methylates Histones And Dna 1.0e+00
## Pre Notch Expression And Processing 1.0e+00
## Pre Notch Processing In Golgi 1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum 1.0e+00
## Pregnenolone Biosynthesis 1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening 1.0e+00
## Presynaptic Function Of Kainate Receptors 1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion 1.0e+00
## Processing And Activation Of Sumo 1.0e+00
## Processing Of Capped Intron Containing Pre Mrna 1.0e+00
## Processing Of Capped Intronless Pre Mrna 1.0e+00
## Processing Of Dna Double Strand Break Ends 1.0e+00
## Processing Of Intronless Pre Mrnas 1.0e+00
## Processing Of Smdt1 1.0e+00
## Processive Synthesis On The C Strand Of The Telomere 1.0e+00
## Processive Synthesis On The Lagging Strand 1.0e+00
## Programmed Cell Death 1.0e+00
## Prolactin Receptor Signaling 1.0e+00
## Prolonged Erk Activation Events 1.0e+00
## Propionyl Coa Catabolism 1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor 1.0e+00
## Prostanoid Ligand Receptors 1.0e+00
## Protein Folding 1.0e+00
## Protein Localization 1.0e+00
## Protein Methylation 1.0e+00
## Protein Protein Interactions At Synapses 1.0e+00
## Protein Ubiquitination 1.0e+00
## Proton Coupled Monocarboxylate Transport 1.0e+00
## Pten Regulation 1.0e+00
## Ptk6 Expression 1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing 1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 1.0e+00
## Purine Catabolism 1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis 1.0e+00
## Pyrimidine Catabolism 1.0e+00
## Pyrimidine Salvage 1.0e+00
## Pyruvate Metabolism 1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle 1.0e+00
## Ra Biosynthesis Pathway 1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs 1.0e+00
## Rab Geranylgeranylation 1.0e+00
## Rab Regulation Of Trafficking 1.0e+00
## Rac1 Gtpase Cycle 1.0e+00
## Rac2 Gtpase Cycle 1.0e+00
## Rac3 Gtpase Cycle 1.0e+00
## Rap1 Signalling 1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 1.0e+00
## Ras Processing 1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway 1.0e+00
## Receptor Type Tyrosine Protein Phosphatases 1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex 1.0e+00
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1.0e+00
## Recruitment Of Numa To Mitotic Centrosomes 1.0e+00
## Recycling Of Bile Acids And Salts 1.0e+00
## Recycling Of Eif2 Gdp 1.0e+00
## Recycling Pathway Of L1 1.0e+00
## Reduction Of Cytosolic Ca Levels 1.0e+00
## Reelin Signalling Pathway 1.0e+00
## Regulated Proteolysis Of P75ntr 1.0e+00
## Regulation Of Bach1 Activity 1.0e+00
## Regulation Of Beta Cell Development 1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 1.0e+00
## Regulation Of Expression Of Slits And Robos 1.0e+00
## Regulation Of Fzd By Ubiquitination 1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor 1.0e+00
## Regulation Of Gene Expression In Beta Cells 1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 1.0e+00
## Regulation Of Hmox1 Expression And Activity 1.0e+00
## Regulation Of Hsf1 Mediated Heat Shock Response 1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna 1.0e+00
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 1.0e+00
## Regulation Of Insulin Secretion 1.0e+00
## Regulation Of Lipid Metabolism By Pparalpha 1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors 1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 1.0e+00
## Regulation Of Plk1 Activity At G2 M Transition 1.0e+00
## Regulation Of Pten Gene Transcription 1.0e+00
## Regulation Of Pten Localization 1.0e+00
## Regulation Of Pten Mrna Translation 1.0e+00
## Regulation Of Pten Stability And Activity 1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 1.0e+00
## Regulation Of Ras By Gaps 1.0e+00
## Regulation Of Runx2 Expression And Activity 1.0e+00
## Regulation Of Runx3 Expression And Activity 1.0e+00
## Regulation Of Signaling By Cbl 1.0e+00
## Regulation Of Signaling By Nodal 1.0e+00
## Regulation Of Tp53 Activity 1.0e+00
## Regulation Of Tp53 Activity Through Acetylation 1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors 1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation 1.0e+00
## Relaxin Receptors 1.0e+00
## Release Of Apoptotic Factors From The Mitochondria 1.0e+00
## Release Of Hh Np From The Secreting Cell 1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 1.0e+00
## Reproduction 1.0e+00
## Resolution Of Abasic Sites Ap Sites 1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 1.0e+00
## Resolution Of Sister Chromatid Cohesion 1.0e+00
## Respiratory Electron Transport 1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency 1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 1.0e+00
## Response Of Mtb To Phagocytosis 1.0e+00
## Response To Elevated Platelet Cytosolic Ca2 1.0e+00
## Response To Metal Ions 1.0e+00
## Ret Signaling 1.0e+00
## Retinoid Cycle Disease Events 1.0e+00
## Retrograde Neurotrophin Signalling 1.0e+00
## Retrograde Transport At The Trans Golgi Network 1.0e+00
## Reversible Hydration Of Carbon Dioxide 1.0e+00
## Rho Gtpase Cycle 1.0e+00
## Rho Gtpase Effectors 1.0e+00
## Rho Gtpases Activate Cit 1.0e+00
## Rho Gtpases Activate Formins 1.0e+00
## Rho Gtpases Activate Pkns 1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins 1.0e+00
## Rho Gtpases Activate Rocks 1.0e+00
## Rhoa Gtpase Cycle 1.0e+00
## Rhob Gtpase Cycle 1.0e+00
## Rhobtb Gtpase Cycle 1.0e+00
## Rhobtb1 Gtpase Cycle 1.0e+00
## Rhobtb2 Gtpase Cycle 1.0e+00
## Rhobtb3 Atpase Cycle 1.0e+00
## Rhoc Gtpase Cycle 1.0e+00
## Rhot1 Gtpase Cycle 1.0e+00
## Rmts Methylate Histone Arginines 1.0e+00
## Rna Polymerase I Promoter Escape 1.0e+00
## Rna Polymerase I Transcription 1.0e+00
## Rna Polymerase I Transcription Initiation 1.0e+00
## Rna Polymerase I Transcription Termination 1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes 1.0e+00
## Rna Polymerase Ii Transcription Termination 1.0e+00
## Rna Polymerase Iii Chain Elongation 1.0e+00
## Rna Polymerase Iii Transcription 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Termination 1.0e+00
## Rnd1 Gtpase Cycle 1.0e+00
## Rnd2 Gtpase Cycle 1.0e+00
## Rnd3 Gtpase Cycle 1.0e+00
## Robo Receptors Bind Akap5 1.0e+00
## Role Of Abl In Robo Slit Signaling 1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization 1.0e+00
## Role Of Phospholipids In Phagocytosis 1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling 1.0e+00
## Rora Activates Gene Expression 1.0e+00
## Rrna Modification In The Mitochondrion 1.0e+00
## Rrna Modification In The Nucleus And Cytosol 1.0e+00
## Rrna Processing 1.0e+00
## Rrna Processing In The Mitochondrion 1.0e+00
## Rsk Activation 1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription 1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription 1.0e+00
## Runx3 Regulates Cdkn1a Transcription 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration 1.0e+00
## Runx3 Regulates Notch Signaling 1.0e+00
## Runx3 Regulates P14 Arf 1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription 1.0e+00
## S Phase 1.0e+00
## Sars Cov 1 Genome Replication And Transcription 1.0e+00
## Sars Cov 1 Infection 1.0e+00
## Sars Cov 2 Infection 1.0e+00
## Sars Cov Infections 1.0e+00
## Scavenging By Class F Receptors 1.0e+00
## Scavenging Of Heme From Plasma 1.0e+00
## Scf Skp2 Mediated Degradation Of P27 P21 1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 1.0e+00
## Selective Autophagy 1.0e+00
## Selenoamino Acid Metabolism 1.0e+00
## Sema3a Pak Dependent Axon Repulsion 1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 1.0e+00
## Sema4d In Semaphorin Signaling 1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse 1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 1.0e+00
## Semaphorin Interactions 1.0e+00
## Senescence Associated Secretory Phenotype Sasp 1.0e+00
## Sensory Perception 1.0e+00
## Sensory Processing Of Sound 1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 1.0e+00
## Separation Of Sister Chromatids 1.0e+00
## Serine Biosynthesis 1.0e+00
## Serotonin And Melatonin Biosynthesis 1.0e+00
## Serotonin Neurotransmitter Release Cycle 1.0e+00
## Serotonin Receptors 1.0e+00
## Shc Mediated Cascade Fgfr1 1.0e+00
## Shc Mediated Cascade Fgfr3 1.0e+00
## Shc Mediated Cascade Fgfr4 1.0e+00
## Shc Related Events Triggered By Igf1r 1.0e+00
## Shc1 Events In Erbb4 Signaling 1.0e+00
## Signal Attenuation 1.0e+00
## Signaling By Activin 1.0e+00
## Signaling By Bmp 1.0e+00
## Signaling By Braf And Raf Fusions 1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants 1.0e+00
## Signaling By Erythropoietin 1.0e+00
## Signaling By Fgfr 1.0e+00
## Signaling By Fgfr In Disease 1.0e+00
## Signaling By Fgfr1 1.0e+00
## Signaling By Fgfr2 1.0e+00
## Signaling By Fgfr2 Iiia Tm 1.0e+00
## Signaling By Fgfr2 In Disease 1.0e+00
## Signaling By Fgfr3 1.0e+00
## Signaling By Fgfr3 Fusions In Cancer 1.0e+00
## Signaling By Fgfr4 1.0e+00
## Signaling By Fgfr4 In Disease 1.0e+00
## Signaling By Flt3 Fusion Proteins 1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants 1.0e+00
## Signaling By Gpcr 1.0e+00
## Signaling By Hedgehog 1.0e+00
## Signaling By Insulin Receptor 1.0e+00
## Signaling By Lrp5 Mutants 1.0e+00
## Signaling By Mapk Mutants 1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 1.0e+00
## Signaling By Met 1.0e+00
## Signaling By Mras Complex Mutants 1.0e+00
## Signaling By Mst1 1.0e+00
## Signaling By Nodal 1.0e+00
## Signaling By Notch 1.0e+00
## Signaling By Notch1 1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 Pest Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 1.0e+00
## Signaling By Notch4 1.0e+00
## Signaling By Ntrks 1.0e+00
## Signaling By Nuclear Receptors 1.0e+00
## Signaling By Receptor Tyrosine Kinases 1.0e+00
## Signaling By Retinoic Acid 1.0e+00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 1.0e+00
## Signaling By Rnf43 Mutants 1.0e+00
## Signaling By Robo Receptors 1.0e+00
## Signaling By Tgf Beta Receptor Complex 1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer 1.0e+00
## Signaling By Tgfb Family Members 1.0e+00
## Signaling By The B Cell Receptor Bcr 1.0e+00
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 1.0e+00
## Signaling By Vegf 1.0e+00
## Signaling By Wnt 1.0e+00
## Signaling By Wnt In Cancer 1.0e+00
## Signalling To P38 Via Rit And Rin 1.0e+00
## Sirt1 Negatively Regulates Rrna Expression 1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 1.0e+00
## Slc Mediated Transmembrane Transport 1.0e+00
## Slc Transporter Disorders 1.0e+00
## Small Interfering Rna Sirna Biogenesis 1.0e+00
## Smooth Muscle Contraction 1.0e+00
## Snrnp Assembly 1.0e+00
## Sodium Calcium Exchangers 1.0e+00
## Sodium Coupled Phosphate Cotransporters 1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 1.0e+00
## Sodium Proton Exchangers 1.0e+00
## Sos Mediated Signalling 1.0e+00
## Sperm Motility And Taxes 1.0e+00
## Sphingolipid De Novo Biosynthesis 1.0e+00
## Sphingolipid Metabolism 1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane 1.0e+00
## Stabilization Of P53 1.0e+00
## Stat5 Activation 1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants 1.0e+00
## Stimuli Sensing Channels 1.0e+00
## Striated Muscle Contraction 1.0e+00
## Sulfide Oxidation To Sulfate 1.0e+00
## Sulfur Amino Acid Metabolism 1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1 1.0e+00
## Sumo Is Proteolytically Processed 1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 1.0e+00
## Sumoylation 1.0e+00
## Sumoylation Of Chromatin Organization Proteins 1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins 1.0e+00
## Sumoylation Of Dna Replication Proteins 1.0e+00
## Sumoylation Of Intracellular Receptors 1.0e+00
## Sumoylation Of Rna Binding Proteins 1.0e+00
## Sumoylation Of Sumoylation Proteins 1.0e+00
## Sumoylation Of Transcription Cofactors 1.0e+00
## Sumoylation Of Transcription Factors 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins 1.0e+00
## Suppression Of Apoptosis 1.0e+00
## Suppression Of Phagosomal Maturation 1.0e+00
## Surfactant Metabolism 1.0e+00
## Switching Of Origins To A Post Replicative State 1.0e+00
## Synaptic Adhesion Like Molecules 1.0e+00
## Syndecan Interactions 1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids 1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 1.0e+00
## Synthesis Of Bile Acids And Bile Salts 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 1.0e+00
## Synthesis Of Diphthamide Eef2 1.0e+00
## Synthesis Of Dolichyl Phosphate 1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 1.0e+00
## Synthesis Of Gdp Mannose 1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi 1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol 1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol 1.0e+00
## Synthesis Of Ketone Bodies 1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex 1.0e+00
## Synthesis Of Lipoxins Lx 1.0e+00
## Synthesis Of Pa 1.0e+00
## Synthesis Of Pc 1.0e+00
## Synthesis Of Pe 1.0e+00
## Synthesis Of Pg 1.0e+00
## Synthesis Of Pi 1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Er Membrane 1.0e+00
## Synthesis Of Pips At The Golgi Membrane 1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Plasma Membrane 1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol 1.0e+00
## Synthesis Of Substrates In N Glycan Biosythesis 1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine 1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas 1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe 1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin 1.0e+00
## Tachykinin Receptors Bind Tachykinins 1.0e+00
## Tbc Rabgaps 1.0e+00
## Tcf Dependent Signaling In Response To Wnt 1.0e+00
## Tcr Signaling 1.0e+00
## Telomere C Strand Lagging Strand Synthesis 1.0e+00
## Telomere C Strand Synthesis Initiation 1.0e+00
## Telomere Maintenance 1.0e+00
## Terminal Pathway Of Complement 1.0e+00
## Termination Of Translesion Dna Synthesis 1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 1.0e+00
## Tgf Beta Receptor Signaling Activates Smads 1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 1.0e+00
## The Activation Of Arylsulfatases 1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport 1.0e+00
## The Fatty Acid Cycling Model 1.0e+00
## The Phototransduction Cascade 1.0e+00
## The Retinoid Cycle In Cones Daylight Vision 1.0e+00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 1.0e+00
## Thromboxane Signalling Through Tp Receptor 1.0e+00
## Thyroxine Biosynthesis 1.0e+00
## Tie2 Signaling 1.0e+00
## Tight Junction Interactions 1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd 1.0e+00
## Tp53 Regulates Metabolic Genes 1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 1.0e+00
## Tp53 Regulates Transcription Of Cell Cycle Genes 1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands 1.0e+00
## Tp53 Regulates Transcription Of Dna Repair Genes 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Trafficking Of Ampa Receptors 1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors 1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium 1.0e+00
## Trail Signaling 1.0e+00
## Trans Golgi Network Vesicle Budding 1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner 1.0e+00
## Transcription Of The Hiv Genome 1.0e+00
## Transcriptional Activation Of Mitochondrial Biogenesis 1.0e+00
## Transcriptional Regulation By E2f6 1.0e+00
## Transcriptional Regulation By Mecp2 1.0e+00
## Transcriptional Regulation By Runx1 1.0e+00
## Transcriptional Regulation By Runx2 1.0e+00
## Transcriptional Regulation By Runx3 1.0e+00
## Transcriptional Regulation By Small Rnas 1.0e+00
## Transcriptional Regulation By Tp53 1.0e+00
## Transcriptional Regulation By Ventx 1.0e+00
## Transcriptional Regulation Of Granulopoiesis 1.0e+00
## Transcriptional Regulation Of Testis Differentiation 1.0e+00
## Transcriptional Regulation Of White Adipocyte Differentiation 1.0e+00
## Transferrin Endocytosis And Recycling 1.0e+00
## Translation 1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 1.0e+00
## Translation Of Sars Cov 1 Structural Proteins 1.0e+00
## Translation Of Sars Cov 2 Structural Proteins 1.0e+00
## Translesion Synthesis By Polh 1.0e+00
## Translesion Synthesis By Polk 1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1.0e+00
## Transmission Across Chemical Synapses 1.0e+00
## Transport And Synthesis Of Paps 1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 1.0e+00
## Transport Of Connexons To The Plasma Membrane 1.0e+00
## Transport Of Fatty Acids 1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts 1.0e+00
## Transport Of Mature Transcript To Cytoplasm 1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 1.0e+00
## Transport Of Nucleotide Sugars 1.0e+00
## Transport Of Organic Anions 1.0e+00
## Transport Of Small Molecules 1.0e+00
## Transport Of The Slbp Dependant Mature Mrna 1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules 1.0e+00
## Transport To The Golgi And Subsequent Modification 1.0e+00
## Triglyceride Biosynthesis 1.0e+00
## Triglyceride Metabolism 1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 1.0e+00
## Trna Aminoacylation 1.0e+00
## Trna Modification In The Mitochondrion 1.0e+00
## Trna Modification In The Nucleus And Cytosol 1.0e+00
## Trna Processing 1.0e+00
## Trna Processing In The Mitochondrion 1.0e+00
## Trna Processing In The Nucleus 1.0e+00
## Trp Channels 1.0e+00
## Tryptophan Catabolism 1.0e+00
## Type I Hemidesmosome Assembly 1.0e+00
## Tyrosine Catabolism 1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins 1.0e+00
## Ub Specific Processing Proteases 1.0e+00
## Ubiquinol Biosynthesis 1.0e+00
## Uch Proteinases 1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 1.0e+00
## Unfolded Protein Response Upr 1.0e+00
## Unwinding Of Dna 1.0e+00
## Uptake And Actions Of Bacterial Toxins 1.0e+00
## Uptake And Function Of Anthrax Toxins 1.0e+00
## Uptake And Function Of Diphtheria Toxin 1.0e+00
## Urea Cycle 1.0e+00
## Vasopressin Like Receptors 1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 1.0e+00
## Vegf Ligand Receptor Interactions 1.0e+00
## Vesicle Mediated Transport 1.0e+00
## Viral Messenger Rna Synthesis 1.0e+00
## Visual Phototransduction 1.0e+00
## Vitamin B1 Thiamin Metabolism 1.0e+00
## Vitamin B2 Riboflavin Metabolism 1.0e+00
## Vitamin B5 Pantothenate Metabolism 1.0e+00
## Vitamin C Ascorbate Metabolism 1.0e+00
## Vitamin D Calciferol Metabolism 1.0e+00
## Vitamins 1.0e+00
## Vldl Assembly 1.0e+00
## Vldl Clearance 1.0e+00
## Voltage Gated Potassium Channels 1.0e+00
## Vxpx Cargo Targeting To Cilium 1.0e+00
## Wax And Plasmalogen Biosynthesis 1.0e+00
## Wnt Mediated Activation Of Dvl 1.0e+00
## Xenobiotics 1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family 1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family 1.0e+00
## Zinc Transporters 1.0e+00
## fdr
## Interleukin 10 Signaling 4.7e-05
## Chemokine Receptors Bind Chemokines 4.3e-02
## Interleukin 4 And Interleukin 13 Signaling 1.0e+00
## Irak4 Deficiency Tlr2 4 1.0e+00
## Fibronectin Matrix Formation 1.0e+00
## Diseases Of Immune System 1.0e+00
## Regulation Of Tlr By Endogenous Ligand 1.0e+00
## Interleukin 18 Signaling 1.0e+00
## Cd163 Mediating An Anti Inflammatory Response 1.0e+00
## Interleukin 1 Processing 1.0e+00
## Purinergic Signaling In Leishmaniasis Infection 1.0e+00
## P75ntr Signals Via Nf Kb 1.0e+00
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 1.0e+00
## Interleukin 6 Signaling 1.0e+00
## Tnfs Bind Their Physiological Receptors 1.0e+00
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 1.0e+00
## Nod1 2 Signaling Pathway 1.0e+00
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 1.0e+00
## Cd28 Dependent Vav1 Pathway 1.0e+00
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 1.0e+00
## Killing Mechanisms 1.0e+00
## P75ntr Recruits Signalling Complexes 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 1.0e+00
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 1.0e+00
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 1.0e+00
## Pyroptosis 1.0e+00
## Activation Of C3 And C5 1.0e+00
## Runx2 Regulates Genes Involved In Cell Migration 1.0e+00
## Ctla4 Inhibitory Signaling 1.0e+00
## Inflammasomes 1.0e+00
## Egfr Interacts With Phospholipase C Gamma 1.0e+00
## Egfr Transactivation By Gastrin 1.0e+00
## Interleukin 9 Signaling 1.0e+00
## Trif Mediated Programmed Cell Death 1.0e+00
## Activated Tak1 Mediates P38 Mapk Activation 1.0e+00
## Caspase Activation Via Death Receptors In The Presence Of Ligand 1.0e+00
## The Nlrp3 Inflammasome 1.0e+00
## Toll Like Receptor Tlr1 Tlr2 Cascade 1.0e+00
## Ovarian Tumor Domain Proteases 1.0e+00
## Activation Of The Ap 1 Family Of Transcription Factors 1.0e+00
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 1.0e+00
## Gab1 Signalosome 1.0e+00
## Interleukin 21 Signaling 1.0e+00
## Mapk3 Erk1 Activation 1.0e+00
## Rip Mediated Nfkb Activation Via Zbp1 1.0e+00
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 1.0e+00
## Activation Of Matrix Metalloproteinases 1.0e+00
## Apoptotic Cleavage Of Cell Adhesion Proteins 1.0e+00
## Interleukin 27 Signaling 1.0e+00
## Receptor Mediated Mitophagy 1.0e+00
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 1.0e+00
## Toll Like Receptor 9 Tlr9 Cascade 1.0e+00
## Gp1b Ix V Activation Signalling 1.0e+00
## Interleukin 35 Signalling 1.0e+00
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 1.0e+00
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 1.0e+00
## Signaling By Kit In Disease 1.0e+00
## Alternative Complement Activation 1.0e+00
## Fasl Cd95l Signaling 1.0e+00
## G2 M Dna Replication Checkpoint 1.0e+00
## Galactose Catabolism 1.0e+00
## Hdl Clearance 1.0e+00
## Mecp2 Regulates Transcription Factors 1.0e+00
## Nostrin Mediated Enos Trafficking 1.0e+00
## Runx1 Regulates Expression Of Components Of Tight Junctions 1.0e+00
## Runx2 Regulates Chondrocyte Maturation 1.0e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 1.0e+00
## Apoptosis Induced Dna Fragmentation 1.0e+00
## Erbb2 Activates Ptk6 Signaling 1.0e+00
## Nf Kb Is Activated And Signals Survival 1.0e+00
## Tnfr1 Induced Proapoptotic Signaling 1.0e+00
## Trafficking And Processing Of Endosomal Tlr 1.0e+00
## Zbp1 Dai Mediated Induction Of Type I Ifns 1.0e+00
## Dcc Mediated Attractive Signaling 1.0e+00
## Early Phase Of Hiv Life Cycle 1.0e+00
## Interleukin 15 Signaling 1.0e+00
## Shc1 Events In Egfr Signaling 1.0e+00
## Toll Like Receptor Cascades 1.0e+00
## Activated Ntrk3 Signals Through Pi3k 1.0e+00
## Activation Of Caspases Through Apoptosome Mediated Cleavage 1.0e+00
## Biosynthesis Of Epa Derived Spms 1.0e+00
## Clec7a Inflammasome Pathway 1.0e+00
## Nade Modulates Death Signalling 1.0e+00
## Phosphorylation Of Emi1 1.0e+00
## Protein Repair 1.0e+00
## Ptk6 Promotes Hif1a Stabilization 1.0e+00
## Ptk6 Regulates Cell Cycle 1.0e+00
## Scavenging By Class B Receptors 1.0e+00
## Sensing Of Dna Double Strand Breaks 1.0e+00
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 1.0e+00
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 1.0e+00
## Tnfr1 Mediated Ceramide Production 1.0e+00
## Ikk Complex Recruitment Mediated By Rip1 1.0e+00
## Constitutive Signaling By Egfrviii 1.0e+00
## Erbb2 Regulates Cell Motility 1.0e+00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 1.0e+00
## P130cas Linkage To Mapk Signaling For Integrins 1.0e+00
## Heme Signaling 1.0e+00
## Regulated Necrosis 1.0e+00
## Activated Ntrk2 Signals Through Fyn 1.0e+00
## Activation Of Nima Kinases Nek9 Nek6 Nek7 1.0e+00
## Creb Phosphorylation 1.0e+00
## Defective Factor Viii Causes Hemophilia A 1.0e+00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 1.0e+00
## Ikba Variant Leads To Eda Id 1.0e+00
## Interleukin 6 Family Signaling 1.0e+00
## Modulation By Mtb Of Host Immune System 1.0e+00
## Myd88 Independent Tlr4 Cascade 1.0e+00
## Traf6 Mediated Nf Kb Activation 1.0e+00
## Cd28 Co Stimulation 1.0e+00
## Grb2 Events In Erbb2 Signaling 1.0e+00
## Pi3k Events In Erbb2 Signaling 1.0e+00
## Signal Regulatory Protein Family Interactions 1.0e+00
## Signaling By Erbb2 Ecd Mutants 1.0e+00
## Sumoylation Of Dna Methylation Proteins 1.0e+00
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 1.0e+00
## Beta Defensins 1.0e+00
## Extra Nuclear Estrogen Signaling 1.0e+00
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 1.0e+00
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 1.0e+00
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 1.0e+00
## Hdl Assembly 1.0e+00
## Inactivation Of Cdc42 And Rac1 1.0e+00
## Lectin Pathway Of Complement Activation 1.0e+00
## Mecp2 Regulates Transcription Of Neuronal Ligands 1.0e+00
## Netrin Mediated Repulsion Signals 1.0e+00
## Runx3 Regulates Wnt Signaling 1.0e+00
## Smac Xiap Regulated Apoptotic Response 1.0e+00
## Interleukin 2 Family Signaling 1.0e+00
## Signaling By Cytosolic Fgfr1 Fusion Mutants 1.0e+00
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 1.0e+00
## Dap12 Interactions 1.0e+00
## Downregulation Of Erbb4 Signaling 1.0e+00
## E2f Enabled Inhibition Of Pre Replication Complex Formation 1.0e+00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 1.0e+00
## Interleukin 23 Signaling 1.0e+00
## Mapk1 Erk2 Activation 1.0e+00
## Oas Antiviral Response 1.0e+00
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 1.0e+00
## Interleukin 17 Signaling 1.0e+00
## Other Semaphorin Interactions 1.0e+00
## Pd 1 Signaling 1.0e+00
## Scavenging By Class A Receptors 1.0e+00
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 1.0e+00
## Akt Phosphorylates Targets In The Nucleus 1.0e+00
## Camk Iv Mediated Phosphorylation Of Creb 1.0e+00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 1.0e+00
## Chylomicron Assembly 1.0e+00
## Chylomicron Remodeling 1.0e+00
## Dap12 Signaling 1.0e+00
## Downstream Signal Transduction 1.0e+00
## Hdl Remodeling 1.0e+00
## Mastl Facilitates Mitotic Progression 1.0e+00
## P75ntr Regulates Axonogenesis 1.0e+00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 1.0e+00
## Regulation Of Foxo Transcriptional Activity By Acetylation 1.0e+00
## Interleukin 1 Family Signaling 1.0e+00
## Signaling By Pdgfr In Disease 1.0e+00
## Costimulation By The Cd28 Family 1.0e+00
## Peptide Ligand Binding Receptors 1.0e+00
## Tnfr1 Induced Nfkappab Signaling Pathway 1.0e+00
## Interleukin 37 Signaling 1.0e+00
## Signal Transduction By L1 1.0e+00
## Condensation Of Prometaphase Chromosomes 1.0e+00
## Dermatan Sulfate Biosynthesis 1.0e+00
## Dscam Interactions 1.0e+00
## Egfr Downregulation 1.0e+00
## Endosomal Vacuolar Pathway 1.0e+00
## Enos Activation 1.0e+00
## Mapk Targets Nuclear Events Mediated By Map Kinases 1.0e+00
## Pexophagy 1.0e+00
## Regulation By C Flip 1.0e+00
## Rho Gtpases Activate Ktn1 1.0e+00
## Signaling By Leptin 1.0e+00
## Sumoylation Of Immune Response Proteins 1.0e+00
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 1.0e+00
## Cd28 Dependent Pi3k Akt Signaling 1.0e+00
## Shc1 Events In Erbb2 Signaling 1.0e+00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 1.0e+00
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 1.0e+00
## Interleukin 2 Signaling 1.0e+00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 1.0e+00
## Notch2 Intracellular Domain Regulates Transcription 1.0e+00
## Pecam1 Interactions 1.0e+00
## Tandem Pore Domain Potassium Channels 1.0e+00
## Ticam1 Dependent Activation Of Irf3 Irf7 1.0e+00
## Vldlr Internalisation And Degradation 1.0e+00
## Raf Independent Mapk1 3 Activation 1.0e+00
## Defensins 1.0e+00
## Signaling By Scf Kit 1.0e+00
## Advanced Glycosylation Endproduct Receptor Signaling 1.0e+00
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 1.0e+00
## Cytochrome C Mediated Apoptotic Response 1.0e+00
## Dissolution Of Fibrin Clot 1.0e+00
## Growth Hormone Receptor Signaling 1.0e+00
## Irf3 Mediated Induction Of Type I Ifn 1.0e+00
## Negative Regulators Of Ddx58 Ifih1 Signaling 1.0e+00
## P38mapk Events 1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 1.0e+00
## Purine Salvage 1.0e+00
## Runx2 Regulates Osteoblast Differentiation 1.0e+00
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 1.0e+00
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 1.0e+00
## Regulation Of Tnfr1 Signaling 1.0e+00
## Golgi Cisternae Pericentriolar Stack Reorganization 1.0e+00
## Inactivation Of Csf3 G Csf Signaling 1.0e+00
## Irak1 Recruits Ikk Complex 1.0e+00
## Notch3 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Regulation Of Ifng Signaling 1.0e+00
## Repression Of Wnt Target Genes 1.0e+00
## Signaling By Egfr In Cancer 1.0e+00
## Traf3 Dependent Irf Activation Pathway 1.0e+00
## Interleukin 20 Family Signaling 1.0e+00
## Signaling By Erbb2 In Cancer 1.0e+00
## Depolymerisation Of The Nuclear Lamina 1.0e+00
## Heme Degradation 1.0e+00
## Interleukin 12 Family Signaling 1.0e+00
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 1.0e+00
## Platelet Adhesion To Exposed Collagen 1.0e+00
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 1.0e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 1.0e+00
## Wnt5a Dependent Internalization Of Fzd4 1.0e+00
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 1.0e+00
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 1.0e+00
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 1.0e+00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 1.0e+00
## Foxo Mediated Transcription Of Cell Death Genes 1.0e+00
## G0 And Early G1 1.0e+00
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 1.0e+00
## Integrin Signaling 1.0e+00
## Interleukin Receptor Shc Signaling 1.0e+00
## Nrif Signals Cell Death From The Nucleus 1.0e+00
## Regulation Of Kit Signaling 1.0e+00
## Spry Regulation Of Fgf Signaling 1.0e+00
## Sting Mediated Induction Of Host Immune Responses 1.0e+00
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 1.0e+00
## Vegfr2 Mediated Vascular Permeability 1.0e+00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 1.0e+00
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 1.0e+00
## Downregulation Of Erbb2 Signaling 1.0e+00
## Foxo Mediated Transcription Of Cell Cycle Genes 1.0e+00
## Mitophagy 1.0e+00
## Regulation Of Runx1 Expression And Activity 1.0e+00
## Ripk1 Mediated Regulated Necrosis 1.0e+00
## Signaling By Egfr 1.0e+00
## Signaling By Ntrk3 Trkc 1.0e+00
## Abc Transporters In Lipid Homeostasis 1.0e+00
## Crosslinking Of Collagen Fibrils 1.0e+00
## Diseases Associated With Glycosylation Precursor Biosynthesis 1.0e+00
## Eph Ephrin Mediated Repulsion Of Cells 1.0e+00
## Mecp2 Regulates Neuronal Receptors And Channels 1.0e+00
## Signaling By Csf3 G Csf 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 1.0e+00
## Biosynthesis Of Specialized Proresolving Mediators Spms 1.0e+00
## Ephrin Signaling 1.0e+00
## Fgfr1 Mutant Receptor Activation 1.0e+00
## Initiation Of Nuclear Envelope Ne Reformation 1.0e+00
## Interleukin 1 Signaling 1.0e+00
## Ldl Clearance 1.0e+00
## Nicotinamide Salvaging 1.0e+00
## Nicotinate Metabolism 1.0e+00
## Phase 4 Resting Membrane Potential 1.0e+00
## Plasma Lipoprotein Assembly 1.0e+00
## Regulation Of Tp53 Activity Through Methylation 1.0e+00
## Runx2 Regulates Bone Development 1.0e+00
## Signaling By Interleukins 1.0e+00
## Tnfr2 Non Canonical Nf Kb Pathway 1.0e+00
## Transcription Of E2f Targets Under Negative Control By Dream Complex 1.0e+00
## Vegfr2 Mediated Cell Proliferation 1.0e+00
## Apoptotic Factor Mediated Response 1.0e+00
## Cargo Concentration In The Er 1.0e+00
## Collagen Degradation 1.0e+00
## G Beta Gamma Signalling Through Cdc42 1.0e+00
## Listeria Monocytogenes Entry Into Host Cells 1.0e+00
## Perk Regulates Gene Expression 1.0e+00
## Phosphorylation Of The Apc C 1.0e+00
## Pka Mediated Phosphorylation Of Creb 1.0e+00
## Plasma Lipoprotein Clearance 1.0e+00
## Signaling By Hippo 1.0e+00
## Signaling By Ptk6 1.0e+00
## Signalling To Ras 1.0e+00
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 1.0e+00
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 1.0e+00
## Tnf Signaling 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 1.0e+00
## Branched Chain Amino Acid Catabolism 1.0e+00
## Chaperone Mediated Autophagy 1.0e+00
## Complement Cascade 1.0e+00
## Constitutive Signaling By Aberrant Pi3k In Cancer 1.0e+00
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 1.0e+00
## E2f Mediated Regulation Of Dna Replication 1.0e+00
## Gpvi Mediated Activation Cascade 1.0e+00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 1.0e+00
## P75 Ntr Receptor Mediated Signalling 1.0e+00
## Pink1 Prkn Mediated Mitophagy 1.0e+00
## Rho Gtpases Activate Paks 1.0e+00
## Incretin Synthesis Secretion And Inactivation 1.0e+00
## Interleukin 12 Signaling 1.0e+00
## Intrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Long Term Potentiation 1.0e+00
## Nucleotide Salvage 1.0e+00
## Regulation Of Tp53 Expression And Degradation 1.0e+00
## Rhoh Gtpase Cycle 1.0e+00
## Rhoq Gtpase Cycle 1.0e+00
## Signaling By Notch3 1.0e+00
## Telomere Extension By Telomerase 1.0e+00
## Termination Of O Glycan Biosynthesis 1.0e+00
## Adp Signalling Through P2y Purinoceptor 1 1.0e+00
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 1.0e+00
## Apc C Cdc20 Mediated Degradation Of Cyclin B 1.0e+00
## Apoptotic Cleavage Of Cellular Proteins 1.0e+00
## Apoptotic Execution Phase 1.0e+00
## Assembly Of Collagen Fibrils And Other Multimeric Structures 1.0e+00
## Basigin Interactions 1.0e+00
## Constitutive Signaling By Akt1 E17k In Cancer 1.0e+00
## Cyclin A B1 B2 Associated Events During G2 M Transition 1.0e+00
## Cytosolic Sensors Of Pathogen Associated Dna 1.0e+00
## Death Receptor Signalling 1.0e+00
## Dectin 2 Family 1.0e+00
## Negative Regulation Of The Pi3k Akt Network 1.0e+00
## Netrin 1 Signaling 1.0e+00
## Ngf Stimulated Transcription 1.0e+00
## Notch3 Intracellular Domain Regulates Transcription 1.0e+00
## Other Interleukin Signaling 1.0e+00
## Platelet Aggregation Plug Formation 1.0e+00
## Regulation Of Ifna Signaling 1.0e+00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 1.0e+00
## Rho Gtpases Activate Nadph Oxidases 1.0e+00
## Signaling By Erbb2 1.0e+00
## Signaling By Fgfr1 In Disease 1.0e+00
## Signaling By Ntrk2 Trkb 1.0e+00
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 1.0e+00
## Triglyceride Catabolism 1.0e+00
## Wnt Ligand Biogenesis And Trafficking 1.0e+00
## Antigen Processing Cross Presentation 1.0e+00
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 1.0e+00
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 1.0e+00
## Epha Mediated Growth Cone Collapse 1.0e+00
## Ephb Mediated Forward Signaling 1.0e+00
## G1 S Specific Transcription 1.0e+00
## Infection With Mycobacterium Tuberculosis 1.0e+00
## Intrinsic Pathway For Apoptosis 1.0e+00
## Map2k And Mapk Activation 1.0e+00
## Metabolism Of Porphyrins 1.0e+00
## Myogenesis 1.0e+00
## Negative Regulation Of Fgfr3 Signaling 1.0e+00
## Rhof Gtpase Cycle 1.0e+00
## Rhoj Gtpase Cycle 1.0e+00
## Tp53 Regulates Transcription Of Cell Death Genes 1.0e+00
## Traf6 Mediated Irf7 Activation 1.0e+00
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 1.0e+00
## Activation Of Bh3 Only Proteins 1.0e+00
## Antimicrobial Peptides 1.0e+00
## Ca Dependent Events 1.0e+00
## Cyclin D Associated Events In G1 1.0e+00
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 1.0e+00
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 1.0e+00
## Foxo Mediated Transcription 1.0e+00
## G Protein Beta Gamma Signalling 1.0e+00
## Hdr Through Single Strand Annealing Ssa 1.0e+00
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 1.0e+00
## Interleukin 7 Signaling 1.0e+00
## Late Endosomal Microautophagy 1.0e+00
## Met Activates Ptk2 Signaling 1.0e+00
## Metalloprotease Dubs 1.0e+00
## Negative Regulation Of Fgfr1 Signaling 1.0e+00
## Negative Regulation Of Fgfr2 Signaling 1.0e+00
## Negative Regulation Of Fgfr4 Signaling 1.0e+00
## Nuclear Pore Complex Npc Disassembly 1.0e+00
## Nuclear Signaling By Erbb4 1.0e+00
## Oncogene Induced Senescence 1.0e+00
## Pi3k Akt Signaling In Cancer 1.0e+00
## Plasma Lipoprotein Remodeling 1.0e+00
## Raf Activation 1.0e+00
## Regulation Of Mecp2 Expression And Activity 1.0e+00
## Resolution Of D Loop Structures 1.0e+00
## Rho Gtpases Activate Iqgaps 1.0e+00
## Rho Gtpases Activate Wasps And Waves 1.0e+00
## Rhod Gtpase Cycle 1.0e+00
## Rhog Gtpase Cycle 1.0e+00
## Rhou Gtpase Cycle 1.0e+00
## Rhov Gtpase Cycle 1.0e+00
## Ros And Rns Production In Phagocytes 1.0e+00
## Sialic Acid Metabolism 1.0e+00
## Signal Amplification 1.0e+00
## Signaling By Erbb4 1.0e+00
## Signaling By Moderate Kinase Activity Braf Mutants 1.0e+00
## Signaling By Notch2 1.0e+00
## Signaling By Pdgf 1.0e+00
## Signalling To Erks 1.0e+00
## Thrombin Signalling Through Proteinase Activated Receptors Pars 1.0e+00
## Transcriptional Regulation Of Pluripotent Stem Cells 1.0e+00
## 2 Ltr Circle Formation 1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 1.0e+00
## Abacavir Metabolism 1.0e+00
## Abacavir Transmembrane Transport 1.0e+00
## Abacavir Transport And Metabolism 1.0e+00
## Abc Family Proteins Mediated Transport 1.0e+00
## Abc Transporter Disorders 1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 1.0e+00
## Acetylcholine Binding And Downstream Events 1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 1.0e+00
## Acetylcholine Neurotransmitter Release Cycle 1.0e+00
## Acetylcholine Regulates Insulin Secretion 1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding 1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus 1.0e+00
## Activated Ntrk2 Signals Through Cdk5 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3 1.0e+00
## Activated Ntrk2 Signals Through Pi3k 1.0e+00
## Activated Ntrk2 Signals Through Ras 1.0e+00
## Activated Ntrk3 Signals Through Ras 1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 1.0e+00
## Activation Of Ampk Downstream Of Nmdars 1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 1.0e+00
## Activation Of Atr In Response To Replication Stress 1.0e+00
## Activation Of Bad And Translocation To Mitochondria 1.0e+00
## Activation Of Gene Expression By Srebf Srebp 1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding 1.0e+00
## Activation Of Nmda Receptors And Postsynaptic Events 1.0e+00
## Activation Of Noxa And Translocation To Mitochondria 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 1.0e+00
## Activation Of Puma And Translocation To Mitochondria 1.0e+00
## Activation Of Rac1 1.0e+00
## Activation Of Rac1 Downstream Of Nmdars 1.0e+00
## Activation Of Ras In B Cells 1.0e+00
## Activation Of Smo 1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 1.0e+00
## Activation Of The Phototransduction Cascade 1.0e+00
## Activation Of The Pre Replicative Complex 1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 1.0e+00
## Activation Of Trka Receptors 1.0e+00
## Acyl Chain Remodeling Of Cl 1.0e+00
## Acyl Chain Remodeling Of Dag And Tag 1.0e+00
## Acyl Chain Remodelling Of Pc 1.0e+00
## Acyl Chain Remodelling Of Pe 1.0e+00
## Acyl Chain Remodelling Of Pg 1.0e+00
## Acyl Chain Remodelling Of Pi 1.0e+00
## Acyl Chain Remodelling Of Ps 1.0e+00
## Adaptive Immune System 1.0e+00
## Adenylate Cyclase Activating Pathway 1.0e+00
## Adenylate Cyclase Inhibitory Pathway 1.0e+00
## Adherens Junctions Interactions 1.0e+00
## Adora2b Mediated Anti Inflammatory Cytokines Production 1.0e+00
## Adp Signalling Through P2y Purinoceptor 12 1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion 1.0e+00
## Adrenoceptors 1.0e+00
## Aflatoxin Activation And Detoxification 1.0e+00
## Aggrephagy 1.0e+00
## Akt Phosphorylates Targets In The Cytosol 1.0e+00
## Alpha Defensins 1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 1.0e+00
## Alpha Oxidation Of Phytanate 1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway 1.0e+00
## Amine Ligand Binding Receptors 1.0e+00
## Amino Acid Conjugation 1.0e+00
## Amino Acid Transport Across The Plasma Membrane 1.0e+00
## Amino Acids Regulate Mtorc1 1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity 1.0e+00
## Amyloid Fiber Formation 1.0e+00
## Anchoring Fibril Formation 1.0e+00
## Anchoring Of The Basal Body To The Plasma Membrane 1.0e+00
## Androgen Biosynthesis 1.0e+00
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 1.0e+00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation 1.0e+00
## Antiviral Mechanism By Ifn Stimulated Genes 1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 1.0e+00
## Apc C Mediated Degradation Of Cell Cycle Proteins 1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a 1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection 1.0e+00
## Apoptosis 1.0e+00
## Aquaporin Mediated Transport 1.0e+00
## Arachidonate Production From Dag 1.0e+00
## Arachidonic Acid Metabolism 1.0e+00
## Arms Mediated Activation 1.0e+00
## Aryl Hydrocarbon Receptor Signalling 1.0e+00
## Asparagine N Linked Glycosylation 1.0e+00
## Aspartate And Asparagine Metabolism 1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors 1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes 1.0e+00
## Assembly Of The Hiv Virion 1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication 1.0e+00
## Assembly Of The Pre Replicative Complex 1.0e+00
## Association Of Tric Cct With Target Proteins During Biosynthesis 1.0e+00
## Asymmetric Localization Of Pcp Proteins 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones 1.0e+00
## Attachment And Entry 1.0e+00
## Attachment Of Gpi Anchor To Upar 1.0e+00
## Attenuation Phase 1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 1.0e+00
## Aurka Activation By Tpx2 1.0e+00
## Autophagy 1.0e+00
## B Wich Complex Positively Regulates Rrna Expression 1.0e+00
## Base Excision Repair 1.0e+00
## Base Excision Repair Ap Site Formation 1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium 1.0e+00
## Beta Catenin Independent Wnt Signaling 1.0e+00
## Beta Catenin Phosphorylation Cascade 1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 1.0e+00
## Beta Oxidation Of Pristanoyl Coa 1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids 1.0e+00
## Bicarbonate Transporters 1.0e+00
## Bile Acid And Bile Salt Metabolism 1.0e+00
## Binding And Uptake Of Ligands By Scavenger Receptors 1.0e+00
## Biological Oxidations 1.0e+00
## Biosynthesis Of Maresin Like Spms 1.0e+00
## Biosynthesis Of Maresins 1.0e+00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1.0e+00
## Biotin Transport And Metabolism 1.0e+00
## Blood Group Systems Biosynthesis 1.0e+00
## Budding And Maturation Of Hiv Virion 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 1.0e+00
## Butyrophilin Btn Family Interactions 1.0e+00
## C Type Lectin Receptors Clrs 1.0e+00
## Ca2 Activated K Channels 1.0e+00
## Ca2 Pathway 1.0e+00
## Calcineurin Activates Nfat 1.0e+00
## Calcitonin Like Ligand Receptors 1.0e+00
## Calnexin Calreticulin Cycle 1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin 1.0e+00
## Cardiac Conduction 1.0e+00
## Cargo Recognition For Clathrin Mediated Endocytosis 1.0e+00
## Cargo Trafficking To The Periciliary Membrane 1.0e+00
## Carnitine Metabolism 1.0e+00
## Cation Coupled Chloride Cotransporters 1.0e+00
## Cd209 Dc Sign Signaling 1.0e+00
## Cd22 Mediated Bcr Regulation 1.0e+00
## Cdc42 Gtpase Cycle 1.0e+00
## Cdc6 Association With The Orc Origin Complex 1.0e+00
## Cell Cell Communication 1.0e+00
## Cell Cell Junction Organization 1.0e+00
## Cell Cycle 1.0e+00
## Cell Cycle Checkpoints 1.0e+00
## Cell Cycle Mitotic 1.0e+00
## Cell Death Signalling Via Nrage Nrif And Nade 1.0e+00
## Cell Extracellular Matrix Interactions 1.0e+00
## Cell Junction Organization 1.0e+00
## Cell Surface Interactions At The Vascular Wall 1.0e+00
## Cellular Hexose Transport 1.0e+00
## Cellular Response To Chemical Stress 1.0e+00
## Cellular Response To Heat Stress 1.0e+00
## Cellular Response To Hypoxia 1.0e+00
## Cellular Response To Starvation 1.0e+00
## Cellular Responses To External Stimuli 1.0e+00
## Cellular Senescence 1.0e+00
## Cgmp Effects 1.0e+00
## Chl1 Interactions 1.0e+00
## Cholesterol Biosynthesis 1.0e+00
## Choline Catabolism 1.0e+00
## Chondroitin Sulfate Biosynthesis 1.0e+00
## Chondroitin Sulfate Dermatan Sulfate Metabolism 1.0e+00
## Chrebp Activates Metabolic Gene Expression 1.0e+00
## Chromatin Modifying Enzymes 1.0e+00
## Chromosome Maintenance 1.0e+00
## Chylomicron Clearance 1.0e+00
## Cilium Assembly 1.0e+00
## Circadian Clock 1.0e+00
## Citric Acid Cycle Tca Cycle 1.0e+00
## Class A 1 Rhodopsin Like Receptors 1.0e+00
## Class B 2 Secretin Family Receptors 1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors 1.0e+00
## Class I Mhc Mediated Antigen Processing Presentation 1.0e+00
## Class I Peroxisomal Membrane Protein Import 1.0e+00
## Clathrin Mediated Endocytosis 1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation 1.0e+00
## Clec7a Dectin 1 Signaling 1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 1.0e+00
## Coenzyme A Biosynthesis 1.0e+00
## Cohesin Loading Onto Chromatin 1.0e+00
## Collagen Biosynthesis And Modifying Enzymes 1.0e+00
## Collagen Chain Trimerization 1.0e+00
## Collagen Formation 1.0e+00
## Common Pathway Of Fibrin Clot Formation 1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation 1.0e+00
## Complex I Biogenesis 1.0e+00
## Condensation Of Prophase Chromosomes 1.0e+00
## Conjugation Of Benzoate With Glycine 1.0e+00
## Constitutive Signaling By Overexpressed Erbb2 1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic 1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic 1.0e+00
## Copi Mediated Anterograde Transport 1.0e+00
## Copii Mediated Vesicle Transport 1.0e+00
## Creatine Metabolism 1.0e+00
## Creation Of C4 And C2 Activators 1.0e+00
## Creb3 Factors Activate Genes 1.0e+00
## Cristae Formation 1.0e+00
## Crmps In Sema3a Signaling 1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 1.0e+00
## Cs Ds Degradation 1.0e+00
## Cyclin A Cdk2 Associated Events At S Phase Entry 1.0e+00
## Cyp2e1 Reactions 1.0e+00
## Cytochrome P450 Arranged By Substrate Type 1.0e+00
## Cytokine Signaling In Immune System 1.0e+00
## Cytoprotection By Hmox1 1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly 1.0e+00
## Cytosolic Sulfonation Of Small Molecules 1.0e+00
## Cytosolic Trna Aminoacylation 1.0e+00
## Dag And Ip3 Signaling 1.0e+00
## Darpp 32 Events 1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex 1.0e+00
## Deadenylation Dependent Mrna Decay 1.0e+00
## Deadenylation Of Mrna 1.0e+00
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type 1.0e+00
## Defective Cftr Causes Cystic Fibrosis 1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type 1.0e+00
## Defective Chst3 Causes Sedcjd 1.0e+00
## Defective Chst6 Causes Mcdc1 1.0e+00
## Defective Chsy1 Causes Tpbs 1.0e+00
## Defective Csf2rb Causes Smdp5 1.0e+00
## Defective Ext2 Causes Exostoses 2 1.0e+00
## Defective F9 Activation 1.0e+00
## Defective Factor Ix Causes Hemophilia B 1.0e+00
## Defective Lfng Causes Scdo3 1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis 1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15 1.0e+00
## Defects In Biotin Btn Metabolism 1.0e+00
## Defects In Cobalamin B12 Metabolism 1.0e+00
## Defects In Vitamin And Cofactor Metabolism 1.0e+00
## Degradation Of Axin 1.0e+00
## Degradation Of Beta Catenin By The Destruction Complex 1.0e+00
## Degradation Of Cysteine And Homocysteine 1.0e+00
## Degradation Of Dvl 1.0e+00
## Degradation Of Gli1 By The Proteasome 1.0e+00
## Degradation Of The Extracellular Matrix 1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 1.0e+00
## Detoxification Of Reactive Oxygen Species 1.0e+00
## Deubiquitination 1.0e+00
## Developmental Biology 1.0e+00
## Digestion 1.0e+00
## Digestion And Absorption 1.0e+00
## Digestion Of Dietary Carbohydrate 1.0e+00
## Digestion Of Dietary Lipid 1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism 1.0e+00
## Diseases Associated With N Glycosylation Of Proteins 1.0e+00
## Diseases Associated With O Glycosylation Of Proteins 1.0e+00
## Diseases Associated With Surfactant Metabolism 1.0e+00
## Diseases Of Base Excision Repair 1.0e+00
## Diseases Of Carbohydrate Metabolism 1.0e+00
## Diseases Of Dna Repair 1.0e+00
## Diseases Of Glycosylation 1.0e+00
## Diseases Of Metabolism 1.0e+00
## Diseases Of Mismatch Repair Mmr 1.0e+00
## Diseases Of Mitotic Cell Cycle 1.0e+00
## Diseases Of Programmed Cell Death 1.0e+00
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 1.0e+00
## Disinhibition Of Snare Formation 1.0e+00
## Disorders Of Transmembrane Transporters 1.0e+00
## Displacement Of Dna Glycosylase By Apex1 1.0e+00
## Dna Damage Bypass 1.0e+00
## Dna Damage Recognition In Gg Ner 1.0e+00
## Dna Damage Reversal 1.0e+00
## Dna Damage Telomere Stress Induced Senescence 1.0e+00
## Dna Double Strand Break Repair 1.0e+00
## Dna Double Strand Break Response 1.0e+00
## Dna Methylation 1.0e+00
## Dna Repair 1.0e+00
## Dna Replication 1.0e+00
## Dna Replication Initiation 1.0e+00
## Dna Replication Pre Initiation 1.0e+00
## Dna Strand Elongation 1.0e+00
## Dopamine Neurotransmitter Release Cycle 1.0e+00
## Dopamine Receptors 1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling 1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling 1.0e+00
## Downstream Signaling Events Of B Cell Receptor Bcr 1.0e+00
## Downstream Signaling Of Activated Fgfr1 1.0e+00
## Downstream Signaling Of Activated Fgfr2 1.0e+00
## Downstream Signaling Of Activated Fgfr3 1.0e+00
## Downstream Signaling Of Activated Fgfr4 1.0e+00
## Dual Incision In Gg Ner 1.0e+00
## Dual Incision In Tc Ner 1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 1.0e+00
## Ecm Proteoglycans 1.0e+00
## Effects Of Pip2 Hydrolysis 1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 1.0e+00
## Eicosanoid Ligand Binding Receptors 1.0e+00
## Eicosanoids 1.0e+00
## Elastic Fibre Formation 1.0e+00
## Electric Transmission Across Gap Junctions 1.0e+00
## Elevation Of Cytosolic Ca2 Levels 1.0e+00
## Endogenous Sterols 1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt 1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 1.0e+00
## Eph Ephrin Signaling 1.0e+00
## Epigenetic Regulation Of Gene Expression 1.0e+00
## Er Quality Control Compartment Erqc 1.0e+00
## Er To Golgi Anterograde Transport 1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 1.0e+00
## Erk Mapk Targets 1.0e+00
## Erks Are Inactivated 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg 1.0e+00
## Erythropoietin Activates Ras 1.0e+00
## Erythropoietin Activates Stat5 1.0e+00
## Esr Mediated Signaling 1.0e+00
## Establishment Of Sister Chromatid Cohesion 1.0e+00
## Estrogen Biosynthesis 1.0e+00
## Estrogen Dependent Gene Expression 1.0e+00
## Estrogen Stimulated Signaling Through Prkcz 1.0e+00
## Ethanol Oxidation 1.0e+00
## Eukaryotic Translation Elongation 1.0e+00
## Eukaryotic Translation Initiation 1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus 1.0e+00
## Extension Of Telomeres 1.0e+00
## Extracellular Matrix Organization 1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Factors Involved In Megakaryocyte Development And Platelet Production 1.0e+00
## Fanconi Anemia Pathway 1.0e+00
## Fatty Acid Metabolism 1.0e+00
## Fatty Acids 1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 1.0e+00
## Fatty Acyl Coa Biosynthesis 1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer 1.0e+00
## Fc Epsilon Receptor Fceri Signaling 1.0e+00
## Fceri Mediated Ca 2 Mobilization 1.0e+00
## Fceri Mediated Mapk Activation 1.0e+00
## Fceri Mediated Nf Kb Activation 1.0e+00
## Fcgamma Receptor Fcgr Dependent Phagocytosis 1.0e+00
## Fcgr Activation 1.0e+00
## Fcgr3a Mediated Il10 Synthesis 1.0e+00
## Fertilization 1.0e+00
## Fgfr1 Ligand Binding And Activation 1.0e+00
## Fgfr1b Ligand Binding And Activation 1.0e+00
## Fgfr1c Ligand Binding And Activation 1.0e+00
## Fgfr2 Alternative Splicing 1.0e+00
## Fgfr2 Ligand Binding And Activation 1.0e+00
## Fgfr2 Mutant Receptor Activation 1.0e+00
## Fgfr2b Ligand Binding And Activation 1.0e+00
## Fgfr2c Ligand Binding And Activation 1.0e+00
## Fgfr3 Ligand Binding And Activation 1.0e+00
## Fgfr3b Ligand Binding And Activation 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 1.0e+00
## Flt3 Signaling 1.0e+00
## Flt3 Signaling By Cbl Mutants 1.0e+00
## Flt3 Signaling In Disease 1.0e+00
## Flt3 Signaling Through Src Family Kinases 1.0e+00
## Folding Of Actin By Cct Tric 1.0e+00
## Formation Of Apoptosome 1.0e+00
## Formation Of Atp By Chemiosmotic Coupling 1.0e+00
## Formation Of Fibrin Clot Clotting Cascade 1.0e+00
## Formation Of Incision Complex In Gg Ner 1.0e+00
## Formation Of Rna Pol Ii Elongation Complex 1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf 1.0e+00
## Formation Of Tc Ner Pre Incision Complex 1.0e+00
## Formation Of The Beta Catenin Tcf Transactivating Complex 1.0e+00
## Formation Of The Cornified Envelope 1.0e+00
## Formation Of The Early Elongation Complex 1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric 1.0e+00
## Formation Of Xylulose 5 Phosphate 1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 1.0e+00
## Free Fatty Acid Receptors 1.0e+00
## Free Fatty Acids Regulate Insulin Secretion 1.0e+00
## Frs Mediated Fgfr1 Signaling 1.0e+00
## Frs Mediated Fgfr2 Signaling 1.0e+00
## Frs Mediated Fgfr3 Signaling 1.0e+00
## Frs Mediated Fgfr4 Signaling 1.0e+00
## Fructose Catabolism 1.0e+00
## Fructose Metabolism 1.0e+00
## G Alpha 12 13 Signalling Events 1.0e+00
## G Alpha I Signalling Events 1.0e+00
## G Alpha Q Signalling Events 1.0e+00
## G Alpha S Signalling Events 1.0e+00
## G Alpha Z Signalling Events 1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma 1.0e+00
## G Protein Activation 1.0e+00
## G Protein Mediated Events 1.0e+00
## G1 S Dna Damage Checkpoints 1.0e+00
## G2 M Checkpoints 1.0e+00
## G2 M Dna Damage Checkpoint 1.0e+00
## G2 Phase 1.0e+00
## Gaba B Receptor Activation 1.0e+00
## Gaba Receptor Activation 1.0e+00
## Gaba Synthesis Release Reuptake And Degradation 1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 1.0e+00
## Gap Junction Assembly 1.0e+00
## Gap Junction Degradation 1.0e+00
## Gap Junction Trafficking And Regulation 1.0e+00
## Gdp Fucose Biosynthesis 1.0e+00
## Gene Silencing By Rna 1.0e+00
## Generation Of Second Messenger Molecules 1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner 1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 1.0e+00
## Glucagon Signaling In Metabolic Regulation 1.0e+00
## Glucagon Type Ligand Receptors 1.0e+00
## Glucocorticoid Biosynthesis 1.0e+00
## Gluconeogenesis 1.0e+00
## Glucose Metabolism 1.0e+00
## Glucuronidation 1.0e+00
## Glutamate And Glutamine Metabolism 1.0e+00
## Glutamate Neurotransmitter Release Cycle 1.0e+00
## Glutathione Conjugation 1.0e+00
## Glutathione Synthesis And Recycling 1.0e+00
## Glycerophospholipid Biosynthesis 1.0e+00
## Glycerophospholipid Catabolism 1.0e+00
## Glycogen Breakdown Glycogenolysis 1.0e+00
## Glycogen Metabolism 1.0e+00
## Glycogen Storage Diseases 1.0e+00
## Glycogen Synthesis 1.0e+00
## Glycolysis 1.0e+00
## Glycosaminoglycan Metabolism 1.0e+00
## Glycosphingolipid Metabolism 1.0e+00
## Glyoxylate Metabolism And Glycine Degradation 1.0e+00
## Golgi Associated Vesicle Biogenesis 1.0e+00
## Golgi To Er Retrograde Transport 1.0e+00
## Gpcr Ligand Binding 1.0e+00
## Grb7 Events In Erbb2 Signaling 1.0e+00
## Hats Acetylate Histones 1.0e+00
## Hcmv Early Events 1.0e+00
## Hcmv Infection 1.0e+00
## Hcmv Late Events 1.0e+00
## Hdacs Deacetylate Histones 1.0e+00
## Hdms Demethylate Histones 1.0e+00
## Hdr Through Homologous Recombination Hrr 1.0e+00
## Hdr Through Mmej Alt Nhej 1.0e+00
## Hedgehog Ligand Biogenesis 1.0e+00
## Hedgehog Off State 1.0e+00
## Hedgehog On State 1.0e+00
## Heme Biosynthesis 1.0e+00
## Hemostasis 1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism 1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 1.0e+00
## Histidine Catabolism 1.0e+00
## Hiv Elongation Arrest And Recovery 1.0e+00
## Hiv Infection 1.0e+00
## Hiv Life Cycle 1.0e+00
## Hiv Transcription Elongation 1.0e+00
## Hiv Transcription Initiation 1.0e+00
## Homologous Dna Pairing And Strand Exchange 1.0e+00
## Homology Directed Repair 1.0e+00
## Hormone Ligand Binding Receptors 1.0e+00
## Host Interactions Of Hiv Factors 1.0e+00
## Hs Gag Biosynthesis 1.0e+00
## Hs Gag Degradation 1.0e+00
## Hsf1 Activation 1.0e+00
## Hsf1 Dependent Transactivation 1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna 1.0e+00
## Hyaluronan Biosynthesis And Export 1.0e+00
## Hyaluronan Metabolism 1.0e+00
## Hyaluronan Uptake And Degradation 1.0e+00
## Hydrolysis Of Lpc 1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions 1.0e+00
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 1.0e+00
## Infectious Disease 1.0e+00
## Influenza Infection 1.0e+00
## Inhibition Of Dna Recombination At Telomere 1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 1.0e+00
## Initial Triggering Of Complement 1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 1.0e+00
## Innate Immune System 1.0e+00
## Inositol Phosphate Metabolism 1.0e+00
## Insulin Processing 1.0e+00
## Insulin Receptor Recycling 1.0e+00
## Insulin Receptor Signalling Cascade 1.0e+00
## Integration Of Energy Metabolism 1.0e+00
## Integration Of Provirus 1.0e+00
## Integrin Cell Surface Interactions 1.0e+00
## Interaction Between L1 And Ankyrins 1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida 1.0e+00
## Interactions Of Rev With Host Cellular Proteins 1.0e+00
## Interactions Of Vpr With Host Cellular Proteins 1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates 1.0e+00
## Interferon Alpha Beta Signaling 1.0e+00
## Interferon Gamma Signaling 1.0e+00
## Interferon Signaling 1.0e+00
## Interleukin 36 Pathway 1.0e+00
## Intestinal Absorption 1.0e+00
## Intra Golgi And Retrograde Golgi To Er Traffic 1.0e+00
## Intra Golgi Traffic 1.0e+00
## Intracellular Signaling By Second Messengers 1.0e+00
## Intraflagellar Transport 1.0e+00
## Inwardly Rectifying K Channels 1.0e+00
## Ion Channel Transport 1.0e+00
## Ion Homeostasis 1.0e+00
## Ion Transport By P Type Atpases 1.0e+00
## Ionotropic Activity Of Kainate Receptors 1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex 1.0e+00
## Ire1alpha Activates Chaperones 1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn 1.0e+00
## Iron Uptake And Transport 1.0e+00
## Irs Activation 1.0e+00
## Irs Mediated Signalling 1.0e+00
## Josephin Domain Dubs 1.0e+00
## Keratan Sulfate Biosynthesis 1.0e+00
## Keratan Sulfate Degradation 1.0e+00
## Keratan Sulfate Keratin Metabolism 1.0e+00
## Keratinization 1.0e+00
## Ketone Body Metabolism 1.0e+00
## Kinesins 1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna 1.0e+00
## L1cam Interactions 1.0e+00
## Lagging Strand Synthesis 1.0e+00
## Laminin Interactions 1.0e+00
## Leishmania Infection 1.0e+00
## Leukotriene Receptors 1.0e+00
## Lgi Adam Interactions 1.0e+00
## Ligand Receptor Interactions 1.0e+00
## Linoleic Acid La Metabolism 1.0e+00
## Lipid Particle Organization 1.0e+00
## Lipophagy 1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome 1.0e+00
## Loss Of Function Of Smad2 3 In Cancer 1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 1.0e+00
## Ltc4 Cysltr Mediated Il4 Production 1.0e+00
## Lysine Catabolism 1.0e+00
## Lysosome Vesicle Biogenesis 1.0e+00
## Lysosphingolipid And Lpa Receptors 1.0e+00
## M Phase 1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 1.0e+00
## Mapk Family Signaling Cascades 1.0e+00
## Mapk6 Mapk4 Signaling 1.0e+00
## Maturation Of Nucleoprotein 1.0e+00
## Maturation Of Protein 3a 1.0e+00
## Maturation Of Sars Cov 1 Spike Protein 1.0e+00
## Maturation Of Sars Cov 2 Spike Protein 1.0e+00
## Meiosis 1.0e+00
## Meiotic Recombination 1.0e+00
## Meiotic Synapsis 1.0e+00
## Melanin Biosynthesis 1.0e+00
## Membrane Trafficking 1.0e+00
## Met Activates Pi3k Akt Signaling 1.0e+00
## Met Activates Ptpn11 1.0e+00
## Met Activates Rap1 And Rac1 1.0e+00
## Met Activates Ras Signaling 1.0e+00
## Met Interacts With Tns Proteins 1.0e+00
## Met Promotes Cell Motility 1.0e+00
## Met Receptor Activation 1.0e+00
## Met Receptor Recycling 1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes 1.0e+00
## Metabolism Of Amine Derived Hormones 1.0e+00
## Metabolism Of Amino Acids And Derivatives 1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins 1.0e+00
## Metabolism Of Carbohydrates 1.0e+00
## Metabolism Of Cofactors 1.0e+00
## Metabolism Of Fat Soluble Vitamins 1.0e+00
## Metabolism Of Folate And Pterines 1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se 1.0e+00
## Metabolism Of Lipids 1.0e+00
## Metabolism Of Nucleotides 1.0e+00
## Metabolism Of Polyamines 1.0e+00
## Metabolism Of Rna 1.0e+00
## Metabolism Of Steroid Hormones 1.0e+00
## Metabolism Of Steroids 1.0e+00
## Metabolism Of Vitamins And Cofactors 1.0e+00
## Metabolism Of Water Soluble Vitamins And Cofactors 1.0e+00
## Metal Ion Slc Transporters 1.0e+00
## Metal Sequestration By Antimicrobial Proteins 1.0e+00
## Metallothioneins Bind Metals 1.0e+00
## Methionine Salvage Pathway 1.0e+00
## Methylation 1.0e+00
## Mhc Class Ii Antigen Presentation 1.0e+00
## Microrna Mirna Biogenesis 1.0e+00
## Mineralocorticoid Biosynthesis 1.0e+00
## Miro Gtpase Cycle 1.0e+00
## Miscellaneous Substrates 1.0e+00
## Miscellaneous Transport And Binding Events 1.0e+00
## Mismatch Repair 1.0e+00
## Mitochondrial Biogenesis 1.0e+00
## Mitochondrial Calcium Ion Transport 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis 1.0e+00
## Mitochondrial Protein Import 1.0e+00
## Mitochondrial Translation 1.0e+00
## Mitochondrial Trna Aminoacylation 1.0e+00
## Mitochondrial Uncoupling 1.0e+00
## Mitotic G1 Phase And G1 S Transition 1.0e+00
## Mitotic G2 G2 M Phases 1.0e+00
## Mitotic Metaphase And Anaphase 1.0e+00
## Mitotic Prometaphase 1.0e+00
## Mitotic Prophase 1.0e+00
## Mitotic Spindle Checkpoint 1.0e+00
## Mitotic Telophase Cytokinesis 1.0e+00
## Molecules Associated With Elastic Fibres 1.0e+00
## Molybdenum Cofactor Biosynthesis 1.0e+00
## Mrna Capping 1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease 1.0e+00
## Mrna Editing 1.0e+00
## Mrna Editing C To U Conversion 1.0e+00
## Mrna Splicing 1.0e+00
## Mrna Splicing Minor Pathway 1.0e+00
## Mtor Signalling 1.0e+00
## Mtorc1 Mediated Signalling 1.0e+00
## Mucopolysaccharidoses 1.0e+00
## Multifunctional Anion Exchangers 1.0e+00
## Muscarinic Acetylcholine Receptors 1.0e+00
## Muscle Contraction 1.0e+00
## Myoclonic Epilepsy Of Lafora 1.0e+00
## N Glycan Antennae Elongation 1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi 1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi 1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 1.0e+00
## Na Cl Dependent Neurotransmitter Transporters 1.0e+00
## Ncam Signaling For Neurite Out Growth 1.0e+00
## Ncam1 Interactions 1.0e+00
## Nectin Necl Trans Heterodimerization 1.0e+00
## Neddylation 1.0e+00
## Nef And Signal Transduction 1.0e+00
## Nef Mediated Cd4 Down Regulation 1.0e+00
## Nef Mediated Cd8 Down Regulation 1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 1.0e+00
## Negative Epigenetic Regulation Of Rrna Expression 1.0e+00
## Negative Feedback Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 1.0e+00
## Negative Regulation Of Flt3 1.0e+00
## Negative Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Met Activity 1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 1.0e+00
## Negative Regulation Of Notch4 Signaling 1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 1.0e+00
## Nephrin Family Interactions 1.0e+00
## Nervous System Development 1.0e+00
## Neurexins And Neuroligins 1.0e+00
## Neurofascin Interactions 1.0e+00
## Neuronal System 1.0e+00
## Neurotoxicity Of Clostridium Toxins 1.0e+00
## Neurotransmitter Clearance 1.0e+00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 1.0e+00
## Neurotransmitter Release Cycle 1.0e+00
## Neutrophil Degranulation 1.0e+00
## Ngf Independant Trka Activation 1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase 1.0e+00
## Non Integrin Membrane Ecm Interactions 1.0e+00
## Noncanonical Activation Of Notch3 1.0e+00
## Nonhomologous End Joining Nhej 1.0e+00
## Nonsense Mediated Decay Nmd 1.0e+00
## Norepinephrine Neurotransmitter Release Cycle 1.0e+00
## Notch Hlh Transcription Pathway 1.0e+00
## Notch1 Intracellular Domain Regulates Transcription 1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Intracellular Domain Regulates Transcription 1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 1.0e+00
## Nrage Signals Death Through Jnk 1.0e+00
## Nrcam Interactions 1.0e+00
## Ns1 Mediated Effects On Host Pathways 1.0e+00
## Ntrk2 Activates Rac1 1.0e+00
## Nuclear Envelope Breakdown 1.0e+00
## Nuclear Envelope Ne Reassembly 1.0e+00
## Nuclear Events Kinase And Transcription Factor Activation 1.0e+00
## Nuclear Import Of Rev Protein 1.0e+00
## Nuclear Receptor Transcription Pathway 1.0e+00
## Nucleobase Biosynthesis 1.0e+00
## Nucleobase Catabolism 1.0e+00
## Nucleotide Excision Repair 1.0e+00
## Nucleotide Like Purinergic Receptors 1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins 1.0e+00
## O Linked Glycosylation 1.0e+00
## O Linked Glycosylation Of Mucins 1.0e+00
## Olfactory Signaling Pathway 1.0e+00
## Oncogenic Mapk Signaling 1.0e+00
## Opioid Signalling 1.0e+00
## Opsins 1.0e+00
## Orc1 Removal From Chromatin 1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 1.0e+00
## Organelle Biogenesis And Maintenance 1.0e+00
## Organic Anion Transport 1.0e+00
## Organic Anion Transporters 1.0e+00
## Organic Cation Anion Zwitterion Transport 1.0e+00
## Organic Cation Transport 1.0e+00
## Oxidative Stress Induced Senescence 1.0e+00
## P2y Receptors 1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1 1.0e+00
## Parasite Infection 1.0e+00
## Passive Transport By Aquaporins 1.0e+00
## Pcna Dependent Long Patch Base Excision Repair 1.0e+00
## Pcp Ce Pathway 1.0e+00
## Pentose Phosphate Pathway 1.0e+00
## Peptide Hormone Biosynthesis 1.0e+00
## Peptide Hormone Metabolism 1.0e+00
## Peroxisomal Lipid Metabolism 1.0e+00
## Peroxisomal Protein Import 1.0e+00
## Phase 0 Rapid Depolarisation 1.0e+00
## Phase 1 Inactivation Of Fast Na Channels 1.0e+00
## Phase 2 Plateau Phase 1.0e+00
## Phase 3 Rapid Repolarisation 1.0e+00
## Phase I Functionalization Of Compounds 1.0e+00
## Phase Ii Conjugation Of Compounds 1.0e+00
## Phenylalanine And Tyrosine Metabolism 1.0e+00
## Phenylalanine Metabolism 1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins 1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins 1.0e+00
## Phospholipase C Mediated Cascade Fgfr2 1.0e+00
## Phospholipase C Mediated Cascade Fgfr4 1.0e+00
## Phospholipid Metabolism 1.0e+00
## Physiological Factors 1.0e+00
## Pi 3k Cascade Fgfr1 1.0e+00
## Pi 3k Cascade Fgfr2 1.0e+00
## Pi 3k Cascade Fgfr3 1.0e+00
## Pi 3k Cascade Fgfr4 1.0e+00
## Pi Metabolism 1.0e+00
## Pi3k Akt Activation 1.0e+00
## Pi3k Events In Erbb4 Signaling 1.0e+00
## Pi5p Regulates Tp53 Acetylation 1.0e+00
## Piwi Interacting Rna Pirna Biogenesis 1.0e+00
## Pka Activation In Glucagon Signalling 1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors 1.0e+00
## Pkmts Methylate Histone Lysines 1.0e+00
## Plasma Lipoprotein Assembly Remodeling And Clearance 1.0e+00
## Platelet Activation Signaling And Aggregation 1.0e+00
## Platelet Calcium Homeostasis 1.0e+00
## Platelet Homeostasis 1.0e+00
## Platelet Sensitization By Ldl 1.0e+00
## Polb Dependent Long Patch Base Excision Repair 1.0e+00
## Polo Like Kinase Mediated Events 1.0e+00
## Polymerase Switching 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression 1.0e+00
## Post Chaperonin Tubulin Folding Pathway 1.0e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation 1.0e+00
## Potassium Channels 1.0e+00
## Potential Therapeutics For Sars 1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 1.0e+00
## Prc2 Methylates Histones And Dna 1.0e+00
## Pre Notch Expression And Processing 1.0e+00
## Pre Notch Processing In Golgi 1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum 1.0e+00
## Pregnenolone Biosynthesis 1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening 1.0e+00
## Presynaptic Function Of Kainate Receptors 1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion 1.0e+00
## Processing And Activation Of Sumo 1.0e+00
## Processing Of Capped Intron Containing Pre Mrna 1.0e+00
## Processing Of Capped Intronless Pre Mrna 1.0e+00
## Processing Of Dna Double Strand Break Ends 1.0e+00
## Processing Of Intronless Pre Mrnas 1.0e+00
## Processing Of Smdt1 1.0e+00
## Processive Synthesis On The C Strand Of The Telomere 1.0e+00
## Processive Synthesis On The Lagging Strand 1.0e+00
## Programmed Cell Death 1.0e+00
## Prolactin Receptor Signaling 1.0e+00
## Prolonged Erk Activation Events 1.0e+00
## Propionyl Coa Catabolism 1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor 1.0e+00
## Prostanoid Ligand Receptors 1.0e+00
## Protein Folding 1.0e+00
## Protein Localization 1.0e+00
## Protein Methylation 1.0e+00
## Protein Protein Interactions At Synapses 1.0e+00
## Protein Ubiquitination 1.0e+00
## Proton Coupled Monocarboxylate Transport 1.0e+00
## Pten Regulation 1.0e+00
## Ptk6 Expression 1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing 1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 1.0e+00
## Purine Catabolism 1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis 1.0e+00
## Pyrimidine Catabolism 1.0e+00
## Pyrimidine Salvage 1.0e+00
## Pyruvate Metabolism 1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle 1.0e+00
## Ra Biosynthesis Pathway 1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs 1.0e+00
## Rab Geranylgeranylation 1.0e+00
## Rab Regulation Of Trafficking 1.0e+00
## Rac1 Gtpase Cycle 1.0e+00
## Rac2 Gtpase Cycle 1.0e+00
## Rac3 Gtpase Cycle 1.0e+00
## Rap1 Signalling 1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 1.0e+00
## Ras Processing 1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway 1.0e+00
## Receptor Type Tyrosine Protein Phosphatases 1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex 1.0e+00
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1.0e+00
## Recruitment Of Numa To Mitotic Centrosomes 1.0e+00
## Recycling Of Bile Acids And Salts 1.0e+00
## Recycling Of Eif2 Gdp 1.0e+00
## Recycling Pathway Of L1 1.0e+00
## Reduction Of Cytosolic Ca Levels 1.0e+00
## Reelin Signalling Pathway 1.0e+00
## Regulated Proteolysis Of P75ntr 1.0e+00
## Regulation Of Bach1 Activity 1.0e+00
## Regulation Of Beta Cell Development 1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 1.0e+00
## Regulation Of Expression Of Slits And Robos 1.0e+00
## Regulation Of Fzd By Ubiquitination 1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor 1.0e+00
## Regulation Of Gene Expression In Beta Cells 1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 1.0e+00
## Regulation Of Hmox1 Expression And Activity 1.0e+00
## Regulation Of Hsf1 Mediated Heat Shock Response 1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna 1.0e+00
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 1.0e+00
## Regulation Of Insulin Secretion 1.0e+00
## Regulation Of Lipid Metabolism By Pparalpha 1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors 1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 1.0e+00
## Regulation Of Plk1 Activity At G2 M Transition 1.0e+00
## Regulation Of Pten Gene Transcription 1.0e+00
## Regulation Of Pten Localization 1.0e+00
## Regulation Of Pten Mrna Translation 1.0e+00
## Regulation Of Pten Stability And Activity 1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 1.0e+00
## Regulation Of Ras By Gaps 1.0e+00
## Regulation Of Runx2 Expression And Activity 1.0e+00
## Regulation Of Runx3 Expression And Activity 1.0e+00
## Regulation Of Signaling By Cbl 1.0e+00
## Regulation Of Signaling By Nodal 1.0e+00
## Regulation Of Tp53 Activity 1.0e+00
## Regulation Of Tp53 Activity Through Acetylation 1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors 1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation 1.0e+00
## Relaxin Receptors 1.0e+00
## Release Of Apoptotic Factors From The Mitochondria 1.0e+00
## Release Of Hh Np From The Secreting Cell 1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 1.0e+00
## Reproduction 1.0e+00
## Resolution Of Abasic Sites Ap Sites 1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 1.0e+00
## Resolution Of Sister Chromatid Cohesion 1.0e+00
## Respiratory Electron Transport 1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency 1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 1.0e+00
## Response Of Mtb To Phagocytosis 1.0e+00
## Response To Elevated Platelet Cytosolic Ca2 1.0e+00
## Response To Metal Ions 1.0e+00
## Ret Signaling 1.0e+00
## Retinoid Cycle Disease Events 1.0e+00
## Retrograde Neurotrophin Signalling 1.0e+00
## Retrograde Transport At The Trans Golgi Network 1.0e+00
## Reversible Hydration Of Carbon Dioxide 1.0e+00
## Rho Gtpase Cycle 1.0e+00
## Rho Gtpase Effectors 1.0e+00
## Rho Gtpases Activate Cit 1.0e+00
## Rho Gtpases Activate Formins 1.0e+00
## Rho Gtpases Activate Pkns 1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins 1.0e+00
## Rho Gtpases Activate Rocks 1.0e+00
## Rhoa Gtpase Cycle 1.0e+00
## Rhob Gtpase Cycle 1.0e+00
## Rhobtb Gtpase Cycle 1.0e+00
## Rhobtb1 Gtpase Cycle 1.0e+00
## Rhobtb2 Gtpase Cycle 1.0e+00
## Rhobtb3 Atpase Cycle 1.0e+00
## Rhoc Gtpase Cycle 1.0e+00
## Rhot1 Gtpase Cycle 1.0e+00
## Rmts Methylate Histone Arginines 1.0e+00
## Rna Polymerase I Promoter Escape 1.0e+00
## Rna Polymerase I Transcription 1.0e+00
## Rna Polymerase I Transcription Initiation 1.0e+00
## Rna Polymerase I Transcription Termination 1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes 1.0e+00
## Rna Polymerase Ii Transcription Termination 1.0e+00
## Rna Polymerase Iii Chain Elongation 1.0e+00
## Rna Polymerase Iii Transcription 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Termination 1.0e+00
## Rnd1 Gtpase Cycle 1.0e+00
## Rnd2 Gtpase Cycle 1.0e+00
## Rnd3 Gtpase Cycle 1.0e+00
## Robo Receptors Bind Akap5 1.0e+00
## Role Of Abl In Robo Slit Signaling 1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization 1.0e+00
## Role Of Phospholipids In Phagocytosis 1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling 1.0e+00
## Rora Activates Gene Expression 1.0e+00
## Rrna Modification In The Mitochondrion 1.0e+00
## Rrna Modification In The Nucleus And Cytosol 1.0e+00
## Rrna Processing 1.0e+00
## Rrna Processing In The Mitochondrion 1.0e+00
## Rsk Activation 1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription 1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription 1.0e+00
## Runx3 Regulates Cdkn1a Transcription 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration 1.0e+00
## Runx3 Regulates Notch Signaling 1.0e+00
## Runx3 Regulates P14 Arf 1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription 1.0e+00
## S Phase 1.0e+00
## Sars Cov 1 Genome Replication And Transcription 1.0e+00
## Sars Cov 1 Infection 1.0e+00
## Sars Cov 2 Infection 1.0e+00
## Sars Cov Infections 1.0e+00
## Scavenging By Class F Receptors 1.0e+00
## Scavenging Of Heme From Plasma 1.0e+00
## Scf Skp2 Mediated Degradation Of P27 P21 1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 1.0e+00
## Selective Autophagy 1.0e+00
## Selenoamino Acid Metabolism 1.0e+00
## Sema3a Pak Dependent Axon Repulsion 1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 1.0e+00
## Sema4d In Semaphorin Signaling 1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse 1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 1.0e+00
## Semaphorin Interactions 1.0e+00
## Senescence Associated Secretory Phenotype Sasp 1.0e+00
## Sensory Perception 1.0e+00
## Sensory Processing Of Sound 1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 1.0e+00
## Separation Of Sister Chromatids 1.0e+00
## Serine Biosynthesis 1.0e+00
## Serotonin And Melatonin Biosynthesis 1.0e+00
## Serotonin Neurotransmitter Release Cycle 1.0e+00
## Serotonin Receptors 1.0e+00
## Shc Mediated Cascade Fgfr1 1.0e+00
## Shc Mediated Cascade Fgfr3 1.0e+00
## Shc Mediated Cascade Fgfr4 1.0e+00
## Shc Related Events Triggered By Igf1r 1.0e+00
## Shc1 Events In Erbb4 Signaling 1.0e+00
## Signal Attenuation 1.0e+00
## Signaling By Activin 1.0e+00
## Signaling By Bmp 1.0e+00
## Signaling By Braf And Raf Fusions 1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants 1.0e+00
## Signaling By Erythropoietin 1.0e+00
## Signaling By Fgfr 1.0e+00
## Signaling By Fgfr In Disease 1.0e+00
## Signaling By Fgfr1 1.0e+00
## Signaling By Fgfr2 1.0e+00
## Signaling By Fgfr2 Iiia Tm 1.0e+00
## Signaling By Fgfr2 In Disease 1.0e+00
## Signaling By Fgfr3 1.0e+00
## Signaling By Fgfr3 Fusions In Cancer 1.0e+00
## Signaling By Fgfr4 1.0e+00
## Signaling By Fgfr4 In Disease 1.0e+00
## Signaling By Flt3 Fusion Proteins 1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants 1.0e+00
## Signaling By Gpcr 1.0e+00
## Signaling By Hedgehog 1.0e+00
## Signaling By Insulin Receptor 1.0e+00
## Signaling By Lrp5 Mutants 1.0e+00
## Signaling By Mapk Mutants 1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 1.0e+00
## Signaling By Met 1.0e+00
## Signaling By Mras Complex Mutants 1.0e+00
## Signaling By Mst1 1.0e+00
## Signaling By Nodal 1.0e+00
## Signaling By Notch 1.0e+00
## Signaling By Notch1 1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 Pest Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 1.0e+00
## Signaling By Notch4 1.0e+00
## Signaling By Ntrks 1.0e+00
## Signaling By Nuclear Receptors 1.0e+00
## Signaling By Receptor Tyrosine Kinases 1.0e+00
## Signaling By Retinoic Acid 1.0e+00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 1.0e+00
## Signaling By Rnf43 Mutants 1.0e+00
## Signaling By Robo Receptors 1.0e+00
## Signaling By Tgf Beta Receptor Complex 1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer 1.0e+00
## Signaling By Tgfb Family Members 1.0e+00
## Signaling By The B Cell Receptor Bcr 1.0e+00
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 1.0e+00
## Signaling By Vegf 1.0e+00
## Signaling By Wnt 1.0e+00
## Signaling By Wnt In Cancer 1.0e+00
## Signalling To P38 Via Rit And Rin 1.0e+00
## Sirt1 Negatively Regulates Rrna Expression 1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 1.0e+00
## Slc Mediated Transmembrane Transport 1.0e+00
## Slc Transporter Disorders 1.0e+00
## Small Interfering Rna Sirna Biogenesis 1.0e+00
## Smooth Muscle Contraction 1.0e+00
## Snrnp Assembly 1.0e+00
## Sodium Calcium Exchangers 1.0e+00
## Sodium Coupled Phosphate Cotransporters 1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 1.0e+00
## Sodium Proton Exchangers 1.0e+00
## Sos Mediated Signalling 1.0e+00
## Sperm Motility And Taxes 1.0e+00
## Sphingolipid De Novo Biosynthesis 1.0e+00
## Sphingolipid Metabolism 1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane 1.0e+00
## Stabilization Of P53 1.0e+00
## Stat5 Activation 1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants 1.0e+00
## Stimuli Sensing Channels 1.0e+00
## Striated Muscle Contraction 1.0e+00
## Sulfide Oxidation To Sulfate 1.0e+00
## Sulfur Amino Acid Metabolism 1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1 1.0e+00
## Sumo Is Proteolytically Processed 1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 1.0e+00
## Sumoylation 1.0e+00
## Sumoylation Of Chromatin Organization Proteins 1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins 1.0e+00
## Sumoylation Of Dna Replication Proteins 1.0e+00
## Sumoylation Of Intracellular Receptors 1.0e+00
## Sumoylation Of Rna Binding Proteins 1.0e+00
## Sumoylation Of Sumoylation Proteins 1.0e+00
## Sumoylation Of Transcription Cofactors 1.0e+00
## Sumoylation Of Transcription Factors 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins 1.0e+00
## Suppression Of Apoptosis 1.0e+00
## Suppression Of Phagosomal Maturation 1.0e+00
## Surfactant Metabolism 1.0e+00
## Switching Of Origins To A Post Replicative State 1.0e+00
## Synaptic Adhesion Like Molecules 1.0e+00
## Syndecan Interactions 1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids 1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 1.0e+00
## Synthesis Of Bile Acids And Bile Salts 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 1.0e+00
## Synthesis Of Diphthamide Eef2 1.0e+00
## Synthesis Of Dolichyl Phosphate 1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 1.0e+00
## Synthesis Of Gdp Mannose 1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi 1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol 1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol 1.0e+00
## Synthesis Of Ketone Bodies 1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex 1.0e+00
## Synthesis Of Lipoxins Lx 1.0e+00
## Synthesis Of Pa 1.0e+00
## Synthesis Of Pc 1.0e+00
## Synthesis Of Pe 1.0e+00
## Synthesis Of Pg 1.0e+00
## Synthesis Of Pi 1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Er Membrane 1.0e+00
## Synthesis Of Pips At The Golgi Membrane 1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Plasma Membrane 1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol 1.0e+00
## Synthesis Of Substrates In N Glycan Biosythesis 1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine 1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas 1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe 1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin 1.0e+00
## Tachykinin Receptors Bind Tachykinins 1.0e+00
## Tbc Rabgaps 1.0e+00
## Tcf Dependent Signaling In Response To Wnt 1.0e+00
## Tcr Signaling 1.0e+00
## Telomere C Strand Lagging Strand Synthesis 1.0e+00
## Telomere C Strand Synthesis Initiation 1.0e+00
## Telomere Maintenance 1.0e+00
## Terminal Pathway Of Complement 1.0e+00
## Termination Of Translesion Dna Synthesis 1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 1.0e+00
## Tgf Beta Receptor Signaling Activates Smads 1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 1.0e+00
## The Activation Of Arylsulfatases 1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport 1.0e+00
## The Fatty Acid Cycling Model 1.0e+00
## The Phototransduction Cascade 1.0e+00
## The Retinoid Cycle In Cones Daylight Vision 1.0e+00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 1.0e+00
## Thromboxane Signalling Through Tp Receptor 1.0e+00
## Thyroxine Biosynthesis 1.0e+00
## Tie2 Signaling 1.0e+00
## Tight Junction Interactions 1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd 1.0e+00
## Tp53 Regulates Metabolic Genes 1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 1.0e+00
## Tp53 Regulates Transcription Of Cell Cycle Genes 1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands 1.0e+00
## Tp53 Regulates Transcription Of Dna Repair Genes 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Trafficking Of Ampa Receptors 1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors 1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium 1.0e+00
## Trail Signaling 1.0e+00
## Trans Golgi Network Vesicle Budding 1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner 1.0e+00
## Transcription Of The Hiv Genome 1.0e+00
## Transcriptional Activation Of Mitochondrial Biogenesis 1.0e+00
## Transcriptional Regulation By E2f6 1.0e+00
## Transcriptional Regulation By Mecp2 1.0e+00
## Transcriptional Regulation By Runx1 1.0e+00
## Transcriptional Regulation By Runx2 1.0e+00
## Transcriptional Regulation By Runx3 1.0e+00
## Transcriptional Regulation By Small Rnas 1.0e+00
## Transcriptional Regulation By Tp53 1.0e+00
## Transcriptional Regulation By Ventx 1.0e+00
## Transcriptional Regulation Of Granulopoiesis 1.0e+00
## Transcriptional Regulation Of Testis Differentiation 1.0e+00
## Transcriptional Regulation Of White Adipocyte Differentiation 1.0e+00
## Transferrin Endocytosis And Recycling 1.0e+00
## Translation 1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 1.0e+00
## Translation Of Sars Cov 1 Structural Proteins 1.0e+00
## Translation Of Sars Cov 2 Structural Proteins 1.0e+00
## Translesion Synthesis By Polh 1.0e+00
## Translesion Synthesis By Polk 1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1.0e+00
## Transmission Across Chemical Synapses 1.0e+00
## Transport And Synthesis Of Paps 1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 1.0e+00
## Transport Of Connexons To The Plasma Membrane 1.0e+00
## Transport Of Fatty Acids 1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts 1.0e+00
## Transport Of Mature Transcript To Cytoplasm 1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 1.0e+00
## Transport Of Nucleotide Sugars 1.0e+00
## Transport Of Organic Anions 1.0e+00
## Transport Of Small Molecules 1.0e+00
## Transport Of The Slbp Dependant Mature Mrna 1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules 1.0e+00
## Transport To The Golgi And Subsequent Modification 1.0e+00
## Triglyceride Biosynthesis 1.0e+00
## Triglyceride Metabolism 1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 1.0e+00
## Trna Aminoacylation 1.0e+00
## Trna Modification In The Mitochondrion 1.0e+00
## Trna Modification In The Nucleus And Cytosol 1.0e+00
## Trna Processing 1.0e+00
## Trna Processing In The Mitochondrion 1.0e+00
## Trna Processing In The Nucleus 1.0e+00
## Trp Channels 1.0e+00
## Tryptophan Catabolism 1.0e+00
## Type I Hemidesmosome Assembly 1.0e+00
## Tyrosine Catabolism 1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins 1.0e+00
## Ub Specific Processing Proteases 1.0e+00
## Ubiquinol Biosynthesis 1.0e+00
## Uch Proteinases 1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 1.0e+00
## Unfolded Protein Response Upr 1.0e+00
## Unwinding Of Dna 1.0e+00
## Uptake And Actions Of Bacterial Toxins 1.0e+00
## Uptake And Function Of Anthrax Toxins 1.0e+00
## Uptake And Function Of Diphtheria Toxin 1.0e+00
## Urea Cycle 1.0e+00
## Vasopressin Like Receptors 1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 1.0e+00
## Vegf Ligand Receptor Interactions 1.0e+00
## Vesicle Mediated Transport 1.0e+00
## Viral Messenger Rna Synthesis 1.0e+00
## Visual Phototransduction 1.0e+00
## Vitamin B1 Thiamin Metabolism 1.0e+00
## Vitamin B2 Riboflavin Metabolism 1.0e+00
## Vitamin B5 Pantothenate Metabolism 1.0e+00
## Vitamin C Ascorbate Metabolism 1.0e+00
## Vitamin D Calciferol Metabolism 1.0e+00
## Vitamins 1.0e+00
## Vldl Assembly 1.0e+00
## Vldl Clearance 1.0e+00
## Voltage Gated Potassium Channels 1.0e+00
## Vxpx Cargo Targeting To Cilium 1.0e+00
## Wax And Plasmalogen Biosynthesis 1.0e+00
## Wnt Mediated Activation Of Dvl 1.0e+00
## Xenobiotics 1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family 1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family 1.0e+00
## Zinc Transporters 1.0e+00
## signature
## Interleukin 10 Signaling 169
## Chemokine Receptors Bind Chemokines 169
## Interleukin 4 And Interleukin 13 Signaling 169
## Irak4 Deficiency Tlr2 4 169
## Fibronectin Matrix Formation 169
## Diseases Of Immune System 169
## Regulation Of Tlr By Endogenous Ligand 169
## Interleukin 18 Signaling 169
## Cd163 Mediating An Anti Inflammatory Response 169
## Interleukin 1 Processing 169
## Purinergic Signaling In Leishmaniasis Infection 169
## P75ntr Signals Via Nf Kb 169
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 169
## Interleukin 6 Signaling 169
## Tnfs Bind Their Physiological Receptors 169
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 169
## Nod1 2 Signaling Pathway 169
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 169
## Cd28 Dependent Vav1 Pathway 169
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 169
## Killing Mechanisms 169
## P75ntr Recruits Signalling Complexes 169
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 169
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 169
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 169
## Pyroptosis 169
## Activation Of C3 And C5 169
## Runx2 Regulates Genes Involved In Cell Migration 169
## Ctla4 Inhibitory Signaling 169
## Inflammasomes 169
## Egfr Interacts With Phospholipase C Gamma 169
## Egfr Transactivation By Gastrin 169
## Interleukin 9 Signaling 169
## Trif Mediated Programmed Cell Death 169
## Activated Tak1 Mediates P38 Mapk Activation 169
## Caspase Activation Via Death Receptors In The Presence Of Ligand 169
## The Nlrp3 Inflammasome 169
## Toll Like Receptor Tlr1 Tlr2 Cascade 169
## Ovarian Tumor Domain Proteases 169
## Activation Of The Ap 1 Family Of Transcription Factors 169
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 169
## Gab1 Signalosome 169
## Interleukin 21 Signaling 169
## Mapk3 Erk1 Activation 169
## Rip Mediated Nfkb Activation Via Zbp1 169
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 169
## Activation Of Matrix Metalloproteinases 169
## Apoptotic Cleavage Of Cell Adhesion Proteins 169
## Interleukin 27 Signaling 169
## Receptor Mediated Mitophagy 169
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 169
## Toll Like Receptor 9 Tlr9 Cascade 169
## Gp1b Ix V Activation Signalling 169
## Interleukin 35 Signalling 169
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 169
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 169
## Signaling By Kit In Disease 169
## Alternative Complement Activation 169
## Fasl Cd95l Signaling 169
## G2 M Dna Replication Checkpoint 169
## Galactose Catabolism 169
## Hdl Clearance 169
## Mecp2 Regulates Transcription Factors 169
## Nostrin Mediated Enos Trafficking 169
## Runx1 Regulates Expression Of Components Of Tight Junctions 169
## Runx2 Regulates Chondrocyte Maturation 169
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 169
## Apoptosis Induced Dna Fragmentation 169
## Erbb2 Activates Ptk6 Signaling 169
## Nf Kb Is Activated And Signals Survival 169
## Tnfr1 Induced Proapoptotic Signaling 169
## Trafficking And Processing Of Endosomal Tlr 169
## Zbp1 Dai Mediated Induction Of Type I Ifns 169
## Dcc Mediated Attractive Signaling 169
## Early Phase Of Hiv Life Cycle 169
## Interleukin 15 Signaling 169
## Shc1 Events In Egfr Signaling 169
## Toll Like Receptor Cascades 169
## Activated Ntrk3 Signals Through Pi3k 169
## Activation Of Caspases Through Apoptosome Mediated Cleavage 169
## Biosynthesis Of Epa Derived Spms 169
## Clec7a Inflammasome Pathway 169
## Nade Modulates Death Signalling 169
## Phosphorylation Of Emi1 169
## Protein Repair 169
## Ptk6 Promotes Hif1a Stabilization 169
## Ptk6 Regulates Cell Cycle 169
## Scavenging By Class B Receptors 169
## Sensing Of Dna Double Strand Breaks 169
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 169
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 169
## Tnfr1 Mediated Ceramide Production 169
## Ikk Complex Recruitment Mediated By Rip1 169
## Constitutive Signaling By Egfrviii 169
## Erbb2 Regulates Cell Motility 169
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 169
## P130cas Linkage To Mapk Signaling For Integrins 169
## Heme Signaling 169
## Regulated Necrosis 169
## Activated Ntrk2 Signals Through Fyn 169
## Activation Of Nima Kinases Nek9 Nek6 Nek7 169
## Creb Phosphorylation 169
## Defective Factor Viii Causes Hemophilia A 169
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 169
## Ikba Variant Leads To Eda Id 169
## Interleukin 6 Family Signaling 169
## Modulation By Mtb Of Host Immune System 169
## Myd88 Independent Tlr4 Cascade 169
## Traf6 Mediated Nf Kb Activation 169
## Cd28 Co Stimulation 169
## Grb2 Events In Erbb2 Signaling 169
## Pi3k Events In Erbb2 Signaling 169
## Signal Regulatory Protein Family Interactions 169
## Signaling By Erbb2 Ecd Mutants 169
## Sumoylation Of Dna Methylation Proteins 169
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 169
## Beta Defensins 169
## Extra Nuclear Estrogen Signaling 169
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 169
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 169
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 169
## Hdl Assembly 169
## Inactivation Of Cdc42 And Rac1 169
## Lectin Pathway Of Complement Activation 169
## Mecp2 Regulates Transcription Of Neuronal Ligands 169
## Netrin Mediated Repulsion Signals 169
## Runx3 Regulates Wnt Signaling 169
## Smac Xiap Regulated Apoptotic Response 169
## Interleukin 2 Family Signaling 169
## Signaling By Cytosolic Fgfr1 Fusion Mutants 169
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 169
## Dap12 Interactions 169
## Downregulation Of Erbb4 Signaling 169
## E2f Enabled Inhibition Of Pre Replication Complex Formation 169
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 169
## Interleukin 23 Signaling 169
## Mapk1 Erk2 Activation 169
## Oas Antiviral Response 169
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 169
## Interleukin 17 Signaling 169
## Other Semaphorin Interactions 169
## Pd 1 Signaling 169
## Scavenging By Class A Receptors 169
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 169
## Akt Phosphorylates Targets In The Nucleus 169
## Camk Iv Mediated Phosphorylation Of Creb 169
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 169
## Chylomicron Assembly 169
## Chylomicron Remodeling 169
## Dap12 Signaling 169
## Downstream Signal Transduction 169
## Hdl Remodeling 169
## Mastl Facilitates Mitotic Progression 169
## P75ntr Regulates Axonogenesis 169
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 169
## Regulation Of Foxo Transcriptional Activity By Acetylation 169
## Interleukin 1 Family Signaling 169
## Signaling By Pdgfr In Disease 169
## Costimulation By The Cd28 Family 169
## Peptide Ligand Binding Receptors 169
## Tnfr1 Induced Nfkappab Signaling Pathway 169
## Interleukin 37 Signaling 169
## Signal Transduction By L1 169
## Condensation Of Prometaphase Chromosomes 169
## Dermatan Sulfate Biosynthesis 169
## Dscam Interactions 169
## Egfr Downregulation 169
## Endosomal Vacuolar Pathway 169
## Enos Activation 169
## Mapk Targets Nuclear Events Mediated By Map Kinases 169
## Pexophagy 169
## Regulation By C Flip 169
## Rho Gtpases Activate Ktn1 169
## Signaling By Leptin 169
## Sumoylation Of Immune Response Proteins 169
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 169
## Cd28 Dependent Pi3k Akt Signaling 169
## Shc1 Events In Erbb2 Signaling 169
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 169
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 169
## Interleukin 2 Signaling 169
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 169
## Notch2 Intracellular Domain Regulates Transcription 169
## Pecam1 Interactions 169
## Tandem Pore Domain Potassium Channels 169
## Ticam1 Dependent Activation Of Irf3 Irf7 169
## Vldlr Internalisation And Degradation 169
## Raf Independent Mapk1 3 Activation 169
## Defensins 169
## Signaling By Scf Kit 169
## Advanced Glycosylation Endproduct Receptor Signaling 169
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 169
## Cytochrome C Mediated Apoptotic Response 169
## Dissolution Of Fibrin Clot 169
## Growth Hormone Receptor Signaling 169
## Irf3 Mediated Induction Of Type I Ifn 169
## Negative Regulators Of Ddx58 Ifih1 Signaling 169
## P38mapk Events 169
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 169
## Purine Salvage 169
## Runx2 Regulates Osteoblast Differentiation 169
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 169
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 169
## Regulation Of Tnfr1 Signaling 169
## Golgi Cisternae Pericentriolar Stack Reorganization 169
## Inactivation Of Csf3 G Csf Signaling 169
## Irak1 Recruits Ikk Complex 169
## Notch3 Activation And Transmission Of Signal To The Nucleus 169
## Regulation Of Ifng Signaling 169
## Repression Of Wnt Target Genes 169
## Signaling By Egfr In Cancer 169
## Traf3 Dependent Irf Activation Pathway 169
## Interleukin 20 Family Signaling 169
## Signaling By Erbb2 In Cancer 169
## Depolymerisation Of The Nuclear Lamina 169
## Heme Degradation 169
## Interleukin 12 Family Signaling 169
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 169
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 169
## Platelet Adhesion To Exposed Collagen 169
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 169
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 169
## Wnt5a Dependent Internalization Of Fzd4 169
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 169
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 169
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 169
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 169
## Foxo Mediated Transcription Of Cell Death Genes 169
## G0 And Early G1 169
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 169
## Integrin Signaling 169
## Interleukin Receptor Shc Signaling 169
## Nrif Signals Cell Death From The Nucleus 169
## Regulation Of Kit Signaling 169
## Spry Regulation Of Fgf Signaling 169
## Sting Mediated Induction Of Host Immune Responses 169
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 169
## Vegfr2 Mediated Vascular Permeability 169
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 169
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 169
## Downregulation Of Erbb2 Signaling 169
## Foxo Mediated Transcription Of Cell Cycle Genes 169
## Mitophagy 169
## Regulation Of Runx1 Expression And Activity 169
## Ripk1 Mediated Regulated Necrosis 169
## Signaling By Egfr 169
## Signaling By Ntrk3 Trkc 169
## Abc Transporters In Lipid Homeostasis 169
## Crosslinking Of Collagen Fibrils 169
## Diseases Associated With Glycosylation Precursor Biosynthesis 169
## Eph Ephrin Mediated Repulsion Of Cells 169
## Mecp2 Regulates Neuronal Receptors And Channels 169
## Signaling By Csf3 G Csf 169
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 169
## Biosynthesis Of Specialized Proresolving Mediators Spms 169
## Ephrin Signaling 169
## Fgfr1 Mutant Receptor Activation 169
## Initiation Of Nuclear Envelope Ne Reformation 169
## Interleukin 1 Signaling 169
## Ldl Clearance 169
## Nicotinamide Salvaging 169
## Nicotinate Metabolism 169
## Phase 4 Resting Membrane Potential 169
## Plasma Lipoprotein Assembly 169
## Regulation Of Tp53 Activity Through Methylation 169
## Runx2 Regulates Bone Development 169
## Signaling By Interleukins 169
## Tnfr2 Non Canonical Nf Kb Pathway 169
## Transcription Of E2f Targets Under Negative Control By Dream Complex 169
## Vegfr2 Mediated Cell Proliferation 169
## Apoptotic Factor Mediated Response 169
## Cargo Concentration In The Er 169
## Collagen Degradation 169
## G Beta Gamma Signalling Through Cdc42 169
## Listeria Monocytogenes Entry Into Host Cells 169
## Perk Regulates Gene Expression 169
## Phosphorylation Of The Apc C 169
## Pka Mediated Phosphorylation Of Creb 169
## Plasma Lipoprotein Clearance 169
## Signaling By Hippo 169
## Signaling By Ptk6 169
## Signalling To Ras 169
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 169
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 169
## Tnf Signaling 169
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 169
## Branched Chain Amino Acid Catabolism 169
## Chaperone Mediated Autophagy 169
## Complement Cascade 169
## Constitutive Signaling By Aberrant Pi3k In Cancer 169
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 169
## E2f Mediated Regulation Of Dna Replication 169
## Gpvi Mediated Activation Cascade 169
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 169
## P75 Ntr Receptor Mediated Signalling 169
## Pink1 Prkn Mediated Mitophagy 169
## Rho Gtpases Activate Paks 169
## Incretin Synthesis Secretion And Inactivation 169
## Interleukin 12 Signaling 169
## Intrinsic Pathway Of Fibrin Clot Formation 169
## Long Term Potentiation 169
## Nucleotide Salvage 169
## Regulation Of Tp53 Expression And Degradation 169
## Rhoh Gtpase Cycle 169
## Rhoq Gtpase Cycle 169
## Signaling By Notch3 169
## Telomere Extension By Telomerase 169
## Termination Of O Glycan Biosynthesis 169
## Adp Signalling Through P2y Purinoceptor 1 169
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 169
## Apc C Cdc20 Mediated Degradation Of Cyclin B 169
## Apoptotic Cleavage Of Cellular Proteins 169
## Apoptotic Execution Phase 169
## Assembly Of Collagen Fibrils And Other Multimeric Structures 169
## Basigin Interactions 169
## Constitutive Signaling By Akt1 E17k In Cancer 169
## Cyclin A B1 B2 Associated Events During G2 M Transition 169
## Cytosolic Sensors Of Pathogen Associated Dna 169
## Death Receptor Signalling 169
## Dectin 2 Family 169
## Negative Regulation Of The Pi3k Akt Network 169
## Netrin 1 Signaling 169
## Ngf Stimulated Transcription 169
## Notch3 Intracellular Domain Regulates Transcription 169
## Other Interleukin Signaling 169
## Platelet Aggregation Plug Formation 169
## Regulation Of Ifna Signaling 169
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 169
## Rho Gtpases Activate Nadph Oxidases 169
## Signaling By Erbb2 169
## Signaling By Fgfr1 In Disease 169
## Signaling By Ntrk2 Trkb 169
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 169
## Triglyceride Catabolism 169
## Wnt Ligand Biogenesis And Trafficking 169
## Antigen Processing Cross Presentation 169
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 169
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 169
## Epha Mediated Growth Cone Collapse 169
## Ephb Mediated Forward Signaling 169
## G1 S Specific Transcription 169
## Infection With Mycobacterium Tuberculosis 169
## Intrinsic Pathway For Apoptosis 169
## Map2k And Mapk Activation 169
## Metabolism Of Porphyrins 169
## Myogenesis 169
## Negative Regulation Of Fgfr3 Signaling 169
## Rhof Gtpase Cycle 169
## Rhoj Gtpase Cycle 169
## Tp53 Regulates Transcription Of Cell Death Genes 169
## Traf6 Mediated Irf7 Activation 169
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 169
## Activation Of Bh3 Only Proteins 169
## Antimicrobial Peptides 169
## Ca Dependent Events 169
## Cyclin D Associated Events In G1 169
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 169
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 169
## Foxo Mediated Transcription 169
## G Protein Beta Gamma Signalling 169
## Hdr Through Single Strand Annealing Ssa 169
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 169
## Interleukin 7 Signaling 169
## Late Endosomal Microautophagy 169
## Met Activates Ptk2 Signaling 169
## Metalloprotease Dubs 169
## Negative Regulation Of Fgfr1 Signaling 169
## Negative Regulation Of Fgfr2 Signaling 169
## Negative Regulation Of Fgfr4 Signaling 169
## Nuclear Pore Complex Npc Disassembly 169
## Nuclear Signaling By Erbb4 169
## Oncogene Induced Senescence 169
## Pi3k Akt Signaling In Cancer 169
## Plasma Lipoprotein Remodeling 169
## Raf Activation 169
## Regulation Of Mecp2 Expression And Activity 169
## Resolution Of D Loop Structures 169
## Rho Gtpases Activate Iqgaps 169
## Rho Gtpases Activate Wasps And Waves 169
## Rhod Gtpase Cycle 169
## Rhog Gtpase Cycle 169
## Rhou Gtpase Cycle 169
## Rhov Gtpase Cycle 169
## Ros And Rns Production In Phagocytes 169
## Sialic Acid Metabolism 169
## Signal Amplification 169
## Signaling By Erbb4 169
## Signaling By Moderate Kinase Activity Braf Mutants 169
## Signaling By Notch2 169
## Signaling By Pdgf 169
## Signalling To Erks 169
## Thrombin Signalling Through Proteinase Activated Receptors Pars 169
## Transcriptional Regulation Of Pluripotent Stem Cells 169
## 2 Ltr Circle Formation 169
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 169
## Abacavir Metabolism 169
## Abacavir Transmembrane Transport 169
## Abacavir Transport And Metabolism 169
## Abc Family Proteins Mediated Transport 169
## Abc Transporter Disorders 169
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 169
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 169
## Acetylcholine Binding And Downstream Events 169
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 169
## Acetylcholine Neurotransmitter Release Cycle 169
## Acetylcholine Regulates Insulin Secretion 169
## Acrosome Reaction And Sperm Oocyte Membrane Binding 169
## Activated Notch1 Transmits Signal To The Nucleus 169
## Activated Ntrk2 Signals Through Cdk5 169
## Activated Ntrk2 Signals Through Frs2 And Frs3 169
## Activated Ntrk2 Signals Through Pi3k 169
## Activated Ntrk2 Signals Through Ras 169
## Activated Ntrk3 Signals Through Ras 169
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 169
## Activation Of Ampk Downstream Of Nmdars 169
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 169
## Activation Of Atr In Response To Replication Stress 169
## Activation Of Bad And Translocation To Mitochondria 169
## Activation Of Gene Expression By Srebf Srebp 169
## Activation Of Kainate Receptors Upon Glutamate Binding 169
## Activation Of Nmda Receptors And Postsynaptic Events 169
## Activation Of Noxa And Translocation To Mitochondria 169
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 169
## Activation Of Puma And Translocation To Mitochondria 169
## Activation Of Rac1 169
## Activation Of Rac1 Downstream Of Nmdars 169
## Activation Of Ras In B Cells 169
## Activation Of Smo 169
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 169
## Activation Of The Phototransduction Cascade 169
## Activation Of The Pre Replicative Complex 169
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 169
## Activation Of Trka Receptors 169
## Acyl Chain Remodeling Of Cl 169
## Acyl Chain Remodeling Of Dag And Tag 169
## Acyl Chain Remodelling Of Pc 169
## Acyl Chain Remodelling Of Pe 169
## Acyl Chain Remodelling Of Pg 169
## Acyl Chain Remodelling Of Pi 169
## Acyl Chain Remodelling Of Ps 169
## Adaptive Immune System 169
## Adenylate Cyclase Activating Pathway 169
## Adenylate Cyclase Inhibitory Pathway 169
## Adherens Junctions Interactions 169
## Adora2b Mediated Anti Inflammatory Cytokines Production 169
## Adp Signalling Through P2y Purinoceptor 12 169
## Adrenaline Noradrenaline Inhibits Insulin Secretion 169
## Adrenoceptors 169
## Aflatoxin Activation And Detoxification 169
## Aggrephagy 169
## Akt Phosphorylates Targets In The Cytosol 169
## Alpha Defensins 169
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 169
## Alpha Oxidation Of Phytanate 169
## Alpha Protein Kinase 1 Signaling Pathway 169
## Amine Ligand Binding Receptors 169
## Amino Acid Conjugation 169
## Amino Acid Transport Across The Plasma Membrane 169
## Amino Acids Regulate Mtorc1 169
## Ampk Inhibits Chrebp Transcriptional Activation Activity 169
## Amyloid Fiber Formation 169
## Anchoring Fibril Formation 169
## Anchoring Of The Basal Body To The Plasma Membrane 169
## Androgen Biosynthesis 169
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 169
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 169
## Antigen Processing Ubiquitination Proteasome Degradation 169
## Antiviral Mechanism By Ifn Stimulated Genes 169
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 169
## Apc C Mediated Degradation Of Cell Cycle Proteins 169
## Apc Cdc20 Mediated Degradation Of Nek2a 169
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 169
## Apobec3g Mediated Resistance To Hiv 1 Infection 169
## Apoptosis 169
## Aquaporin Mediated Transport 169
## Arachidonate Production From Dag 169
## Arachidonic Acid Metabolism 169
## Arms Mediated Activation 169
## Aryl Hydrocarbon Receptor Signalling 169
## Asparagine N Linked Glycosylation 169
## Aspartate And Asparagine Metabolism 169
## Assembly And Cell Surface Presentation Of Nmda Receptors 169
## Assembly Of Active Lpl And Lipc Lipase Complexes 169
## Assembly Of The Hiv Virion 169
## Assembly Of The Orc Complex At The Origin Of Replication 169
## Assembly Of The Pre Replicative Complex 169
## Association Of Tric Cct With Target Proteins During Biosynthesis 169
## Asymmetric Localization Of Pcp Proteins 169
## Atf6 Atf6 Alpha Activates Chaperone Genes 169
## Atf6 Atf6 Alpha Activates Chaperones 169
## Attachment And Entry 169
## Attachment Of Gpi Anchor To Upar 169
## Attenuation Phase 169
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 169
## Aurka Activation By Tpx2 169
## Autophagy 169
## B Wich Complex Positively Regulates Rrna Expression 169
## Base Excision Repair 169
## Base Excision Repair Ap Site Formation 169
## Bbsome Mediated Cargo Targeting To Cilium 169
## Beta Catenin Independent Wnt Signaling 169
## Beta Catenin Phosphorylation Cascade 169
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 169
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 169
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 169
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 169
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 169
## Beta Oxidation Of Pristanoyl Coa 169
## Beta Oxidation Of Very Long Chain Fatty Acids 169
## Bicarbonate Transporters 169
## Bile Acid And Bile Salt Metabolism 169
## Binding And Uptake Of Ligands By Scavenger Receptors 169
## Biological Oxidations 169
## Biosynthesis Of Maresin Like Spms 169
## Biosynthesis Of Maresins 169
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 169
## Biotin Transport And Metabolism 169
## Blood Group Systems Biosynthesis 169
## Budding And Maturation Of Hiv Virion 169
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 169
## Butyrophilin Btn Family Interactions 169
## C Type Lectin Receptors Clrs 169
## Ca2 Activated K Channels 169
## Ca2 Pathway 169
## Calcineurin Activates Nfat 169
## Calcitonin Like Ligand Receptors 169
## Calnexin Calreticulin Cycle 169
## Carboxyterminal Post Translational Modifications Of Tubulin 169
## Cardiac Conduction 169
## Cargo Recognition For Clathrin Mediated Endocytosis 169
## Cargo Trafficking To The Periciliary Membrane 169
## Carnitine Metabolism 169
## Cation Coupled Chloride Cotransporters 169
## Cd209 Dc Sign Signaling 169
## Cd22 Mediated Bcr Regulation 169
## Cdc42 Gtpase Cycle 169
## Cdc6 Association With The Orc Origin Complex 169
## Cell Cell Communication 169
## Cell Cell Junction Organization 169
## Cell Cycle 169
## Cell Cycle Checkpoints 169
## Cell Cycle Mitotic 169
## Cell Death Signalling Via Nrage Nrif And Nade 169
## Cell Extracellular Matrix Interactions 169
## Cell Junction Organization 169
## Cell Surface Interactions At The Vascular Wall 169
## Cellular Hexose Transport 169
## Cellular Response To Chemical Stress 169
## Cellular Response To Heat Stress 169
## Cellular Response To Hypoxia 169
## Cellular Response To Starvation 169
## Cellular Responses To External Stimuli 169
## Cellular Senescence 169
## Cgmp Effects 169
## Chl1 Interactions 169
## Cholesterol Biosynthesis 169
## Choline Catabolism 169
## Chondroitin Sulfate Biosynthesis 169
## Chondroitin Sulfate Dermatan Sulfate Metabolism 169
## Chrebp Activates Metabolic Gene Expression 169
## Chromatin Modifying Enzymes 169
## Chromosome Maintenance 169
## Chylomicron Clearance 169
## Cilium Assembly 169
## Circadian Clock 169
## Citric Acid Cycle Tca Cycle 169
## Class A 1 Rhodopsin Like Receptors 169
## Class B 2 Secretin Family Receptors 169
## Class C 3 Metabotropic Glutamate Pheromone Receptors 169
## Class I Mhc Mediated Antigen Processing Presentation 169
## Class I Peroxisomal Membrane Protein Import 169
## Clathrin Mediated Endocytosis 169
## Clec7a Dectin 1 Induces Nfat Activation 169
## Clec7a Dectin 1 Signaling 169
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 169
## Coenzyme A Biosynthesis 169
## Cohesin Loading Onto Chromatin 169
## Collagen Biosynthesis And Modifying Enzymes 169
## Collagen Chain Trimerization 169
## Collagen Formation 169
## Common Pathway Of Fibrin Clot Formation 169
## Competing Endogenous Rnas Cernas Regulate Pten Translation 169
## Complex I Biogenesis 169
## Condensation Of Prophase Chromosomes 169
## Conjugation Of Benzoate With Glycine 169
## Constitutive Signaling By Overexpressed Erbb2 169
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 169
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 169
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 169
## Copi Dependent Golgi To Er Retrograde Traffic 169
## Copi Independent Golgi To Er Retrograde Traffic 169
## Copi Mediated Anterograde Transport 169
## Copii Mediated Vesicle Transport 169
## Creatine Metabolism 169
## Creation Of C4 And C2 Activators 169
## Creb3 Factors Activate Genes 169
## Cristae Formation 169
## Crmps In Sema3a Signaling 169
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 169
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 169
## Cs Ds Degradation 169
## Cyclin A Cdk2 Associated Events At S Phase Entry 169
## Cyp2e1 Reactions 169
## Cytochrome P450 Arranged By Substrate Type 169
## Cytokine Signaling In Immune System 169
## Cytoprotection By Hmox1 169
## Cytosolic Iron Sulfur Cluster Assembly 169
## Cytosolic Sulfonation Of Small Molecules 169
## Cytosolic Trna Aminoacylation 169
## Dag And Ip3 Signaling 169
## Darpp 32 Events 169
## Deactivation Of The Beta Catenin Transactivating Complex 169
## Deadenylation Dependent Mrna Decay 169
## Deadenylation Of Mrna 169
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 169
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 169
## Defective B4galt7 Causes Eds Progeroid Type 169
## Defective Cftr Causes Cystic Fibrosis 169
## Defective Chst14 Causes Eds Musculocontractural Type 169
## Defective Chst3 Causes Sedcjd 169
## Defective Chst6 Causes Mcdc1 169
## Defective Chsy1 Causes Tpbs 169
## Defective Csf2rb Causes Smdp5 169
## Defective Ext2 Causes Exostoses 2 169
## Defective F9 Activation 169
## Defective Factor Ix Causes Hemophilia B 169
## Defective Lfng Causes Scdo3 169
## Defective Ripk1 Mediated Regulated Necrosis 169
## Defective St3gal3 Causes Mct12 And Eiee15 169
## Defects In Biotin Btn Metabolism 169
## Defects In Cobalamin B12 Metabolism 169
## Defects In Vitamin And Cofactor Metabolism 169
## Degradation Of Axin 169
## Degradation Of Beta Catenin By The Destruction Complex 169
## Degradation Of Cysteine And Homocysteine 169
## Degradation Of Dvl 169
## Degradation Of Gli1 By The Proteasome 169
## Degradation Of The Extracellular Matrix 169
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 169
## Detoxification Of Reactive Oxygen Species 169
## Deubiquitination 169
## Developmental Biology 169
## Digestion 169
## Digestion And Absorption 169
## Digestion Of Dietary Carbohydrate 169
## Digestion Of Dietary Lipid 169
## Diseases Associated With Glycosaminoglycan Metabolism 169
## Diseases Associated With N Glycosylation Of Proteins 169
## Diseases Associated With O Glycosylation Of Proteins 169
## Diseases Associated With Surfactant Metabolism 169
## Diseases Of Base Excision Repair 169
## Diseases Of Carbohydrate Metabolism 169
## Diseases Of Dna Repair 169
## Diseases Of Glycosylation 169
## Diseases Of Metabolism 169
## Diseases Of Mismatch Repair Mmr 169
## Diseases Of Mitotic Cell Cycle 169
## Diseases Of Programmed Cell Death 169
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 169
## Disinhibition Of Snare Formation 169
## Disorders Of Transmembrane Transporters 169
## Displacement Of Dna Glycosylase By Apex1 169
## Dna Damage Bypass 169
## Dna Damage Recognition In Gg Ner 169
## Dna Damage Reversal 169
## Dna Damage Telomere Stress Induced Senescence 169
## Dna Double Strand Break Repair 169
## Dna Double Strand Break Response 169
## Dna Methylation 169
## Dna Repair 169
## Dna Replication 169
## Dna Replication Initiation 169
## Dna Replication Pre Initiation 169
## Dna Strand Elongation 169
## Dopamine Neurotransmitter Release Cycle 169
## Dopamine Receptors 169
## Downregulation Of Erbb2 Erbb3 Signaling 169
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 169
## Downregulation Of Tgf Beta Receptor Signaling 169
## Downstream Signaling Events Of B Cell Receptor Bcr 169
## Downstream Signaling Of Activated Fgfr1 169
## Downstream Signaling Of Activated Fgfr2 169
## Downstream Signaling Of Activated Fgfr3 169
## Downstream Signaling Of Activated Fgfr4 169
## Dual Incision In Gg Ner 169
## Dual Incision In Tc Ner 169
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 169
## Ecm Proteoglycans 169
## Effects Of Pip2 Hydrolysis 169
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 169
## Eicosanoid Ligand Binding Receptors 169
## Eicosanoids 169
## Elastic Fibre Formation 169
## Electric Transmission Across Gap Junctions 169
## Elevation Of Cytosolic Ca2 Levels 169
## Endogenous Sterols 169
## Endosomal Sorting Complex Required For Transport Escrt 169
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 169
## Eph Ephrin Signaling 169
## Epigenetic Regulation Of Gene Expression 169
## Er Quality Control Compartment Erqc 169
## Er To Golgi Anterograde Transport 169
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 169
## Erk Mapk Targets 169
## Erks Are Inactivated 169
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 169
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 169
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 169
## Erythropoietin Activates Phospholipase C Gamma Plcg 169
## Erythropoietin Activates Ras 169
## Erythropoietin Activates Stat5 169
## Esr Mediated Signaling 169
## Establishment Of Sister Chromatid Cohesion 169
## Estrogen Biosynthesis 169
## Estrogen Dependent Gene Expression 169
## Estrogen Stimulated Signaling Through Prkcz 169
## Ethanol Oxidation 169
## Eukaryotic Translation Elongation 169
## Eukaryotic Translation Initiation 169
## Export Of Viral Ribonucleoproteins From Nucleus 169
## Extension Of Telomeres 169
## Extracellular Matrix Organization 169
## Extrinsic Pathway Of Fibrin Clot Formation 169
## Factors Involved In Megakaryocyte Development And Platelet Production 169
## Fanconi Anemia Pathway 169
## Fatty Acid Metabolism 169
## Fatty Acids 169
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 169
## Fatty Acyl Coa Biosynthesis 169
## Fbxw7 Mutants And Notch1 In Cancer 169
## Fc Epsilon Receptor Fceri Signaling 169
## Fceri Mediated Ca 2 Mobilization 169
## Fceri Mediated Mapk Activation 169
## Fceri Mediated Nf Kb Activation 169
## Fcgamma Receptor Fcgr Dependent Phagocytosis 169
## Fcgr Activation 169
## Fcgr3a Mediated Il10 Synthesis 169
## Fertilization 169
## Fgfr1 Ligand Binding And Activation 169
## Fgfr1b Ligand Binding And Activation 169
## Fgfr1c Ligand Binding And Activation 169
## Fgfr2 Alternative Splicing 169
## Fgfr2 Ligand Binding And Activation 169
## Fgfr2 Mutant Receptor Activation 169
## Fgfr2b Ligand Binding And Activation 169
## Fgfr2c Ligand Binding And Activation 169
## Fgfr3 Ligand Binding And Activation 169
## Fgfr3b Ligand Binding And Activation 169
## Fgfrl1 Modulation Of Fgfr1 Signaling 169
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 169
## Flt3 Signaling 169
## Flt3 Signaling By Cbl Mutants 169
## Flt3 Signaling In Disease 169
## Flt3 Signaling Through Src Family Kinases 169
## Folding Of Actin By Cct Tric 169
## Formation Of Apoptosome 169
## Formation Of Atp By Chemiosmotic Coupling 169
## Formation Of Fibrin Clot Clotting Cascade 169
## Formation Of Incision Complex In Gg Ner 169
## Formation Of Rna Pol Ii Elongation Complex 169
## Formation Of Senescence Associated Heterochromatin Foci Sahf 169
## Formation Of Tc Ner Pre Incision Complex 169
## Formation Of The Beta Catenin Tcf Transactivating Complex 169
## Formation Of The Cornified Envelope 169
## Formation Of The Early Elongation Complex 169
## Formation Of Tubulin Folding Intermediates By Cct Tric 169
## Formation Of Xylulose 5 Phosphate 169
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 169
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 169
## Free Fatty Acid Receptors 169
## Free Fatty Acids Regulate Insulin Secretion 169
## Frs Mediated Fgfr1 Signaling 169
## Frs Mediated Fgfr2 Signaling 169
## Frs Mediated Fgfr3 Signaling 169
## Frs Mediated Fgfr4 Signaling 169
## Fructose Catabolism 169
## Fructose Metabolism 169
## G Alpha 12 13 Signalling Events 169
## G Alpha I Signalling Events 169
## G Alpha Q Signalling Events 169
## G Alpha S Signalling Events 169
## G Alpha Z Signalling Events 169
## G Beta Gamma Signalling Through Pi3kgamma 169
## G Protein Activation 169
## G Protein Mediated Events 169
## G1 S Dna Damage Checkpoints 169
## G2 M Checkpoints 169
## G2 M Dna Damage Checkpoint 169
## G2 Phase 169
## Gaba B Receptor Activation 169
## Gaba Receptor Activation 169
## Gaba Synthesis Release Reuptake And Degradation 169
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 169
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 169
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 169
## Gap Junction Assembly 169
## Gap Junction Degradation 169
## Gap Junction Trafficking And Regulation 169
## Gdp Fucose Biosynthesis 169
## Gene Silencing By Rna 169
## Generation Of Second Messenger Molecules 169
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 169
## Global Genome Nucleotide Excision Repair Gg Ner 169
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 169
## Glucagon Signaling In Metabolic Regulation 169
## Glucagon Type Ligand Receptors 169
## Glucocorticoid Biosynthesis 169
## Gluconeogenesis 169
## Glucose Metabolism 169
## Glucuronidation 169
## Glutamate And Glutamine Metabolism 169
## Glutamate Neurotransmitter Release Cycle 169
## Glutathione Conjugation 169
## Glutathione Synthesis And Recycling 169
## Glycerophospholipid Biosynthesis 169
## Glycerophospholipid Catabolism 169
## Glycogen Breakdown Glycogenolysis 169
## Glycogen Metabolism 169
## Glycogen Storage Diseases 169
## Glycogen Synthesis 169
## Glycolysis 169
## Glycosaminoglycan Metabolism 169
## Glycosphingolipid Metabolism 169
## Glyoxylate Metabolism And Glycine Degradation 169
## Golgi Associated Vesicle Biogenesis 169
## Golgi To Er Retrograde Transport 169
## Gpcr Ligand Binding 169
## Grb7 Events In Erbb2 Signaling 169
## Hats Acetylate Histones 169
## Hcmv Early Events 169
## Hcmv Infection 169
## Hcmv Late Events 169
## Hdacs Deacetylate Histones 169
## Hdms Demethylate Histones 169
## Hdr Through Homologous Recombination Hrr 169
## Hdr Through Mmej Alt Nhej 169
## Hedgehog Ligand Biogenesis 169
## Hedgehog Off State 169
## Hedgehog On State 169
## Heme Biosynthesis 169
## Hemostasis 169
## Heparan Sulfate Heparin Hs Gag Metabolism 169
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 169
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 169
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 169
## Histidine Catabolism 169
## Hiv Elongation Arrest And Recovery 169
## Hiv Infection 169
## Hiv Life Cycle 169
## Hiv Transcription Elongation 169
## Hiv Transcription Initiation 169
## Homologous Dna Pairing And Strand Exchange 169
## Homology Directed Repair 169
## Hormone Ligand Binding Receptors 169
## Host Interactions Of Hiv Factors 169
## Hs Gag Biosynthesis 169
## Hs Gag Degradation 169
## Hsf1 Activation 169
## Hsf1 Dependent Transactivation 169
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 169
## Hur Elavl1 Binds And Stabilizes Mrna 169
## Hyaluronan Biosynthesis And Export 169
## Hyaluronan Metabolism 169
## Hyaluronan Uptake And Degradation 169
## Hydrolysis Of Lpc 169
## Il 6 Type Cytokine Receptor Ligand Interactions 169
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 169
## Infectious Disease 169
## Influenza Infection 169
## Inhibition Of Dna Recombination At Telomere 169
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 169
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 169
## Initial Triggering Of Complement 169
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 169
## Innate Immune System 169
## Inositol Phosphate Metabolism 169
## Insulin Processing 169
## Insulin Receptor Recycling 169
## Insulin Receptor Signalling Cascade 169
## Integration Of Energy Metabolism 169
## Integration Of Provirus 169
## Integrin Cell Surface Interactions 169
## Interaction Between L1 And Ankyrins 169
## Interaction With Cumulus Cells And The Zona Pellucida 169
## Interactions Of Rev With Host Cellular Proteins 169
## Interactions Of Vpr With Host Cellular Proteins 169
## Interconversion Of Nucleotide Di And Triphosphates 169
## Interferon Alpha Beta Signaling 169
## Interferon Gamma Signaling 169
## Interferon Signaling 169
## Interleukin 36 Pathway 169
## Intestinal Absorption 169
## Intra Golgi And Retrograde Golgi To Er Traffic 169
## Intra Golgi Traffic 169
## Intracellular Signaling By Second Messengers 169
## Intraflagellar Transport 169
## Inwardly Rectifying K Channels 169
## Ion Channel Transport 169
## Ion Homeostasis 169
## Ion Transport By P Type Atpases 169
## Ionotropic Activity Of Kainate Receptors 169
## Irak2 Mediated Activation Of Tak1 Complex 169
## Ire1alpha Activates Chaperones 169
## Irf3 Mediated Activation Of Type 1 Ifn 169
## Iron Uptake And Transport 169
## Irs Activation 169
## Irs Mediated Signalling 169
## Josephin Domain Dubs 169
## Keratan Sulfate Biosynthesis 169
## Keratan Sulfate Degradation 169
## Keratan Sulfate Keratin Metabolism 169
## Keratinization 169
## Ketone Body Metabolism 169
## Kinesins 169
## Ksrp Khsrp Binds And Destabilizes Mrna 169
## L1cam Interactions 169
## Lagging Strand Synthesis 169
## Laminin Interactions 169
## Leishmania Infection 169
## Leukotriene Receptors 169
## Lgi Adam Interactions 169
## Ligand Receptor Interactions 169
## Linoleic Acid La Metabolism 169
## Lipid Particle Organization 169
## Lipophagy 169
## Loss Of Function Of Mecp2 In Rett Syndrome 169
## Loss Of Function Of Smad2 3 In Cancer 169
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 169
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 169
## Ltc4 Cysltr Mediated Il4 Production 169
## Lysine Catabolism 169
## Lysosome Vesicle Biogenesis 169
## Lysosphingolipid And Lpa Receptors 169
## M Phase 169
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 169
## Mapk Family Signaling Cascades 169
## Mapk6 Mapk4 Signaling 169
## Maturation Of Nucleoprotein 169
## Maturation Of Protein 3a 169
## Maturation Of Sars Cov 1 Spike Protein 169
## Maturation Of Sars Cov 2 Spike Protein 169
## Meiosis 169
## Meiotic Recombination 169
## Meiotic Synapsis 169
## Melanin Biosynthesis 169
## Membrane Trafficking 169
## Met Activates Pi3k Akt Signaling 169
## Met Activates Ptpn11 169
## Met Activates Rap1 And Rac1 169
## Met Activates Ras Signaling 169
## Met Interacts With Tns Proteins 169
## Met Promotes Cell Motility 169
## Met Receptor Activation 169
## Met Receptor Recycling 169
## Metabolic Disorders Of Biological Oxidation Enzymes 169
## Metabolism Of Amine Derived Hormones 169
## Metabolism Of Amino Acids And Derivatives 169
## Metabolism Of Angiotensinogen To Angiotensins 169
## Metabolism Of Carbohydrates 169
## Metabolism Of Cofactors 169
## Metabolism Of Fat Soluble Vitamins 169
## Metabolism Of Folate And Pterines 169
## Metabolism Of Ingested Semet Sec Mesec Into H2se 169
## Metabolism Of Lipids 169
## Metabolism Of Nucleotides 169
## Metabolism Of Polyamines 169
## Metabolism Of Rna 169
## Metabolism Of Steroid Hormones 169
## Metabolism Of Steroids 169
## Metabolism Of Vitamins And Cofactors 169
## Metabolism Of Water Soluble Vitamins And Cofactors 169
## Metal Ion Slc Transporters 169
## Metal Sequestration By Antimicrobial Proteins 169
## Metallothioneins Bind Metals 169
## Methionine Salvage Pathway 169
## Methylation 169
## Mhc Class Ii Antigen Presentation 169
## Microrna Mirna Biogenesis 169
## Mineralocorticoid Biosynthesis 169
## Miro Gtpase Cycle 169
## Miscellaneous Substrates 169
## Miscellaneous Transport And Binding Events 169
## Mismatch Repair 169
## Mitochondrial Biogenesis 169
## Mitochondrial Calcium Ion Transport 169
## Mitochondrial Fatty Acid Beta Oxidation 169
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 169
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 169
## Mitochondrial Iron Sulfur Cluster Biogenesis 169
## Mitochondrial Protein Import 169
## Mitochondrial Translation 169
## Mitochondrial Trna Aminoacylation 169
## Mitochondrial Uncoupling 169
## Mitotic G1 Phase And G1 S Transition 169
## Mitotic G2 G2 M Phases 169
## Mitotic Metaphase And Anaphase 169
## Mitotic Prometaphase 169
## Mitotic Prophase 169
## Mitotic Spindle Checkpoint 169
## Mitotic Telophase Cytokinesis 169
## Molecules Associated With Elastic Fibres 169
## Molybdenum Cofactor Biosynthesis 169
## Mrna Capping 169
## Mrna Decay By 3 To 5 Exoribonuclease 169
## Mrna Decay By 5 To 3 Exoribonuclease 169
## Mrna Editing 169
## Mrna Editing C To U Conversion 169
## Mrna Splicing 169
## Mrna Splicing Minor Pathway 169
## Mtor Signalling 169
## Mtorc1 Mediated Signalling 169
## Mucopolysaccharidoses 169
## Multifunctional Anion Exchangers 169
## Muscarinic Acetylcholine Receptors 169
## Muscle Contraction 169
## Myoclonic Epilepsy Of Lafora 169
## N Glycan Antennae Elongation 169
## N Glycan Antennae Elongation In The Medial Trans Golgi 169
## N Glycan Trimming And Elongation In The Cis Golgi 169
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 169
## Na Cl Dependent Neurotransmitter Transporters 169
## Ncam Signaling For Neurite Out Growth 169
## Ncam1 Interactions 169
## Nectin Necl Trans Heterodimerization 169
## Neddylation 169
## Nef And Signal Transduction 169
## Nef Mediated Cd4 Down Regulation 169
## Nef Mediated Cd8 Down Regulation 169
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 169
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 169
## Negative Epigenetic Regulation Of Rrna Expression 169
## Negative Feedback Regulation Of Mapk Pathway 169
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 169
## Negative Regulation Of Flt3 169
## Negative Regulation Of Mapk Pathway 169
## Negative Regulation Of Met Activity 169
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 169
## Negative Regulation Of Notch4 Signaling 169
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 169
## Nephrin Family Interactions 169
## Nervous System Development 169
## Neurexins And Neuroligins 169
## Neurofascin Interactions 169
## Neuronal System 169
## Neurotoxicity Of Clostridium Toxins 169
## Neurotransmitter Clearance 169
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 169
## Neurotransmitter Release Cycle 169
## Neutrophil Degranulation 169
## Ngf Independant Trka Activation 169
## Nitric Oxide Stimulates Guanylate Cyclase 169
## Non Integrin Membrane Ecm Interactions 169
## Noncanonical Activation Of Notch3 169
## Nonhomologous End Joining Nhej 169
## Nonsense Mediated Decay Nmd 169
## Norepinephrine Neurotransmitter Release Cycle 169
## Notch Hlh Transcription Pathway 169
## Notch1 Intracellular Domain Regulates Transcription 169
## Notch2 Activation And Transmission Of Signal To The Nucleus 169
## Notch4 Activation And Transmission Of Signal To The Nucleus 169
## Notch4 Intracellular Domain Regulates Transcription 169
## Nr1h2 And Nr1h3 Mediated Signaling 169
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 169
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 169
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 169
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 169
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 169
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 169
## Nrage Signals Death Through Jnk 169
## Nrcam Interactions 169
## Ns1 Mediated Effects On Host Pathways 169
## Ntrk2 Activates Rac1 169
## Nuclear Envelope Breakdown 169
## Nuclear Envelope Ne Reassembly 169
## Nuclear Events Kinase And Transcription Factor Activation 169
## Nuclear Import Of Rev Protein 169
## Nuclear Receptor Transcription Pathway 169
## Nucleobase Biosynthesis 169
## Nucleobase Catabolism 169
## Nucleotide Excision Repair 169
## Nucleotide Like Purinergic Receptors 169
## O Glycosylation Of Tsr Domain Containing Proteins 169
## O Linked Glycosylation 169
## O Linked Glycosylation Of Mucins 169
## Olfactory Signaling Pathway 169
## Oncogenic Mapk Signaling 169
## Opioid Signalling 169
## Opsins 169
## Orc1 Removal From Chromatin 169
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 169
## Organelle Biogenesis And Maintenance 169
## Organic Anion Transport 169
## Organic Anion Transporters 169
## Organic Cation Anion Zwitterion Transport 169
## Organic Cation Transport 169
## Oxidative Stress Induced Senescence 169
## P2y Receptors 169
## P75ntr Negatively Regulates Cell Cycle Via Sc1 169
## Parasite Infection 169
## Passive Transport By Aquaporins 169
## Pcna Dependent Long Patch Base Excision Repair 169
## Pcp Ce Pathway 169
## Pentose Phosphate Pathway 169
## Peptide Hormone Biosynthesis 169
## Peptide Hormone Metabolism 169
## Peroxisomal Lipid Metabolism 169
## Peroxisomal Protein Import 169
## Phase 0 Rapid Depolarisation 169
## Phase 1 Inactivation Of Fast Na Channels 169
## Phase 2 Plateau Phase 169
## Phase 3 Rapid Repolarisation 169
## Phase I Functionalization Of Compounds 169
## Phase Ii Conjugation Of Compounds 169
## Phenylalanine And Tyrosine Metabolism 169
## Phenylalanine Metabolism 169
## Phosphate Bond Hydrolysis By Ntpdase Proteins 169
## Phosphate Bond Hydrolysis By Nudt Proteins 169
## Phospholipase C Mediated Cascade Fgfr2 169
## Phospholipase C Mediated Cascade Fgfr4 169
## Phospholipid Metabolism 169
## Physiological Factors 169
## Pi 3k Cascade Fgfr1 169
## Pi 3k Cascade Fgfr2 169
## Pi 3k Cascade Fgfr3 169
## Pi 3k Cascade Fgfr4 169
## Pi Metabolism 169
## Pi3k Akt Activation 169
## Pi3k Events In Erbb4 Signaling 169
## Pi5p Regulates Tp53 Acetylation 169
## Piwi Interacting Rna Pirna Biogenesis 169
## Pka Activation In Glucagon Signalling 169
## Pka Mediated Phosphorylation Of Key Metabolic Factors 169
## Pkmts Methylate Histone Lysines 169
## Plasma Lipoprotein Assembly Remodeling And Clearance 169
## Platelet Activation Signaling And Aggregation 169
## Platelet Calcium Homeostasis 169
## Platelet Homeostasis 169
## Platelet Sensitization By Ldl 169
## Polb Dependent Long Patch Base Excision Repair 169
## Polo Like Kinase Mediated Events 169
## Polymerase Switching 169
## Polymerase Switching On The C Strand Of The Telomere 169
## Positive Epigenetic Regulation Of Rrna Expression 169
## Post Chaperonin Tubulin Folding Pathway 169
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 169
## Postmitotic Nuclear Pore Complex Npc Reformation 169
## Potassium Channels 169
## Potential Therapeutics For Sars 169
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 169
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 169
## Prc2 Methylates Histones And Dna 169
## Pre Notch Expression And Processing 169
## Pre Notch Processing In Golgi 169
## Pre Notch Processing In The Endoplasmic Reticulum 169
## Pregnenolone Biosynthesis 169
## Presynaptic Depolarization And Calcium Channel Opening 169
## Presynaptic Function Of Kainate Receptors 169
## Prevention Of Phagosomal Lysosomal Fusion 169
## Processing And Activation Of Sumo 169
## Processing Of Capped Intron Containing Pre Mrna 169
## Processing Of Capped Intronless Pre Mrna 169
## Processing Of Dna Double Strand Break Ends 169
## Processing Of Intronless Pre Mrnas 169
## Processing Of Smdt1 169
## Processive Synthesis On The C Strand Of The Telomere 169
## Processive Synthesis On The Lagging Strand 169
## Programmed Cell Death 169
## Prolactin Receptor Signaling 169
## Prolonged Erk Activation Events 169
## Propionyl Coa Catabolism 169
## Prostacyclin Signalling Through Prostacyclin Receptor 169
## Prostanoid Ligand Receptors 169
## Protein Folding 169
## Protein Localization 169
## Protein Methylation 169
## Protein Protein Interactions At Synapses 169
## Protein Ubiquitination 169
## Proton Coupled Monocarboxylate Transport 169
## Pten Regulation 169
## Ptk6 Expression 169
## Ptk6 Regulates Proteins Involved In Rna Processing 169
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 169
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 169
## Purine Catabolism 169
## Purine Ribonucleoside Monophosphate Biosynthesis 169
## Pyrimidine Catabolism 169
## Pyrimidine Salvage 169
## Pyruvate Metabolism 169
## Pyruvate Metabolism And Citric Acid Tca Cycle 169
## Ra Biosynthesis Pathway 169
## Rab Gefs Exchange Gtp For Gdp On Rabs 169
## Rab Geranylgeranylation 169
## Rab Regulation Of Trafficking 169
## Rac1 Gtpase Cycle 169
## Rac2 Gtpase Cycle 169
## Rac3 Gtpase Cycle 169
## Rap1 Signalling 169
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 169
## Ras Processing 169
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 169
## Reactions Specific To The Complex N Glycan Synthesis Pathway 169
## Receptor Type Tyrosine Protein Phosphatases 169
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 169
## Recognition Of Dna Damage By Pcna Containing Replication Complex 169
## Recruitment Of Mitotic Centrosome Proteins And Complexes 169
## Recruitment Of Numa To Mitotic Centrosomes 169
## Recycling Of Bile Acids And Salts 169
## Recycling Of Eif2 Gdp 169
## Recycling Pathway Of L1 169
## Reduction Of Cytosolic Ca Levels 169
## Reelin Signalling Pathway 169
## Regulated Proteolysis Of P75ntr 169
## Regulation Of Bach1 Activity 169
## Regulation Of Beta Cell Development 169
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 169
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 169
## Regulation Of Expression Of Slits And Robos 169
## Regulation Of Fzd By Ubiquitination 169
## Regulation Of Gene Expression By Hypoxia Inducible Factor 169
## Regulation Of Gene Expression In Beta Cells 169
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 169
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 169
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 169
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 169
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 169
## Regulation Of Hmox1 Expression And Activity 169
## Regulation Of Hsf1 Mediated Heat Shock Response 169
## Regulation Of Innate Immune Responses To Cytosolic Dna 169
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 169
## Regulation Of Insulin Secretion 169
## Regulation Of Lipid Metabolism By Pparalpha 169
## Regulation Of Localization Of Foxo Transcription Factors 169
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 169
## Regulation Of Plk1 Activity At G2 M Transition 169
## Regulation Of Pten Gene Transcription 169
## Regulation Of Pten Localization 169
## Regulation Of Pten Mrna Translation 169
## Regulation Of Pten Stability And Activity 169
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 169
## Regulation Of Ras By Gaps 169
## Regulation Of Runx2 Expression And Activity 169
## Regulation Of Runx3 Expression And Activity 169
## Regulation Of Signaling By Cbl 169
## Regulation Of Signaling By Nodal 169
## Regulation Of Tp53 Activity 169
## Regulation Of Tp53 Activity Through Acetylation 169
## Regulation Of Tp53 Activity Through Association With Co Factors 169
## Regulation Of Tp53 Activity Through Phosphorylation 169
## Relaxin Receptors 169
## Release Of Apoptotic Factors From The Mitochondria 169
## Release Of Hh Np From The Secreting Cell 169
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 169
## Reproduction 169
## Resolution Of Abasic Sites Ap Sites 169
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 169
## Resolution Of Sister Chromatid Cohesion 169
## Respiratory Electron Transport 169
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 169
## Response Of Eif2ak1 Hri To Heme Deficiency 169
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 169
## Response Of Mtb To Phagocytosis 169
## Response To Elevated Platelet Cytosolic Ca2 169
## Response To Metal Ions 169
## Ret Signaling 169
## Retinoid Cycle Disease Events 169
## Retrograde Neurotrophin Signalling 169
## Retrograde Transport At The Trans Golgi Network 169
## Reversible Hydration Of Carbon Dioxide 169
## Rho Gtpase Cycle 169
## Rho Gtpase Effectors 169
## Rho Gtpases Activate Cit 169
## Rho Gtpases Activate Formins 169
## Rho Gtpases Activate Pkns 169
## Rho Gtpases Activate Rhotekin And Rhophilins 169
## Rho Gtpases Activate Rocks 169
## Rhoa Gtpase Cycle 169
## Rhob Gtpase Cycle 169
## Rhobtb Gtpase Cycle 169
## Rhobtb1 Gtpase Cycle 169
## Rhobtb2 Gtpase Cycle 169
## Rhobtb3 Atpase Cycle 169
## Rhoc Gtpase Cycle 169
## Rhot1 Gtpase Cycle 169
## Rmts Methylate Histone Arginines 169
## Rna Polymerase I Promoter Escape 169
## Rna Polymerase I Transcription 169
## Rna Polymerase I Transcription Initiation 169
## Rna Polymerase I Transcription Termination 169
## Rna Polymerase Ii Transcribes Snrna Genes 169
## Rna Polymerase Ii Transcription Termination 169
## Rna Polymerase Iii Chain Elongation 169
## Rna Polymerase Iii Transcription 169
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 169
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 169
## Rna Polymerase Iii Transcription Termination 169
## Rnd1 Gtpase Cycle 169
## Rnd2 Gtpase Cycle 169
## Rnd3 Gtpase Cycle 169
## Robo Receptors Bind Akap5 169
## Role Of Abl In Robo Slit Signaling 169
## Role Of Lat2 Ntal Lab On Calcium Mobilization 169
## Role Of Phospholipids In Phagocytosis 169
## Role Of Second Messengers In Netrin 1 Signaling 169
## Rora Activates Gene Expression 169
## Rrna Modification In The Mitochondrion 169
## Rrna Modification In The Nucleus And Cytosol 169
## Rrna Processing 169
## Rrna Processing In The Mitochondrion 169
## Rsk Activation 169
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 169
## Runx1 Regulates Estrogen Receptor Mediated Transcription 169
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 169
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 169
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 169
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 169
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 169
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 169
## Runx3 Regulates Bcl2l11 Bim Transcription 169
## Runx3 Regulates Cdkn1a Transcription 169
## Runx3 Regulates Immune Response And Cell Migration 169
## Runx3 Regulates Notch Signaling 169
## Runx3 Regulates P14 Arf 169
## Runx3 Regulates Yap1 Mediated Transcription 169
## S Phase 169
## Sars Cov 1 Genome Replication And Transcription 169
## Sars Cov 1 Infection 169
## Sars Cov 2 Infection 169
## Sars Cov Infections 169
## Scavenging By Class F Receptors 169
## Scavenging Of Heme From Plasma 169
## Scf Skp2 Mediated Degradation Of P27 P21 169
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 169
## Selective Autophagy 169
## Selenoamino Acid Metabolism 169
## Sema3a Pak Dependent Axon Repulsion 169
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 169
## Sema4d In Semaphorin Signaling 169
## Sema4d Induced Cell Migration And Growth Cone Collapse 169
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 169
## Semaphorin Interactions 169
## Senescence Associated Secretory Phenotype Sasp 169
## Sensory Perception 169
## Sensory Processing Of Sound 169
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 169
## Separation Of Sister Chromatids 169
## Serine Biosynthesis 169
## Serotonin And Melatonin Biosynthesis 169
## Serotonin Neurotransmitter Release Cycle 169
## Serotonin Receptors 169
## Shc Mediated Cascade Fgfr1 169
## Shc Mediated Cascade Fgfr3 169
## Shc Mediated Cascade Fgfr4 169
## Shc Related Events Triggered By Igf1r 169
## Shc1 Events In Erbb4 Signaling 169
## Signal Attenuation 169
## Signaling By Activin 169
## Signaling By Bmp 169
## Signaling By Braf And Raf Fusions 169
## Signaling By Ctnnb1 Phospho Site Mutants 169
## Signaling By Erythropoietin 169
## Signaling By Fgfr 169
## Signaling By Fgfr In Disease 169
## Signaling By Fgfr1 169
## Signaling By Fgfr2 169
## Signaling By Fgfr2 Iiia Tm 169
## Signaling By Fgfr2 In Disease 169
## Signaling By Fgfr3 169
## Signaling By Fgfr3 Fusions In Cancer 169
## Signaling By Fgfr4 169
## Signaling By Fgfr4 In Disease 169
## Signaling By Flt3 Fusion Proteins 169
## Signaling By Flt3 Itd And Tkd Mutants 169
## Signaling By Gpcr 169
## Signaling By Hedgehog 169
## Signaling By Insulin Receptor 169
## Signaling By Lrp5 Mutants 169
## Signaling By Mapk Mutants 169
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 169
## Signaling By Met 169
## Signaling By Mras Complex Mutants 169
## Signaling By Mst1 169
## Signaling By Nodal 169
## Signaling By Notch 169
## Signaling By Notch1 169
## Signaling By Notch1 Hd Domain Mutants In Cancer 169
## Signaling By Notch1 Pest Domain Mutants In Cancer 169
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 169
## Signaling By Notch4 169
## Signaling By Ntrks 169
## Signaling By Nuclear Receptors 169
## Signaling By Receptor Tyrosine Kinases 169
## Signaling By Retinoic Acid 169
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 169
## Signaling By Rnf43 Mutants 169
## Signaling By Robo Receptors 169
## Signaling By Tgf Beta Receptor Complex 169
## Signaling By Tgf Beta Receptor Complex In Cancer 169
## Signaling By Tgfb Family Members 169
## Signaling By The B Cell Receptor Bcr 169
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 169
## Signaling By Vegf 169
## Signaling By Wnt 169
## Signaling By Wnt In Cancer 169
## Signalling To P38 Via Rit And Rin 169
## Sirt1 Negatively Regulates Rrna Expression 169
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 169
## Slc Mediated Transmembrane Transport 169
## Slc Transporter Disorders 169
## Small Interfering Rna Sirna Biogenesis 169
## Smooth Muscle Contraction 169
## Snrnp Assembly 169
## Sodium Calcium Exchangers 169
## Sodium Coupled Phosphate Cotransporters 169
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 169
## Sodium Proton Exchangers 169
## Sos Mediated Signalling 169
## Sperm Motility And Taxes 169
## Sphingolipid De Novo Biosynthesis 169
## Sphingolipid Metabolism 169
## Srp Dependent Cotranslational Protein Targeting To Membrane 169
## Stabilization Of P53 169
## Stat5 Activation 169
## Stat5 Activation Downstream Of Flt3 Itd Mutants 169
## Stimuli Sensing Channels 169
## Striated Muscle Contraction 169
## Sulfide Oxidation To Sulfate 169
## Sulfur Amino Acid Metabolism 169
## Sumo Is Conjugated To E1 Uba2 Sae1 169
## Sumo Is Proteolytically Processed 169
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 169
## Sumoylation 169
## Sumoylation Of Chromatin Organization Proteins 169
## Sumoylation Of Dna Damage Response And Repair Proteins 169
## Sumoylation Of Dna Replication Proteins 169
## Sumoylation Of Intracellular Receptors 169
## Sumoylation Of Rna Binding Proteins 169
## Sumoylation Of Sumoylation Proteins 169
## Sumoylation Of Transcription Cofactors 169
## Sumoylation Of Transcription Factors 169
## Sumoylation Of Ubiquitinylation Proteins 169
## Suppression Of Apoptosis 169
## Suppression Of Phagosomal Maturation 169
## Surfactant Metabolism 169
## Switching Of Origins To A Post Replicative State 169
## Synaptic Adhesion Like Molecules 169
## Syndecan Interactions 169
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 169
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 169
## Synthesis Of 5 Eicosatetraenoic Acids 169
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 169
## Synthesis Of Bile Acids And Bile Salts 169
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 169
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 169
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 169
## Synthesis Of Diphthamide Eef2 169
## Synthesis Of Dolichyl Phosphate 169
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 169
## Synthesis Of Gdp Mannose 169
## Synthesis Of Glycosylphosphatidylinositol Gpi 169
## Synthesis Of Ip2 Ip And Ins In The Cytosol 169
## Synthesis Of Ip3 And Ip4 In The Cytosol 169
## Synthesis Of Ketone Bodies 169
## Synthesis Of Leukotrienes Lt And Eoxins Ex 169
## Synthesis Of Lipoxins Lx 169
## Synthesis Of Pa 169
## Synthesis Of Pc 169
## Synthesis Of Pe 169
## Synthesis Of Pg 169
## Synthesis Of Pi 169
## Synthesis Of Pips At The Early Endosome Membrane 169
## Synthesis Of Pips At The Er Membrane 169
## Synthesis Of Pips At The Golgi Membrane 169
## Synthesis Of Pips At The Late Endosome Membrane 169
## Synthesis Of Pips At The Plasma Membrane 169
## Synthesis Of Pyrophosphates In The Cytosol 169
## Synthesis Of Substrates In N Glycan Biosythesis 169
## Synthesis Of Udp N Acetyl Glucosamine 169
## Synthesis Of Very Long Chain Fatty Acyl Coas 169
## Synthesis Of Wybutosine At G37 Of Trna Phe 169
## Synthesis Secretion And Deacylation Of Ghrelin 169
## Tachykinin Receptors Bind Tachykinins 169
## Tbc Rabgaps 169
## Tcf Dependent Signaling In Response To Wnt 169
## Tcr Signaling 169
## Telomere C Strand Lagging Strand Synthesis 169
## Telomere C Strand Synthesis Initiation 169
## Telomere Maintenance 169
## Terminal Pathway Of Complement 169
## Termination Of Translesion Dna Synthesis 169
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 169
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 169
## Tgf Beta Receptor Signaling Activates Smads 169
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 169
## The Activation Of Arylsulfatases 169
## The Canonical Retinoid Cycle In Rods Twilight Vision 169
## The Citric Acid Tca Cycle And Respiratory Electron Transport 169
## The Fatty Acid Cycling Model 169
## The Phototransduction Cascade 169
## The Retinoid Cycle In Cones Daylight Vision 169
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 169
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 169
## Thromboxane Signalling Through Tp Receptor 169
## Thyroxine Biosynthesis 169
## Tie2 Signaling 169
## Tight Junction Interactions 169
## Toxicity Of Botulinum Toxin Type D Botd 169
## Tp53 Regulates Metabolic Genes 169
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 169
## Tp53 Regulates Transcription Of Cell Cycle Genes 169
## Tp53 Regulates Transcription Of Death Receptors And Ligands 169
## Tp53 Regulates Transcription Of Dna Repair Genes 169
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 169
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 169
## Trafficking Of Ampa Receptors 169
## Trafficking Of Glur2 Containing Ampa Receptors 169
## Trafficking Of Myristoylated Proteins To The Cilium 169
## Trail Signaling 169
## Trans Golgi Network Vesicle Budding 169
## Transcription Coupled Nucleotide Excision Repair Tc Ner 169
## Transcription Of The Hiv Genome 169
## Transcriptional Activation Of Mitochondrial Biogenesis 169
## Transcriptional Regulation By E2f6 169
## Transcriptional Regulation By Mecp2 169
## Transcriptional Regulation By Runx1 169
## Transcriptional Regulation By Runx2 169
## Transcriptional Regulation By Runx3 169
## Transcriptional Regulation By Small Rnas 169
## Transcriptional Regulation By Tp53 169
## Transcriptional Regulation By Ventx 169
## Transcriptional Regulation Of Granulopoiesis 169
## Transcriptional Regulation Of Testis Differentiation 169
## Transcriptional Regulation Of White Adipocyte Differentiation 169
## Transferrin Endocytosis And Recycling 169
## Translation 169
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 169
## Translation Of Sars Cov 1 Structural Proteins 169
## Translation Of Sars Cov 2 Structural Proteins 169
## Translesion Synthesis By Polh 169
## Translesion Synthesis By Polk 169
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 169
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 169
## Transmission Across Chemical Synapses 169
## Transport And Synthesis Of Paps 169
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 169
## Transport Of Connexons To The Plasma Membrane 169
## Transport Of Fatty Acids 169
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 169
## Transport Of Mature Mrnas Derived From Intronless Transcripts 169
## Transport Of Mature Transcript To Cytoplasm 169
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 169
## Transport Of Nucleotide Sugars 169
## Transport Of Organic Anions 169
## Transport Of Small Molecules 169
## Transport Of The Slbp Dependant Mature Mrna 169
## Transport Of Vitamins Nucleosides And Related Molecules 169
## Transport To The Golgi And Subsequent Modification 169
## Triglyceride Biosynthesis 169
## Triglyceride Metabolism 169
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 169
## Trna Aminoacylation 169
## Trna Modification In The Mitochondrion 169
## Trna Modification In The Nucleus And Cytosol 169
## Trna Processing 169
## Trna Processing In The Mitochondrion 169
## Trna Processing In The Nucleus 169
## Trp Channels 169
## Tryptophan Catabolism 169
## Type I Hemidesmosome Assembly 169
## Tyrosine Catabolism 169
## Tysnd1 Cleaves Peroxisomal Proteins 169
## Ub Specific Processing Proteases 169
## Ubiquinol Biosynthesis 169
## Uch Proteinases 169
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 169
## Unfolded Protein Response Upr 169
## Unwinding Of Dna 169
## Uptake And Actions Of Bacterial Toxins 169
## Uptake And Function Of Anthrax Toxins 169
## Uptake And Function Of Diphtheria Toxin 169
## Urea Cycle 169
## Vasopressin Like Receptors 169
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 169
## Vegf Ligand Receptor Interactions 169
## Vesicle Mediated Transport 169
## Viral Messenger Rna Synthesis 169
## Visual Phototransduction 169
## Vitamin B1 Thiamin Metabolism 169
## Vitamin B2 Riboflavin Metabolism 169
## Vitamin B5 Pantothenate Metabolism 169
## Vitamin C Ascorbate Metabolism 169
## Vitamin D Calciferol Metabolism 169
## Vitamins 169
## Vldl Assembly 169
## Vldl Clearance 169
## Voltage Gated Potassium Channels 169
## Vxpx Cargo Targeting To Cilium 169
## Wax And Plasmalogen Biosynthesis 169
## Wnt Mediated Activation Of Dvl 169
## Xenobiotics 169
## Zinc Efflux And Compartmentalization By The Slc30 Family 169
## Zinc Influx Into Cells By The Slc39 Gene Family 169
## Zinc Transporters 169
## geneset
## Interleukin 10 Signaling 46
## Chemokine Receptors Bind Chemokines 58
## Interleukin 4 And Interleukin 13 Signaling 111
## Irak4 Deficiency Tlr2 4 18
## Fibronectin Matrix Formation 6
## Diseases Of Immune System 31
## Regulation Of Tlr By Endogenous Ligand 21
## Interleukin 18 Signaling 8
## Cd163 Mediating An Anti Inflammatory Response 9
## Interleukin 1 Processing 9
## Purinergic Signaling In Leishmaniasis Infection 26
## P75ntr Signals Via Nf Kb 16
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 22
## Interleukin 6 Signaling 11
## Tnfs Bind Their Physiological Receptors 29
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 17
## Nod1 2 Signaling Pathway 36
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 56
## Cd28 Dependent Vav1 Pathway 12
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 18
## Killing Mechanisms 12
## P75ntr Recruits Signalling Complexes 13
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 7
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 32
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 13
## Pyroptosis 27
## Activation Of C3 And C5 8
## Runx2 Regulates Genes Involved In Cell Migration 8
## Ctla4 Inhibitory Signaling 21
## Inflammasomes 21
## Egfr Interacts With Phospholipase C Gamma 9
## Egfr Transactivation By Gastrin 9
## Interleukin 9 Signaling 9
## Trif Mediated Programmed Cell Death 9
## Activated Tak1 Mediates P38 Mapk Activation 23
## Caspase Activation Via Death Receptors In The Presence Of Ligand 16
## The Nlrp3 Inflammasome 16
## Toll Like Receptor Tlr1 Tlr2 Cascade 103
## Ovarian Tumor Domain Proteases 38
## Activation Of The Ap 1 Family Of Transcription Factors 10
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 24
## Gab1 Signalosome 17
## Interleukin 21 Signaling 10
## Mapk3 Erk1 Activation 10
## Rip Mediated Nfkb Activation Via Zbp1 17
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 10
## Activation Of Matrix Metalloproteinases 33
## Apoptotic Cleavage Of Cell Adhesion Proteins 11
## Interleukin 27 Signaling 11
## Receptor Mediated Mitophagy 11
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 26
## Toll Like Receptor 9 Tlr9 Cascade 94
## Gp1b Ix V Activation Signalling 12
## Interleukin 35 Signalling 12
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 12
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 12
## Signaling By Kit In Disease 20
## Alternative Complement Activation 5
## Fasl Cd95l Signaling 5
## G2 M Dna Replication Checkpoint 5
## Galactose Catabolism 5
## Hdl Clearance 5
## Mecp2 Regulates Transcription Factors 5
## Nostrin Mediated Enos Trafficking 5
## Runx1 Regulates Expression Of Components Of Tight Junctions 5
## Runx2 Regulates Chondrocyte Maturation 5
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 5
## Apoptosis Induced Dna Fragmentation 13
## Erbb2 Activates Ptk6 Signaling 13
## Nf Kb Is Activated And Signals Survival 13
## Tnfr1 Induced Proapoptotic Signaling 13
## Trafficking And Processing Of Endosomal Tlr 13
## Zbp1 Dai Mediated Induction Of Type I Ifns 21
## Dcc Mediated Attractive Signaling 14
## Early Phase Of Hiv Life Cycle 14
## Interleukin 15 Signaling 14
## Shc1 Events In Egfr Signaling 14
## Toll Like Receptor Cascades 155
## Activated Ntrk3 Signals Through Pi3k 6
## Activation Of Caspases Through Apoptosome Mediated Cleavage 6
## Biosynthesis Of Epa Derived Spms 6
## Clec7a Inflammasome Pathway 6
## Nade Modulates Death Signalling 6
## Phosphorylation Of Emi1 6
## Protein Repair 6
## Ptk6 Promotes Hif1a Stabilization 6
## Ptk6 Regulates Cell Cycle 6
## Scavenging By Class B Receptors 6
## Sensing Of Dna Double Strand Breaks 6
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 6
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 6
## Tnfr1 Mediated Ceramide Production 6
## Ikk Complex Recruitment Mediated By Rip1 23
## Constitutive Signaling By Egfrviii 15
## Erbb2 Regulates Cell Motility 15
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 15
## P130cas Linkage To Mapk Signaling For Integrins 15
## Heme Signaling 48
## Regulated Necrosis 56
## Activated Ntrk2 Signals Through Fyn 7
## Activation Of Nima Kinases Nek9 Nek6 Nek7 7
## Creb Phosphorylation 7
## Defective Factor Viii Causes Hemophilia A 7
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 7
## Ikba Variant Leads To Eda Id 7
## Interleukin 6 Family Signaling 24
## Modulation By Mtb Of Host Immune System 7
## Myd88 Independent Tlr4 Cascade 97
## Traf6 Mediated Nf Kb Activation 24
## Cd28 Co Stimulation 33
## Grb2 Events In Erbb2 Signaling 16
## Pi3k Events In Erbb2 Signaling 16
## Signal Regulatory Protein Family Interactions 16
## Signaling By Erbb2 Ecd Mutants 16
## Sumoylation Of Dna Methylation Proteins 16
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 16
## Beta Defensins 42
## Extra Nuclear Estrogen Signaling 75
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 17
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 8
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 8
## Hdl Assembly 8
## Inactivation Of Cdc42 And Rac1 8
## Lectin Pathway Of Complement Activation 8
## Mecp2 Regulates Transcription Of Neuronal Ligands 8
## Netrin Mediated Repulsion Signals 8
## Runx3 Regulates Wnt Signaling 8
## Smac Xiap Regulated Apoptotic Response 8
## Interleukin 2 Family Signaling 44
## Signaling By Cytosolic Fgfr1 Fusion Mutants 18
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 9
## Dap12 Interactions 45
## Downregulation Of Erbb4 Signaling 9
## E2f Enabled Inhibition Of Pre Replication Complex Formation 9
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 9
## Interleukin 23 Signaling 9
## Mapk1 Erk2 Activation 9
## Oas Antiviral Response 9
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 19
## Interleukin 17 Signaling 71
## Other Semaphorin Interactions 19
## Pd 1 Signaling 28
## Scavenging By Class A Receptors 19
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 19
## Akt Phosphorylates Targets In The Nucleus 10
## Camk Iv Mediated Phosphorylation Of Creb 10
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 10
## Chylomicron Assembly 10
## Chylomicron Remodeling 10
## Dap12 Signaling 29
## Downstream Signal Transduction 29
## Hdl Remodeling 10
## Mastl Facilitates Mitotic Progression 10
## P75ntr Regulates Axonogenesis 10
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 10
## Regulation Of Foxo Transcriptional Activity By Acetylation 10
## Interleukin 1 Family Signaling 140
## Signaling By Pdgfr In Disease 20
## Costimulation By The Cd28 Family 74
## Peptide Ligand Binding Receptors 198
## Tnfr1 Induced Nfkappab Signaling Pathway 30
## Interleukin 37 Signaling 21
## Signal Transduction By L1 21
## Condensation Of Prometaphase Chromosomes 11
## Dermatan Sulfate Biosynthesis 11
## Dscam Interactions 11
## Egfr Downregulation 31
## Endosomal Vacuolar Pathway 11
## Enos Activation 11
## Mapk Targets Nuclear Events Mediated By Map Kinases 31
## Pexophagy 11
## Regulation By C Flip 11
## Rho Gtpases Activate Ktn1 11
## Signaling By Leptin 11
## Sumoylation Of Immune Response Proteins 11
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 11
## Cd28 Dependent Pi3k Akt Signaling 22
## Shc1 Events In Erbb2 Signaling 22
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 12
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 12
## Interleukin 2 Signaling 12
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 12
## Notch2 Intracellular Domain Regulates Transcription 12
## Pecam1 Interactions 12
## Tandem Pore Domain Potassium Channels 12
## Ticam1 Dependent Activation Of Irf3 Irf7 12
## Vldlr Internalisation And Degradation 12
## Raf Independent Mapk1 3 Activation 23
## Defensins 52
## Signaling By Scf Kit 43
## Advanced Glycosylation Endproduct Receptor Signaling 13
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 13
## Cytochrome C Mediated Apoptotic Response 13
## Dissolution Of Fibrin Clot 13
## Growth Hormone Receptor Signaling 24
## Irf3 Mediated Induction Of Type I Ifn 13
## Negative Regulators Of Ddx58 Ifih1 Signaling 34
## P38mapk Events 13
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 13
## Purine Salvage 13
## Runx2 Regulates Osteoblast Differentiation 24
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 13
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 13
## Regulation Of Tnfr1 Signaling 35
## Golgi Cisternae Pericentriolar Stack Reorganization 14
## Inactivation Of Csf3 G Csf Signaling 25
## Irak1 Recruits Ikk Complex 14
## Notch3 Activation And Transmission Of Signal To The Nucleus 25
## Regulation Of Ifng Signaling 14
## Repression Of Wnt Target Genes 14
## Signaling By Egfr In Cancer 25
## Traf3 Dependent Irf Activation Pathway 14
## Interleukin 20 Family Signaling 26
## Signaling By Erbb2 In Cancer 26
## Depolymerisation Of The Nuclear Lamina 15
## Heme Degradation 15
## Interleukin 12 Family Signaling 57
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 15
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 15
## Platelet Adhesion To Exposed Collagen 15
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 15
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 15
## Wnt5a Dependent Internalization Of Fzd4 15
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 15
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 27
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 16
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 16
## Foxo Mediated Transcription Of Cell Death Genes 16
## G0 And Early G1 27
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 38
## Integrin Signaling 27
## Interleukin Receptor Shc Signaling 27
## Nrif Signals Cell Death From The Nucleus 16
## Regulation Of Kit Signaling 16
## Spry Regulation Of Fgf Signaling 16
## Sting Mediated Induction Of Host Immune Responses 16
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 16
## Vegfr2 Mediated Vascular Permeability 27
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 17
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 17
## Downregulation Of Erbb2 Signaling 29
## Foxo Mediated Transcription Of Cell Cycle Genes 17
## Mitophagy 29
## Regulation Of Runx1 Expression And Activity 17
## Ripk1 Mediated Regulated Necrosis 29
## Signaling By Egfr 50
## Signaling By Ntrk3 Trkc 17
## Abc Transporters In Lipid Homeostasis 18
## Crosslinking Of Collagen Fibrils 18
## Diseases Associated With Glycosylation Precursor Biosynthesis 18
## Eph Ephrin Mediated Repulsion Of Cells 51
## Mecp2 Regulates Neuronal Receptors And Channels 18
## Signaling By Csf3 G Csf 30
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 18
## Biosynthesis Of Specialized Proresolving Mediators Spms 19
## Ephrin Signaling 19
## Fgfr1 Mutant Receptor Activation 31
## Initiation Of Nuclear Envelope Ne Reformation 19
## Interleukin 1 Signaling 102
## Ldl Clearance 19
## Nicotinamide Salvaging 19
## Nicotinate Metabolism 31
## Phase 4 Resting Membrane Potential 19
## Plasma Lipoprotein Assembly 19
## Regulation Of Tp53 Activity Through Methylation 19
## Runx2 Regulates Bone Development 31
## Signaling By Interleukins 463
## Tnfr2 Non Canonical Nf Kb Pathway 101
## Transcription Of E2f Targets Under Negative Control By Dream Complex 19
## Vegfr2 Mediated Cell Proliferation 19
## Apoptotic Factor Mediated Response 20
## Cargo Concentration In The Er 33
## Collagen Degradation 64
## G Beta Gamma Signalling Through Cdc42 20
## Listeria Monocytogenes Entry Into Host Cells 20
## Perk Regulates Gene Expression 32
## Phosphorylation Of The Apc C 20
## Pka Mediated Phosphorylation Of Creb 20
## Plasma Lipoprotein Clearance 33
## Signaling By Hippo 20
## Signaling By Ptk6 54
## Signalling To Ras 20
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 32
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 20
## Tnf Signaling 44
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 20
## Branched Chain Amino Acid Catabolism 21
## Chaperone Mediated Autophagy 22
## Complement Cascade 115
## Constitutive Signaling By Aberrant Pi3k In Cancer 78
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 22
## E2f Mediated Regulation Of Dna Replication 22
## Gpvi Mediated Activation Cascade 35
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 22
## P75 Ntr Receptor Mediated Signalling 97
## Pink1 Prkn Mediated Mitophagy 22
## Rho Gtpases Activate Paks 21
## Incretin Synthesis Secretion And Inactivation 23
## Interleukin 12 Signaling 47
## Intrinsic Pathway Of Fibrin Clot Formation 23
## Long Term Potentiation 23
## Nucleotide Salvage 23
## Regulation Of Tp53 Expression And Degradation 37
## Rhoh Gtpase Cycle 37
## Rhoq Gtpase Cycle 59
## Signaling By Notch3 49
## Telomere Extension By Telomerase 23
## Termination Of O Glycan Biosynthesis 23
## Adp Signalling Through P2y Purinoceptor 1 25
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 25
## Apc C Cdc20 Mediated Degradation Of Cyclin B 24
## Apoptotic Cleavage Of Cellular Proteins 38
## Apoptotic Execution Phase 52
## Assembly Of Collagen Fibrils And Other Multimeric Structures 61
## Basigin Interactions 25
## Constitutive Signaling By Akt1 E17k In Cancer 26
## Cyclin A B1 B2 Associated Events During G2 M Transition 25
## Cytosolic Sensors Of Pathogen Associated Dna 63
## Death Receptor Signalling 141
## Dectin 2 Family 26
## Negative Regulation Of The Pi3k Akt Network 113
## Netrin 1 Signaling 50
## Ngf Stimulated Transcription 39
## Notch3 Intracellular Domain Regulates Transcription 25
## Other Interleukin Signaling 24
## Platelet Aggregation Plug Formation 39
## Regulation Of Ifna Signaling 26
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 26
## Rho Gtpases Activate Nadph Oxidases 24
## Signaling By Erbb2 50
## Signaling By Fgfr1 In Disease 38
## Signaling By Ntrk2 Trkb 25
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 38
## Triglyceride Catabolism 24
## Wnt Ligand Biogenesis And Trafficking 26
## Antigen Processing Cross Presentation 106
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 27
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 28
## Epha Mediated Growth Cone Collapse 29
## Ephb Mediated Forward Signaling 42
## G1 S Specific Transcription 29
## Infection With Mycobacterium Tuberculosis 27
## Intrinsic Pathway For Apoptosis 55
## Map2k And Mapk Activation 40
## Metabolism Of Porphyrins 27
## Myogenesis 29
## Negative Regulation Of Fgfr3 Signaling 29
## Rhof Gtpase Cycle 42
## Rhoj Gtpase Cycle 55
## Tp53 Regulates Transcription Of Cell Death Genes 44
## Traf6 Mediated Irf7 Activation 29
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 44
## Activation Of Bh3 Only Proteins 30
## Antimicrobial Peptides 97
## Ca Dependent Events 37
## Cyclin D Associated Events In G1 47
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 81
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 31
## Foxo Mediated Transcription 66
## G Protein Beta Gamma Signalling 32
## Hdr Through Single Strand Annealing Ssa 37
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 48
## Interleukin 7 Signaling 36
## Late Endosomal Microautophagy 34
## Met Activates Ptk2 Signaling 30
## Metalloprotease Dubs 37
## Negative Regulation Of Fgfr1 Signaling 33
## Negative Regulation Of Fgfr2 Signaling 34
## Negative Regulation Of Fgfr4 Signaling 31
## Nuclear Pore Complex Npc Disassembly 36
## Nuclear Signaling By Erbb4 32
## Oncogene Induced Senescence 35
## Pi3k Akt Signaling In Cancer 105
## Plasma Lipoprotein Remodeling 32
## Raf Activation 34
## Regulation Of Mecp2 Expression And Activity 32
## Resolution Of D Loop Structures 34
## Rho Gtpases Activate Iqgaps 32
## Rho Gtpases Activate Wasps And Waves 36
## Rhod Gtpase Cycle 51
## Rhog Gtpase Cycle 74
## Rhou Gtpase Cycle 34
## Rhov Gtpase Cycle 33
## Ros And Rns Production In Phagocytes 36
## Sialic Acid Metabolism 33
## Signal Amplification 33
## Signaling By Erbb4 58
## Signaling By Moderate Kinase Activity Braf Mutants 45
## Signaling By Notch2 33
## Signaling By Pdgf 58
## Signalling To Erks 34
## Thrombin Signalling Through Proteinase Activated Receptors Pars 32
## Transcriptional Regulation Of Pluripotent Stem Cells 31
## 2 Ltr Circle Formation 7
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 26
## Abacavir Metabolism 5
## Abacavir Transmembrane Transport 5
## Abacavir Transport And Metabolism 10
## Abc Family Proteins Mediated Transport 103
## Abc Transporter Disorders 77
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 20
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 23
## Acetylcholine Binding And Downstream Events 14
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 5
## Acetylcholine Neurotransmitter Release Cycle 17
## Acetylcholine Regulates Insulin Secretion 10
## Acrosome Reaction And Sperm Oocyte Membrane Binding 6
## Activated Notch1 Transmits Signal To The Nucleus 31
## Activated Ntrk2 Signals Through Cdk5 6
## Activated Ntrk2 Signals Through Frs2 And Frs3 11
## Activated Ntrk2 Signals Through Pi3k 7
## Activated Ntrk2 Signals Through Ras 9
## Activated Ntrk3 Signals Through Ras 8
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 67
## Activation Of Ampk Downstream Of Nmdars 29
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 122
## Activation Of Atr In Response To Replication Stress 37
## Activation Of Bad And Translocation To Mitochondria 15
## Activation Of Gene Expression By Srebf Srebp 42
## Activation Of Kainate Receptors Upon Glutamate Binding 30
## Activation Of Nmda Receptors And Postsynaptic Events 94
## Activation Of Noxa And Translocation To Mitochondria 5
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 10
## Activation Of Puma And Translocation To Mitochondria 9
## Activation Of Rac1 13
## Activation Of Rac1 Downstream Of Nmdars 7
## Activation Of Ras In B Cells 5
## Activation Of Smo 18
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 60
## Activation Of The Phototransduction Cascade 11
## Activation Of The Pre Replicative Complex 33
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 12
## Activation Of Trka Receptors 6
## Acyl Chain Remodeling Of Cl 6
## Acyl Chain Remodeling Of Dag And Tag 7
## Acyl Chain Remodelling Of Pc 27
## Acyl Chain Remodelling Of Pe 29
## Acyl Chain Remodelling Of Pg 18
## Acyl Chain Remodelling Of Pi 17
## Acyl Chain Remodelling Of Ps 22
## Adaptive Immune System 825
## Adenylate Cyclase Activating Pathway 10
## Adenylate Cyclase Inhibitory Pathway 14
## Adherens Junctions Interactions 33
## Adora2b Mediated Anti Inflammatory Cytokines Production 133
## Adp Signalling Through P2y Purinoceptor 12 22
## Adrenaline Noradrenaline Inhibits Insulin Secretion 28
## Adrenoceptors 9
## Aflatoxin Activation And Detoxification 19
## Aggrephagy 44
## Akt Phosphorylates Targets In The Cytosol 14
## Alpha Defensins 10
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 13
## Alpha Oxidation Of Phytanate 6
## Alpha Protein Kinase 1 Signaling Pathway 11
## Amine Ligand Binding Receptors 42
## Amino Acid Conjugation 9
## Amino Acid Transport Across The Plasma Membrane 33
## Amino Acids Regulate Mtorc1 55
## Ampk Inhibits Chrebp Transcriptional Activation Activity 8
## Amyloid Fiber Formation 110
## Anchoring Fibril Formation 15
## Anchoring Of The Basal Body To The Plasma Membrane 97
## Androgen Biosynthesis 11
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 223
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 86
## Antigen Processing Ubiquitination Proteasome Degradation 308
## Antiviral Mechanism By Ifn Stimulated Genes 82
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 74
## Apc C Mediated Degradation Of Cell Cycle Proteins 88
## Apc Cdc20 Mediated Degradation Of Nek2a 26
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 7
## Apobec3g Mediated Resistance To Hiv 1 Infection 5
## Apoptosis 179
## Aquaporin Mediated Transport 52
## Arachidonate Production From Dag 5
## Arachidonic Acid Metabolism 59
## Arms Mediated Activation 7
## Aryl Hydrocarbon Receptor Signalling 8
## Asparagine N Linked Glycosylation 305
## Aspartate And Asparagine Metabolism 11
## Assembly And Cell Surface Presentation Of Nmda Receptors 44
## Assembly Of Active Lpl And Lipc Lipase Complexes 19
## Assembly Of The Hiv Virion 16
## Assembly Of The Orc Complex At The Origin Of Replication 6
## Assembly Of The Pre Replicative Complex 68
## Association Of Tric Cct With Target Proteins During Biosynthesis 39
## Asymmetric Localization Of Pcp Proteins 64
## Atf6 Atf6 Alpha Activates Chaperone Genes 10
## Atf6 Atf6 Alpha Activates Chaperones 12
## Attachment And Entry 5
## Attachment Of Gpi Anchor To Upar 7
## Attenuation Phase 28
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 55
## Aurka Activation By Tpx2 72
## Autophagy 151
## B Wich Complex Positively Regulates Rrna Expression 91
## Base Excision Repair 91
## Base Excision Repair Ap Site Formation 63
## Bbsome Mediated Cargo Targeting To Cilium 23
## Beta Catenin Independent Wnt Signaling 146
## Beta Catenin Phosphorylation Cascade 17
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 5
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 6
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 5
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 5
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 5
## Beta Oxidation Of Pristanoyl Coa 9
## Beta Oxidation Of Very Long Chain Fatty Acids 11
## Bicarbonate Transporters 10
## Bile Acid And Bile Salt Metabolism 43
## Binding And Uptake Of Ligands By Scavenger Receptors 98
## Biological Oxidations 222
## Biosynthesis Of Maresin Like Spms 6
## Biosynthesis Of Maresins 8
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 78
## Biotin Transport And Metabolism 11
## Blood Group Systems Biosynthesis 21
## Budding And Maturation Of Hiv Virion 28
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 17
## Butyrophilin Btn Family Interactions 12
## C Type Lectin Receptors Clrs 140
## Ca2 Activated K Channels 9
## Ca2 Pathway 62
## Calcineurin Activates Nfat 9
## Calcitonin Like Ligand Receptors 10
## Calnexin Calreticulin Cycle 26
## Carboxyterminal Post Translational Modifications Of Tubulin 46
## Cardiac Conduction 127
## Cargo Recognition For Clathrin Mediated Endocytosis 105
## Cargo Trafficking To The Periciliary Membrane 51
## Carnitine Metabolism 14
## Cation Coupled Chloride Cotransporters 7
## Cd209 Dc Sign Signaling 21
## Cd22 Mediated Bcr Regulation 61
## Cdc42 Gtpase Cycle 159
## Cdc6 Association With The Orc Origin Complex 11
## Cell Cell Communication 130
## Cell Cell Junction Organization 65
## Cell Cycle 693
## Cell Cycle Checkpoints 292
## Cell Cycle Mitotic 561
## Cell Death Signalling Via Nrage Nrif And Nade 76
## Cell Extracellular Matrix Interactions 18
## Cell Junction Organization 92
## Cell Surface Interactions At The Vascular Wall 194
## Cellular Hexose Transport 21
## Cellular Response To Chemical Stress 160
## Cellular Response To Heat Stress 101
## Cellular Response To Hypoxia 75
## Cellular Response To Starvation 157
## Cellular Responses To External Stimuli 706
## Cellular Senescence 198
## Cgmp Effects 16
## Chl1 Interactions 9
## Cholesterol Biosynthesis 25
## Choline Catabolism 6
## Chondroitin Sulfate Biosynthesis 20
## Chondroitin Sulfate Dermatan Sulfate Metabolism 50
## Chrebp Activates Metabolic Gene Expression 8
## Chromatin Modifying Enzymes 274
## Chromosome Maintenance 140
## Chylomicron Clearance 5
## Cilium Assembly 202
## Circadian Clock 70
## Citric Acid Cycle Tca Cycle 22
## Class A 1 Rhodopsin Like Receptors 331
## Class B 2 Secretin Family Receptors 94
## Class C 3 Metabotropic Glutamate Pheromone Receptors 39
## Class I Mhc Mediated Antigen Processing Presentation 377
## Class I Peroxisomal Membrane Protein Import 20
## Clathrin Mediated Endocytosis 145
## Clec7a Dectin 1 Induces Nfat Activation 11
## Clec7a Dectin 1 Signaling 100
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 21
## Coenzyme A Biosynthesis 8
## Cohesin Loading Onto Chromatin 10
## Collagen Biosynthesis And Modifying Enzymes 67
## Collagen Chain Trimerization 44
## Collagen Formation 90
## Common Pathway Of Fibrin Clot Formation 22
## Competing Endogenous Rnas Cernas Regulate Pten Translation 8
## Complex I Biogenesis 57
## Condensation Of Prophase Chromosomes 74
## Conjugation Of Benzoate With Glycine 6
## Constitutive Signaling By Overexpressed Erbb2 11
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 20
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 38
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 33
## Copi Dependent Golgi To Er Retrograde Traffic 100
## Copi Independent Golgi To Er Retrograde Traffic 53
## Copi Mediated Anterograde Transport 102
## Copii Mediated Vesicle Transport 68
## Creatine Metabolism 11
## Creation Of C4 And C2 Activators 71
## Creb3 Factors Activate Genes 9
## Cristae Formation 31
## Crmps In Sema3a Signaling 16
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 8
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 50
## Cs Ds Degradation 14
## Cyclin A Cdk2 Associated Events At S Phase Entry 85
## Cyp2e1 Reactions 11
## Cytochrome P450 Arranged By Substrate Type 66
## Cytokine Signaling In Immune System 719
## Cytoprotection By Hmox1 124
## Cytosolic Iron Sulfur Cluster Assembly 13
## Cytosolic Sulfonation Of Small Molecules 24
## Cytosolic Trna Aminoacylation 24
## Dag And Ip3 Signaling 41
## Darpp 32 Events 24
## Deactivation Of The Beta Catenin Transactivating Complex 42
## Deadenylation Dependent Mrna Decay 56
## Deadenylation Of Mrna 25
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 62
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 8
## Defective B4galt7 Causes Eds Progeroid Type 20
## Defective Cftr Causes Cystic Fibrosis 61
## Defective Chst14 Causes Eds Musculocontractural Type 8
## Defective Chst3 Causes Sedcjd 8
## Defective Chst6 Causes Mcdc1 8
## Defective Chsy1 Causes Tpbs 8
## Defective Csf2rb Causes Smdp5 8
## Defective Ext2 Causes Exostoses 2 14
## Defective F9 Activation 6
## Defective Factor Ix Causes Hemophilia B 9
## Defective Lfng Causes Scdo3 5
## Defective Ripk1 Mediated Regulated Necrosis 5
## Defective St3gal3 Causes Mct12 And Eiee15 8
## Defects In Biotin Btn Metabolism 8
## Defects In Cobalamin B12 Metabolism 14
## Defects In Vitamin And Cofactor Metabolism 22
## Degradation Of Axin 55
## Degradation Of Beta Catenin By The Destruction Complex 85
## Degradation Of Cysteine And Homocysteine 14
## Degradation Of Dvl 57
## Degradation Of Gli1 By The Proteasome 60
## Degradation Of The Extracellular Matrix 140
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 73
## Detoxification Of Reactive Oxygen Species 37
## Deubiquitination 298
## Developmental Biology 1143
## Digestion 23
## Digestion And Absorption 28
## Digestion Of Dietary Carbohydrate 11
## Digestion Of Dietary Lipid 7
## Diseases Associated With Glycosaminoglycan Metabolism 41
## Diseases Associated With N Glycosylation Of Proteins 17
## Diseases Associated With O Glycosylation Of Proteins 68
## Diseases Associated With Surfactant Metabolism 10
## Diseases Of Base Excision Repair 5
## Diseases Of Carbohydrate Metabolism 34
## Diseases Of Dna Repair 12
## Diseases Of Glycosylation 143
## Diseases Of Metabolism 246
## Diseases Of Mismatch Repair Mmr 5
## Diseases Of Mitotic Cell Cycle 38
## Diseases Of Programmed Cell Death 102
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 394
## Disinhibition Of Snare Formation 5
## Disorders Of Transmembrane Transporters 176
## Displacement Of Dna Glycosylase By Apex1 9
## Dna Damage Bypass 48
## Dna Damage Recognition In Gg Ner 38
## Dna Damage Reversal 8
## Dna Damage Telomere Stress Induced Senescence 80
## Dna Double Strand Break Repair 167
## Dna Double Strand Break Response 78
## Dna Methylation 65
## Dna Repair 332
## Dna Replication 128
## Dna Replication Initiation 8
## Dna Replication Pre Initiation 85
## Dna Strand Elongation 32
## Dopamine Neurotransmitter Release Cycle 23
## Dopamine Receptors 5
## Downregulation Of Erbb2 Erbb3 Signaling 13
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 23
## Downregulation Of Tgf Beta Receptor Signaling 26
## Downstream Signaling Events Of B Cell Receptor Bcr 81
## Downstream Signaling Of Activated Fgfr1 31
## Downstream Signaling Of Activated Fgfr2 30
## Downstream Signaling Of Activated Fgfr3 25
## Downstream Signaling Of Activated Fgfr4 27
## Dual Incision In Gg Ner 41
## Dual Incision In Tc Ner 65
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 59
## Ecm Proteoglycans 76
## Effects Of Pip2 Hydrolysis 27
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 29
## Eicosanoid Ligand Binding Receptors 15
## Eicosanoids 12
## Elastic Fibre Formation 45
## Electric Transmission Across Gap Junctions 5
## Elevation Of Cytosolic Ca2 Levels 16
## Endogenous Sterols 28
## Endosomal Sorting Complex Required For Transport Escrt 31
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 29
## Eph Ephrin Signaling 92
## Epigenetic Regulation Of Gene Expression 148
## Er Quality Control Compartment Erqc 21
## Er To Golgi Anterograde Transport 155
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 76
## Erk Mapk Targets 22
## Erks Are Inactivated 13
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 13
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 9
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 12
## Erythropoietin Activates Phospholipase C Gamma Plcg 7
## Erythropoietin Activates Ras 14
## Erythropoietin Activates Stat5 7
## Esr Mediated Signaling 221
## Establishment Of Sister Chromatid Cohesion 11
## Estrogen Biosynthesis 6
## Estrogen Dependent Gene Expression 150
## Estrogen Stimulated Signaling Through Prkcz 6
## Ethanol Oxidation 12
## Eukaryotic Translation Elongation 94
## Eukaryotic Translation Initiation 120
## Export Of Viral Ribonucleoproteins From Nucleus 33
## Extension Of Telomeres 51
## Extracellular Matrix Organization 301
## Extrinsic Pathway Of Fibrin Clot Formation 5
## Factors Involved In Megakaryocyte Development And Platelet Production 170
## Fanconi Anemia Pathway 39
## Fatty Acid Metabolism 177
## Fatty Acids 15
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 8
## Fatty Acyl Coa Biosynthesis 37
## Fbxw7 Mutants And Notch1 In Cancer 5
## Fc Epsilon Receptor Fceri Signaling 186
## Fceri Mediated Ca 2 Mobilization 86
## Fceri Mediated Mapk Activation 87
## Fceri Mediated Nf Kb Activation 136
## Fcgamma Receptor Fcgr Dependent Phagocytosis 143
## Fcgr Activation 69
## Fcgr3a Mediated Il10 Synthesis 95
## Fertilization 26
## Fgfr1 Ligand Binding And Activation 16
## Fgfr1b Ligand Binding And Activation 6
## Fgfr1c Ligand Binding And Activation 12
## Fgfr2 Alternative Splicing 27
## Fgfr2 Ligand Binding And Activation 20
## Fgfr2 Mutant Receptor Activation 33
## Fgfr2b Ligand Binding And Activation 10
## Fgfr2c Ligand Binding And Activation 13
## Fgfr3 Ligand Binding And Activation 13
## Fgfr3b Ligand Binding And Activation 7
## Fgfrl1 Modulation Of Fgfr1 Signaling 13
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 5
## Flt3 Signaling 38
## Flt3 Signaling By Cbl Mutants 7
## Flt3 Signaling In Disease 28
## Flt3 Signaling Through Src Family Kinases 6
## Folding Of Actin By Cct Tric 10
## Formation Of Apoptosome 11
## Formation Of Atp By Chemiosmotic Coupling 18
## Formation Of Fibrin Clot Clotting Cascade 39
## Formation Of Incision Complex In Gg Ner 43
## Formation Of Rna Pol Ii Elongation Complex 58
## Formation Of Senescence Associated Heterochromatin Foci Sahf 17
## Formation Of Tc Ner Pre Incision Complex 53
## Formation Of The Beta Catenin Tcf Transactivating Complex 92
## Formation Of The Cornified Envelope 129
## Formation Of The Early Elongation Complex 33
## Formation Of Tubulin Folding Intermediates By Cct Tric 26
## Formation Of Xylulose 5 Phosphate 5
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 8
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 30
## Free Fatty Acid Receptors 5
## Free Fatty Acids Regulate Insulin Secretion 11
## Frs Mediated Fgfr1 Signaling 23
## Frs Mediated Fgfr2 Signaling 25
## Frs Mediated Fgfr3 Signaling 20
## Frs Mediated Fgfr4 Signaling 22
## Fructose Catabolism 5
## Fructose Metabolism 7
## G Alpha 12 13 Signalling Events 80
## G Alpha I Signalling Events 314
## G Alpha Q Signalling Events 216
## G Alpha S Signalling Events 144
## G Alpha Z Signalling Events 48
## G Beta Gamma Signalling Through Pi3kgamma 25
## G Protein Activation 24
## G Protein Mediated Events 54
## G1 S Dna Damage Checkpoints 68
## G2 M Checkpoints 168
## G2 M Dna Damage Checkpoint 95
## G2 Phase 5
## Gaba B Receptor Activation 43
## Gaba Receptor Activation 60
## Gaba Synthesis Release Reuptake And Degradation 19
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 42
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 11
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 25
## Gap Junction Assembly 38
## Gap Junction Degradation 12
## Gap Junction Trafficking And Regulation 51
## Gdp Fucose Biosynthesis 6
## Gene Silencing By Rna 140
## Generation Of Second Messenger Molecules 39
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 7
## Global Genome Nucleotide Excision Repair Gg Ner 84
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 42
## Glucagon Signaling In Metabolic Regulation 33
## Glucagon Type Ligand Receptors 33
## Glucocorticoid Biosynthesis 10
## Gluconeogenesis 34
## Glucose Metabolism 92
## Glucuronidation 25
## Glutamate And Glutamine Metabolism 14
## Glutamate Neurotransmitter Release Cycle 24
## Glutathione Conjugation 36
## Glutathione Synthesis And Recycling 12
## Glycerophospholipid Biosynthesis 128
## Glycerophospholipid Catabolism 7
## Glycogen Breakdown Glycogenolysis 15
## Glycogen Metabolism 27
## Glycogen Storage Diseases 16
## Glycogen Synthesis 16
## Glycolysis 72
## Glycosaminoglycan Metabolism 124
## Glycosphingolipid Metabolism 45
## Glyoxylate Metabolism And Glycine Degradation 31
## Golgi Associated Vesicle Biogenesis 56
## Golgi To Er Retrograde Transport 134
## Gpcr Ligand Binding 463
## Grb7 Events In Erbb2 Signaling 5
## Hats Acetylate Histones 142
## Hcmv Early Events 138
## Hcmv Infection 162
## Hcmv Late Events 116
## Hdacs Deacetylate Histones 94
## Hdms Demethylate Histones 50
## Hdr Through Homologous Recombination Hrr 67
## Hdr Through Mmej Alt Nhej 10
## Hedgehog Ligand Biogenesis 65
## Hedgehog Off State 113
## Hedgehog On State 86
## Heme Biosynthesis 14
## Hemostasis 678
## Heparan Sulfate Heparin Hs Gag Metabolism 55
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 9
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 11
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 7
## Histidine Catabolism 8
## Hiv Elongation Arrest And Recovery 33
## Hiv Infection 231
## Hiv Life Cycle 149
## Hiv Transcription Elongation 43
## Hiv Transcription Initiation 47
## Homologous Dna Pairing And Strand Exchange 42
## Homology Directed Repair 138
## Hormone Ligand Binding Receptors 12
## Host Interactions Of Hiv Factors 131
## Hs Gag Biosynthesis 31
## Hs Gag Degradation 22
## Hsf1 Activation 31
## Hsf1 Dependent Transactivation 38
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 57
## Hur Elavl1 Binds And Stabilizes Mrna 8
## Hyaluronan Biosynthesis And Export 5
## Hyaluronan Metabolism 17
## Hyaluronan Uptake And Degradation 12
## Hydrolysis Of Lpc 9
## Il 6 Type Cytokine Receptor Ligand Interactions 17
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 191
## Infectious Disease 924
## Influenza Infection 157
## Inhibition Of Dna Recombination At Telomere 68
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 13
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 21
## Initial Triggering Of Complement 80
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 15
## Innate Immune System 1117
## Inositol Phosphate Metabolism 48
## Insulin Processing 27
## Insulin Receptor Recycling 26
## Insulin Receptor Signalling Cascade 54
## Integration Of Energy Metabolism 108
## Integration Of Provirus 9
## Integrin Cell Surface Interactions 85
## Interaction Between L1 And Ankyrins 31
## Interaction With Cumulus Cells And The Zona Pellucida 11
## Interactions Of Rev With Host Cellular Proteins 37
## Interactions Of Vpr With Host Cellular Proteins 37
## Interconversion Of Nucleotide Di And Triphosphates 29
## Interferon Alpha Beta Signaling 73
## Interferon Gamma Signaling 93
## Interferon Signaling 203
## Interleukin 36 Pathway 7
## Intestinal Absorption 5
## Intra Golgi And Retrograde Golgi To Er Traffic 203
## Intra Golgi Traffic 44
## Intracellular Signaling By Second Messengers 307
## Intraflagellar Transport 54
## Inwardly Rectifying K Channels 35
## Ion Channel Transport 183
## Ion Homeostasis 54
## Ion Transport By P Type Atpases 55
## Ionotropic Activity Of Kainate Receptors 10
## Irak2 Mediated Activation Of Tak1 Complex 10
## Ire1alpha Activates Chaperones 50
## Irf3 Mediated Activation Of Type 1 Ifn 5
## Iron Uptake And Transport 58
## Irs Activation 5
## Irs Mediated Signalling 48
## Josephin Domain Dubs 12
## Keratan Sulfate Biosynthesis 28
## Keratan Sulfate Degradation 13
## Keratan Sulfate Keratin Metabolism 34
## Keratinization 217
## Ketone Body Metabolism 10
## Kinesins 61
## Ksrp Khsrp Binds And Destabilizes Mrna 17
## L1cam Interactions 121
## Lagging Strand Synthesis 20
## Laminin Interactions 30
## Leishmania Infection 308
## Leukotriene Receptors 5
## Lgi Adam Interactions 14
## Ligand Receptor Interactions 8
## Linoleic Acid La Metabolism 8
## Lipid Particle Organization 6
## Lipophagy 9
## Loss Of Function Of Mecp2 In Rett Syndrome 13
## Loss Of Function Of Smad2 3 In Cancer 7
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 7
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 5
## Ltc4 Cysltr Mediated Il4 Production 7
## Lysine Catabolism 12
## Lysosome Vesicle Biogenesis 35
## Lysosphingolipid And Lpa Receptors 14
## M Phase 417
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 16
## Mapk Family Signaling Cascades 327
## Mapk6 Mapk4 Signaling 93
## Maturation Of Nucleoprotein 10
## Maturation Of Protein 3a 9
## Maturation Of Sars Cov 1 Spike Protein 5
## Maturation Of Sars Cov 2 Spike Protein 29
## Meiosis 119
## Meiotic Recombination 87
## Meiotic Synapsis 79
## Melanin Biosynthesis 5
## Membrane Trafficking 629
## Met Activates Pi3k Akt Signaling 6
## Met Activates Ptpn11 5
## Met Activates Rap1 And Rac1 11
## Met Activates Ras Signaling 11
## Met Interacts With Tns Proteins 5
## Met Promotes Cell Motility 41
## Met Receptor Activation 6
## Met Receptor Recycling 10
## Metabolic Disorders Of Biological Oxidation Enzymes 34
## Metabolism Of Amine Derived Hormones 18
## Metabolism Of Amino Acids And Derivatives 374
## Metabolism Of Angiotensinogen To Angiotensins 18
## Metabolism Of Carbohydrates 293
## Metabolism Of Cofactors 19
## Metabolism Of Fat Soluble Vitamins 48
## Metabolism Of Folate And Pterines 17
## Metabolism Of Ingested Semet Sec Mesec Into H2se 8
## Metabolism Of Lipids 741
## Metabolism Of Nucleotides 98
## Metabolism Of Polyamines 59
## Metabolism Of Rna 672
## Metabolism Of Steroid Hormones 35
## Metabolism Of Steroids 151
## Metabolism Of Vitamins And Cofactors 189
## Metabolism Of Water Soluble Vitamins And Cofactors 123
## Metal Ion Slc Transporters 26
## Metal Sequestration By Antimicrobial Proteins 6
## Metallothioneins Bind Metals 11
## Methionine Salvage Pathway 6
## Methylation 14
## Mhc Class Ii Antigen Presentation 126
## Microrna Mirna Biogenesis 25
## Mineralocorticoid Biosynthesis 6
## Miro Gtpase Cycle 8
## Miscellaneous Substrates 12
## Miscellaneous Transport And Binding Events 26
## Mismatch Repair 15
## Mitochondrial Biogenesis 94
## Mitochondrial Calcium Ion Transport 23
## Mitochondrial Fatty Acid Beta Oxidation 37
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 11
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 6
## Mitochondrial Iron Sulfur Cluster Biogenesis 13
## Mitochondrial Protein Import 65
## Mitochondrial Translation 96
## Mitochondrial Trna Aminoacylation 21
## Mitochondrial Uncoupling 6
## Mitotic G1 Phase And G1 S Transition 149
## Mitotic G2 G2 M Phases 200
## Mitotic Metaphase And Anaphase 236
## Mitotic Prometaphase 203
## Mitotic Prophase 143
## Mitotic Spindle Checkpoint 111
## Mitotic Telophase Cytokinesis 13
## Molecules Associated With Elastic Fibres 38
## Molybdenum Cofactor Biosynthesis 6
## Mrna Capping 29
## Mrna Decay By 3 To 5 Exoribonuclease 16
## Mrna Decay By 5 To 3 Exoribonuclease 15
## Mrna Editing 10
## Mrna Editing C To U Conversion 8
## Mrna Splicing 188
## Mrna Splicing Minor Pathway 52
## Mtor Signalling 41
## Mtorc1 Mediated Signalling 24
## Mucopolysaccharidoses 11
## Multifunctional Anion Exchangers 9
## Muscarinic Acetylcholine Receptors 5
## Muscle Contraction 195
## Myoclonic Epilepsy Of Lafora 9
## N Glycan Antennae Elongation 15
## N Glycan Antennae Elongation In The Medial Trans Golgi 26
## N Glycan Trimming And Elongation In The Cis Golgi 5
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 35
## Na Cl Dependent Neurotransmitter Transporters 19
## Ncam Signaling For Neurite Out Growth 63
## Ncam1 Interactions 42
## Nectin Necl Trans Heterodimerization 7
## Neddylation 234
## Nef And Signal Transduction 8
## Nef Mediated Cd4 Down Regulation 9
## Nef Mediated Cd8 Down Regulation 7
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 10
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 21
## Negative Epigenetic Regulation Of Rrna Expression 109
## Negative Feedback Regulation Of Mapk Pathway 6
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 10
## Negative Regulation Of Flt3 15
## Negative Regulation Of Mapk Pathway 43
## Negative Regulation Of Met Activity 21
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 21
## Negative Regulation Of Notch4 Signaling 54
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 5
## Nephrin Family Interactions 23
## Nervous System Development 580
## Neurexins And Neuroligins 56
## Neurofascin Interactions 7
## Neuronal System 410
## Neurotoxicity Of Clostridium Toxins 10
## Neurotransmitter Clearance 10
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 205
## Neurotransmitter Release Cycle 51
## Neutrophil Degranulation 479
## Ngf Independant Trka Activation 5
## Nitric Oxide Stimulates Guanylate Cyclase 22
## Non Integrin Membrane Ecm Interactions 59
## Noncanonical Activation Of Notch3 8
## Nonhomologous End Joining Nhej 69
## Nonsense Mediated Decay Nmd 116
## Norepinephrine Neurotransmitter Release Cycle 18
## Notch Hlh Transcription Pathway 28
## Notch1 Intracellular Domain Regulates Transcription 48
## Notch2 Activation And Transmission Of Signal To The Nucleus 22
## Notch4 Activation And Transmission Of Signal To The Nucleus 11
## Notch4 Intracellular Domain Regulates Transcription 20
## Nr1h2 And Nr1h3 Mediated Signaling 47
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 5
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 9
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 5
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 9
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 5
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 37
## Nrage Signals Death Through Jnk 59
## Nrcam Interactions 7
## Ns1 Mediated Effects On Host Pathways 41
## Ntrk2 Activates Rac1 5
## Nuclear Envelope Breakdown 53
## Nuclear Envelope Ne Reassembly 76
## Nuclear Events Kinase And Transcription Factor Activation 61
## Nuclear Import Of Rev Protein 34
## Nuclear Receptor Transcription Pathway 53
## Nucleobase Biosynthesis 15
## Nucleobase Catabolism 35
## Nucleotide Excision Repair 110
## Nucleotide Like Purinergic Receptors 16
## O Glycosylation Of Tsr Domain Containing Proteins 39
## O Linked Glycosylation 111
## O Linked Glycosylation Of Mucins 62
## Olfactory Signaling Pathway 400
## Oncogenic Mapk Signaling 82
## Opioid Signalling 90
## Opsins 9
## Orc1 Removal From Chromatin 71
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 8
## Organelle Biogenesis And Maintenance 296
## Organic Anion Transport 5
## Organic Anion Transporters 10
## Organic Cation Anion Zwitterion Transport 15
## Organic Cation Transport 10
## Oxidative Stress Induced Senescence 126
## P2y Receptors 12
## P75ntr Negatively Regulates Cell Cycle Via Sc1 6
## Parasite Infection 116
## Passive Transport By Aquaporins 13
## Pcna Dependent Long Patch Base Excision Repair 21
## Pcp Ce Pathway 92
## Pentose Phosphate Pathway 15
## Peptide Hormone Biosynthesis 14
## Peptide Hormone Metabolism 90
## Peroxisomal Lipid Metabolism 29
## Peroxisomal Protein Import 63
## Phase 0 Rapid Depolarisation 32
## Phase 1 Inactivation Of Fast Na Channels 7
## Phase 2 Plateau Phase 15
## Phase 3 Rapid Repolarisation 8
## Phase I Functionalization Of Compounds 106
## Phase Ii Conjugation Of Compounds 109
## Phenylalanine And Tyrosine Metabolism 11
## Phenylalanine Metabolism 6
## Phosphate Bond Hydrolysis By Ntpdase Proteins 8
## Phosphate Bond Hydrolysis By Nudt Proteins 7
## Phospholipase C Mediated Cascade Fgfr2 18
## Phospholipase C Mediated Cascade Fgfr4 15
## Phospholipid Metabolism 211
## Physiological Factors 12
## Pi 3k Cascade Fgfr1 21
## Pi 3k Cascade Fgfr2 23
## Pi 3k Cascade Fgfr3 18
## Pi 3k Cascade Fgfr4 20
## Pi Metabolism 84
## Pi3k Akt Activation 9
## Pi3k Events In Erbb4 Signaling 10
## Pi5p Regulates Tp53 Acetylation 9
## Piwi Interacting Rna Pirna Biogenesis 29
## Pka Activation In Glucagon Signalling 17
## Pka Mediated Phosphorylation Of Key Metabolic Factors 5
## Pkmts Methylate Histone Lysines 71
## Plasma Lipoprotein Assembly Remodeling And Clearance 71
## Platelet Activation Signaling And Aggregation 261
## Platelet Calcium Homeostasis 28
## Platelet Homeostasis 86
## Platelet Sensitization By Ldl 17
## Polb Dependent Long Patch Base Excision Repair 8
## Polo Like Kinase Mediated Events 16
## Polymerase Switching 14
## Polymerase Switching On The C Strand Of The Telomere 26
## Positive Epigenetic Regulation Of Rrna Expression 106
## Post Chaperonin Tubulin Folding Pathway 23
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 94
## Postmitotic Nuclear Pore Complex Npc Reformation 27
## Potassium Channels 103
## Potential Therapeutics For Sars 81
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 10
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 7
## Prc2 Methylates Histones And Dna 73
## Pre Notch Expression And Processing 120
## Pre Notch Processing In Golgi 18
## Pre Notch Processing In The Endoplasmic Reticulum 6
## Pregnenolone Biosynthesis 12
## Presynaptic Depolarization And Calcium Channel Opening 11
## Presynaptic Function Of Kainate Receptors 21
## Prevention Of Phagosomal Lysosomal Fusion 9
## Processing And Activation Of Sumo 10
## Processing Of Capped Intron Containing Pre Mrna 242
## Processing Of Capped Intronless Pre Mrna 28
## Processing Of Dna Double Strand Break Ends 98
## Processing Of Intronless Pre Mrnas 19
## Processing Of Smdt1 16
## Processive Synthesis On The C Strand Of The Telomere 19
## Processive Synthesis On The Lagging Strand 15
## Programmed Cell Death 208
## Prolactin Receptor Signaling 15
## Prolonged Erk Activation Events 14
## Propionyl Coa Catabolism 5
## Prostacyclin Signalling Through Prostacyclin Receptor 19
## Prostanoid Ligand Receptors 9
## Protein Folding 98
## Protein Localization 164
## Protein Methylation 17
## Protein Protein Interactions At Synapses 87
## Protein Ubiquitination 79
## Proton Coupled Monocarboxylate Transport 6
## Pten Regulation 139
## Ptk6 Expression 5
## Ptk6 Regulates Proteins Involved In Rna Processing 5
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 14
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 9
## Purine Catabolism 17
## Purine Ribonucleoside Monophosphate Biosynthesis 12
## Pyrimidine Catabolism 12
## Pyrimidine Salvage 11
## Pyruvate Metabolism 31
## Pyruvate Metabolism And Citric Acid Tca Cycle 55
## Ra Biosynthesis Pathway 22
## Rab Gefs Exchange Gtp For Gdp On Rabs 90
## Rab Geranylgeranylation 65
## Rab Regulation Of Trafficking 122
## Rac1 Gtpase Cycle 184
## Rac2 Gtpase Cycle 88
## Rac3 Gtpase Cycle 94
## Rap1 Signalling 16
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 20
## Ras Processing 24
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 7
## Reactions Specific To The Complex N Glycan Synthesis Pathway 10
## Receptor Type Tyrosine Protein Phosphatases 20
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 56
## Recognition Of Dna Damage By Pcna Containing Replication Complex 30
## Recruitment Of Mitotic Centrosome Proteins And Complexes 81
## Recruitment Of Numa To Mitotic Centrosomes 95
## Recycling Of Bile Acids And Salts 16
## Recycling Of Eif2 Gdp 8
## Recycling Pathway Of L1 49
## Reduction Of Cytosolic Ca Levels 12
## Reelin Signalling Pathway 5
## Regulated Proteolysis Of P75ntr 11
## Regulation Of Bach1 Activity 11
## Regulation Of Beta Cell Development 42
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 55
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 8
## Regulation Of Expression Of Slits And Robos 172
## Regulation Of Fzd By Ubiquitination 21
## Regulation Of Gene Expression By Hypoxia Inducible Factor 11
## Regulation Of Gene Expression In Beta Cells 21
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 8
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 5
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 16
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 32
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 12
## Regulation Of Hmox1 Expression And Activity 65
## Regulation Of Hsf1 Mediated Heat Shock Response 82
## Regulation Of Innate Immune Responses To Cytosolic Dna 15
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 124
## Regulation Of Insulin Secretion 78
## Regulation Of Lipid Metabolism By Pparalpha 120
## Regulation Of Localization Of Foxo Transcription Factors 12
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 87
## Regulation Of Plk1 Activity At G2 M Transition 87
## Regulation Of Pten Gene Transcription 61
## Regulation Of Pten Localization 9
## Regulation Of Pten Mrna Translation 9
## Regulation Of Pten Stability And Activity 69
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 16
## Regulation Of Ras By Gaps 68
## Regulation Of Runx2 Expression And Activity 73
## Regulation Of Runx3 Expression And Activity 55
## Regulation Of Signaling By Cbl 22
## Regulation Of Signaling By Nodal 11
## Regulation Of Tp53 Activity 160
## Regulation Of Tp53 Activity Through Acetylation 30
## Regulation Of Tp53 Activity Through Association With Co Factors 14
## Regulation Of Tp53 Activity Through Phosphorylation 92
## Relaxin Receptors 8
## Release Of Apoptotic Factors From The Mitochondria 7
## Release Of Hh Np From The Secreting Cell 8
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 10
## Reproduction 145
## Resolution Of Abasic Sites Ap Sites 38
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 25
## Resolution Of Sister Chromatid Cohesion 126
## Respiratory Electron Transport 103
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 127
## Response Of Eif2ak1 Hri To Heme Deficiency 15
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 102
## Response Of Mtb To Phagocytosis 23
## Response To Elevated Platelet Cytosolic Ca2 132
## Response To Metal Ions 14
## Ret Signaling 40
## Retinoid Cycle Disease Events 13
## Retrograde Neurotrophin Signalling 14
## Retrograde Transport At The Trans Golgi Network 49
## Reversible Hydration Of Carbon Dioxide 12
## Rho Gtpase Cycle 444
## Rho Gtpase Effectors 324
## Rho Gtpases Activate Cit 19
## Rho Gtpases Activate Formins 140
## Rho Gtpases Activate Pkns 94
## Rho Gtpases Activate Rhotekin And Rhophilins 9
## Rho Gtpases Activate Rocks 19
## Rhoa Gtpase Cycle 149
## Rhob Gtpase Cycle 70
## Rhobtb Gtpase Cycle 35
## Rhobtb1 Gtpase Cycle 23
## Rhobtb2 Gtpase Cycle 23
## Rhobtb3 Atpase Cycle 10
## Rhoc Gtpase Cycle 74
## Rhot1 Gtpase Cycle 5
## Rmts Methylate Histone Arginines 79
## Rna Polymerase I Promoter Escape 91
## Rna Polymerase I Transcription 111
## Rna Polymerase I Transcription Initiation 47
## Rna Polymerase I Transcription Termination 31
## Rna Polymerase Ii Transcribes Snrna Genes 81
## Rna Polymerase Ii Transcription Termination 66
## Rna Polymerase Iii Chain Elongation 18
## Rna Polymerase Iii Transcription 41
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 28
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 28
## Rna Polymerase Iii Transcription Termination 23
## Rnd1 Gtpase Cycle 42
## Rnd2 Gtpase Cycle 43
## Rnd3 Gtpase Cycle 42
## Robo Receptors Bind Akap5 9
## Role Of Abl In Robo Slit Signaling 8
## Role Of Lat2 Ntal Lab On Calcium Mobilization 71
## Role Of Phospholipids In Phagocytosis 82
## Role Of Second Messengers In Netrin 1 Signaling 10
## Rora Activates Gene Expression 18
## Rrna Modification In The Mitochondrion 8
## Rrna Modification In The Nucleus And Cytosol 60
## Rrna Processing 205
## Rrna Processing In The Mitochondrion 12
## Rsk Activation 7
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 37
## Runx1 Regulates Estrogen Receptor Mediated Transcription 6
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 98
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 6
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 130
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 8
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 5
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 6
## Runx3 Regulates Bcl2l11 Bim Transcription 5
## Runx3 Regulates Cdkn1a Transcription 7
## Runx3 Regulates Immune Response And Cell Migration 6
## Runx3 Regulates Notch Signaling 14
## Runx3 Regulates P14 Arf 10
## Runx3 Regulates Yap1 Mediated Transcription 8
## S Phase 162
## Sars Cov 1 Genome Replication And Transcription 6
## Sars Cov 1 Infection 50
## Sars Cov 2 Infection 67
## Sars Cov Infections 146
## Scavenging By Class F Receptors 6
## Scavenging Of Heme From Plasma 69
## Scf Skp2 Mediated Degradation Of P27 P21 60
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 32
## Selective Autophagy 82
## Selenoamino Acid Metabolism 118
## Sema3a Pak Dependent Axon Repulsion 16
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 14
## Sema4d In Semaphorin Signaling 24
## Sema4d Induced Cell Migration And Growth Cone Collapse 20
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 8
## Semaphorin Interactions 64
## Senescence Associated Secretory Phenotype Sasp 112
## Sensory Perception 575
## Sensory Processing Of Sound 77
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 55
## Separation Of Sister Chromatids 191
## Serine Biosynthesis 9
## Serotonin And Melatonin Biosynthesis 5
## Serotonin Neurotransmitter Release Cycle 18
## Serotonin Receptors 12
## Shc Mediated Cascade Fgfr1 21
## Shc Mediated Cascade Fgfr3 18
## Shc Mediated Cascade Fgfr4 20
## Shc Related Events Triggered By Igf1r 9
## Shc1 Events In Erbb4 Signaling 14
## Signal Attenuation 10
## Signaling By Activin 13
## Signaling By Bmp 28
## Signaling By Braf And Raf Fusions 65
## Signaling By Ctnnb1 Phospho Site Mutants 15
## Signaling By Erythropoietin 25
## Signaling By Fgfr 87
## Signaling By Fgfr In Disease 63
## Signaling By Fgfr1 50
## Signaling By Fgfr2 73
## Signaling By Fgfr2 Iiia Tm 19
## Signaling By Fgfr2 In Disease 43
## Signaling By Fgfr3 40
## Signaling By Fgfr3 Fusions In Cancer 10
## Signaling By Fgfr4 41
## Signaling By Fgfr4 In Disease 11
## Signaling By Flt3 Fusion Proteins 19
## Signaling By Flt3 Itd And Tkd Mutants 16
## Signaling By Gpcr 698
## Signaling By Hedgehog 150
## Signaling By Insulin Receptor 78
## Signaling By Lrp5 Mutants 6
## Signaling By Mapk Mutants 7
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 5
## Signaling By Met 79
## Signaling By Mras Complex Mutants 8
## Signaling By Mst1 5
## Signaling By Nodal 20
## Signaling By Notch 247
## Signaling By Notch1 74
## Signaling By Notch1 Hd Domain Mutants In Cancer 15
## Signaling By Notch1 Pest Domain Mutants In Cancer 58
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 7
## Signaling By Notch4 82
## Signaling By Ntrks 134
## Signaling By Nuclear Receptors 297
## Signaling By Receptor Tyrosine Kinases 504
## Signaling By Retinoic Acid 43
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 717
## Signaling By Rnf43 Mutants 8
## Signaling By Robo Receptors 218
## Signaling By Tgf Beta Receptor Complex 73
## Signaling By Tgf Beta Receptor Complex In Cancer 8
## Signaling By Tgfb Family Members 102
## Signaling By The B Cell Receptor Bcr 166
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 54
## Signaling By Vegf 106
## Signaling By Wnt 331
## Signaling By Wnt In Cancer 34
## Signalling To P38 Via Rit And Rin 5
## Sirt1 Negatively Regulates Rrna Expression 68
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 11
## Slc Mediated Transmembrane Transport 250
## Slc Transporter Disorders 99
## Small Interfering Rna Sirna Biogenesis 9
## Smooth Muscle Contraction 38
## Snrnp Assembly 54
## Sodium Calcium Exchangers 11
## Sodium Coupled Phosphate Cotransporters 5
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 5
## Sodium Proton Exchangers 9
## Sos Mediated Signalling 7
## Sperm Motility And Taxes 9
## Sphingolipid De Novo Biosynthesis 45
## Sphingolipid Metabolism 90
## Srp Dependent Cotranslational Protein Targeting To Membrane 113
## Stabilization Of P53 57
## Stat5 Activation 7
## Stat5 Activation Downstream Of Flt3 Itd Mutants 10
## Stimuli Sensing Channels 106
## Striated Muscle Contraction 36
## Sulfide Oxidation To Sulfate 6
## Sulfur Amino Acid Metabolism 28
## Sumo Is Conjugated To E1 Uba2 Sae1 5
## Sumo Is Proteolytically Processed 6
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 7
## Sumoylation 187
## Sumoylation Of Chromatin Organization Proteins 71
## Sumoylation Of Dna Damage Response And Repair Proteins 77
## Sumoylation Of Dna Replication Proteins 46
## Sumoylation Of Intracellular Receptors 30
## Sumoylation Of Rna Binding Proteins 47
## Sumoylation Of Sumoylation Proteins 35
## Sumoylation Of Transcription Cofactors 43
## Sumoylation Of Transcription Factors 20
## Sumoylation Of Ubiquitinylation Proteins 39
## Suppression Of Apoptosis 7
## Suppression Of Phagosomal Maturation 13
## Surfactant Metabolism 30
## Switching Of Origins To A Post Replicative State 91
## Synaptic Adhesion Like Molecules 21
## Syndecan Interactions 27
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 7
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 9
## Synthesis Of 5 Eicosatetraenoic Acids 9
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 30
## Synthesis Of Bile Acids And Bile Salts 34
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 14
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 15
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 24
## Synthesis Of Diphthamide Eef2 8
## Synthesis Of Dolichyl Phosphate 6
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 8
## Synthesis Of Gdp Mannose 5
## Synthesis Of Glycosylphosphatidylinositol Gpi 18
## Synthesis Of Ip2 Ip And Ins In The Cytosol 14
## Synthesis Of Ip3 And Ip4 In The Cytosol 26
## Synthesis Of Ketone Bodies 8
## Synthesis Of Leukotrienes Lt And Eoxins Ex 21
## Synthesis Of Lipoxins Lx 6
## Synthesis Of Pa 39
## Synthesis Of Pc 28
## Synthesis Of Pe 13
## Synthesis Of Pg 8
## Synthesis Of Pi 5
## Synthesis Of Pips At The Early Endosome Membrane 16
## Synthesis Of Pips At The Er Membrane 5
## Synthesis Of Pips At The Golgi Membrane 18
## Synthesis Of Pips At The Late Endosome Membrane 11
## Synthesis Of Pips At The Plasma Membrane 53
## Synthesis Of Pyrophosphates In The Cytosol 10
## Synthesis Of Substrates In N Glycan Biosythesis 63
## Synthesis Of Udp N Acetyl Glucosamine 8
## Synthesis Of Very Long Chain Fatty Acyl Coas 24
## Synthesis Of Wybutosine At G37 Of Trna Phe 6
## Synthesis Secretion And Deacylation Of Ghrelin 19
## Tachykinin Receptors Bind Tachykinins 5
## Tbc Rabgaps 44
## Tcf Dependent Signaling In Response To Wnt 234
## Tcr Signaling 124
## Telomere C Strand Lagging Strand Synthesis 34
## Telomere C Strand Synthesis Initiation 13
## Telomere Maintenance 113
## Terminal Pathway Of Complement 8
## Termination Of Translesion Dna Synthesis 32
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 10
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 5
## Tgf Beta Receptor Signaling Activates Smads 32
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 16
## The Activation Of Arylsulfatases 13
## The Canonical Retinoid Cycle In Rods Twilight Vision 23
## The Citric Acid Tca Cycle And Respiratory Electron Transport 178
## The Fatty Acid Cycling Model 5
## The Phototransduction Cascade 34
## The Retinoid Cycle In Cones Daylight Vision 7
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 79
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 28
## Thromboxane Signalling Through Tp Receptor 24
## Thyroxine Biosynthesis 10
## Tie2 Signaling 18
## Tight Junction Interactions 30
## Toxicity Of Botulinum Toxin Type D Botd 5
## Tp53 Regulates Metabolic Genes 87
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 21
## Tp53 Regulates Transcription Of Cell Cycle Genes 49
## Tp53 Regulates Transcription Of Death Receptors And Ligands 12
## Tp53 Regulates Transcription Of Dna Repair Genes 62
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 14
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 14
## Trafficking Of Ampa Receptors 31
## Trafficking Of Glur2 Containing Ampa Receptors 17
## Trafficking Of Myristoylated Proteins To The Cilium 5
## Trail Signaling 8
## Trans Golgi Network Vesicle Budding 72
## Transcription Coupled Nucleotide Excision Repair Tc Ner 78
## Transcription Of The Hiv Genome 70
## Transcriptional Activation Of Mitochondrial Biogenesis 55
## Transcriptional Regulation By E2f6 34
## Transcriptional Regulation By Mecp2 63
## Transcriptional Regulation By Runx1 239
## Transcriptional Regulation By Runx2 120
## Transcriptional Regulation By Runx3 96
## Transcriptional Regulation By Small Rnas 107
## Transcriptional Regulation By Tp53 363
## Transcriptional Regulation By Ventx 41
## Transcriptional Regulation Of Granulopoiesis 90
## Transcriptional Regulation Of Testis Differentiation 13
## Transcriptional Regulation Of White Adipocyte Differentiation 84
## Transferrin Endocytosis And Recycling 31
## Translation 295
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 13
## Translation Of Sars Cov 1 Structural Proteins 28
## Translation Of Sars Cov 2 Structural Proteins 44
## Translesion Synthesis By Polh 19
## Translesion Synthesis By Polk 17
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 39
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 72
## Transmission Across Chemical Synapses 269
## Transport And Synthesis Of Paps 6
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 86
## Transport Of Connexons To The Plasma Membrane 21
## Transport Of Fatty Acids 8
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 106
## Transport Of Mature Mrnas Derived From Intronless Transcripts 43
## Transport Of Mature Transcript To Cytoplasm 84
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 12
## Transport Of Nucleotide Sugars 9
## Transport Of Organic Anions 12
## Transport Of Small Molecules 728
## Transport Of The Slbp Dependant Mature Mrna 36
## Transport Of Vitamins Nucleosides And Related Molecules 44
## Transport To The Golgi And Subsequent Modification 186
## Triglyceride Biosynthesis 14
## Triglyceride Metabolism 38
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 17
## Trna Aminoacylation 42
## Trna Modification In The Mitochondrion 9
## Trna Modification In The Nucleus And Cytosol 43
## Trna Processing 111
## Trna Processing In The Mitochondrion 7
## Trna Processing In The Nucleus 59
## Trp Channels 28
## Tryptophan Catabolism 14
## Type I Hemidesmosome Assembly 11
## Tyrosine Catabolism 5
## Tysnd1 Cleaves Peroxisomal Proteins 7
## Ub Specific Processing Proteases 221
## Ubiquinol Biosynthesis 8
## Uch Proteinases 102
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 21
## Unfolded Protein Response Upr 92
## Unwinding Of Dna 12
## Uptake And Actions Of Bacterial Toxins 29
## Uptake And Function Of Anthrax Toxins 11
## Uptake And Function Of Diphtheria Toxin 6
## Urea Cycle 10
## Vasopressin Like Receptors 6
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 43
## Vegf Ligand Receptor Interactions 8
## Vesicle Mediated Transport 724
## Viral Messenger Rna Synthesis 44
## Visual Phototransduction 100
## Vitamin B1 Thiamin Metabolism 5
## Vitamin B2 Riboflavin Metabolism 7
## Vitamin B5 Pantothenate Metabolism 17
## Vitamin C Ascorbate Metabolism 8
## Vitamin D Calciferol Metabolism 11
## Vitamins 6
## Vldl Assembly 5
## Vldl Clearance 6
## Voltage Gated Potassium Channels 43
## Vxpx Cargo Targeting To Cilium 21
## Wax And Plasmalogen Biosynthesis 7
## Wnt Mediated Activation Of Dvl 8
## Xenobiotics 25
## Zinc Efflux And Compartmentalization By The Slc30 Family 7
## Zinc Influx Into Cells By The Slc39 Gene Family 10
## Zinc Transporters 17
## overlap
## Interleukin 10 Signaling 21
## Chemokine Receptors Bind Chemokines 19
## Interleukin 4 And Interleukin 13 Signaling 25
## Irak4 Deficiency Tlr2 4 6
## Fibronectin Matrix Formation 3
## Diseases Of Immune System 8
## Regulation Of Tlr By Endogenous Ligand 6
## Interleukin 18 Signaling 3
## Cd163 Mediating An Anti Inflammatory Response 3
## Interleukin 1 Processing 3
## Purinergic Signaling In Leishmaniasis Infection 6
## P75ntr Signals Via Nf Kb 4
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 5
## Interleukin 6 Signaling 3
## Tnfs Bind Their Physiological Receptors 6
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 4
## Nod1 2 Signaling Pathway 7
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 10
## Cd28 Dependent Vav1 Pathway 3
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 4
## Killing Mechanisms 3
## P75ntr Recruits Signalling Complexes 3
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 2
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 6
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 3
## Pyroptosis 5
## Activation Of C3 And C5 2
## Runx2 Regulates Genes Involved In Cell Migration 2
## Ctla4 Inhibitory Signaling 4
## Inflammasomes 4
## Egfr Interacts With Phospholipase C Gamma 2
## Egfr Transactivation By Gastrin 2
## Interleukin 9 Signaling 2
## Trif Mediated Programmed Cell Death 2
## Activated Tak1 Mediates P38 Mapk Activation 4
## Caspase Activation Via Death Receptors In The Presence Of Ligand 3
## The Nlrp3 Inflammasome 3
## Toll Like Receptor Tlr1 Tlr2 Cascade 15
## Ovarian Tumor Domain Proteases 6
## Activation Of The Ap 1 Family Of Transcription Factors 2
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 4
## Gab1 Signalosome 3
## Interleukin 21 Signaling 2
## Mapk3 Erk1 Activation 2
## Rip Mediated Nfkb Activation Via Zbp1 3
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 2
## Activation Of Matrix Metalloproteinases 5
## Apoptotic Cleavage Of Cell Adhesion Proteins 2
## Interleukin 27 Signaling 2
## Receptor Mediated Mitophagy 2
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 4
## Toll Like Receptor 9 Tlr9 Cascade 13
## Gp1b Ix V Activation Signalling 2
## Interleukin 35 Signalling 2
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 2
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 2
## Signaling By Kit In Disease 3
## Alternative Complement Activation 1
## Fasl Cd95l Signaling 1
## G2 M Dna Replication Checkpoint 1
## Galactose Catabolism 1
## Hdl Clearance 1
## Mecp2 Regulates Transcription Factors 1
## Nostrin Mediated Enos Trafficking 1
## Runx1 Regulates Expression Of Components Of Tight Junctions 1
## Runx2 Regulates Chondrocyte Maturation 1
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 1
## Apoptosis Induced Dna Fragmentation 2
## Erbb2 Activates Ptk6 Signaling 2
## Nf Kb Is Activated And Signals Survival 2
## Tnfr1 Induced Proapoptotic Signaling 2
## Trafficking And Processing Of Endosomal Tlr 2
## Zbp1 Dai Mediated Induction Of Type I Ifns 3
## Dcc Mediated Attractive Signaling 2
## Early Phase Of Hiv Life Cycle 2
## Interleukin 15 Signaling 2
## Shc1 Events In Egfr Signaling 2
## Toll Like Receptor Cascades 20
## Activated Ntrk3 Signals Through Pi3k 1
## Activation Of Caspases Through Apoptosome Mediated Cleavage 1
## Biosynthesis Of Epa Derived Spms 1
## Clec7a Inflammasome Pathway 1
## Nade Modulates Death Signalling 1
## Phosphorylation Of Emi1 1
## Protein Repair 1
## Ptk6 Promotes Hif1a Stabilization 1
## Ptk6 Regulates Cell Cycle 1
## Scavenging By Class B Receptors 1
## Sensing Of Dna Double Strand Breaks 1
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 1
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 1
## Tnfr1 Mediated Ceramide Production 1
## Ikk Complex Recruitment Mediated By Rip1 3
## Constitutive Signaling By Egfrviii 2
## Erbb2 Regulates Cell Motility 2
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 2
## P130cas Linkage To Mapk Signaling For Integrins 2
## Heme Signaling 6
## Regulated Necrosis 7
## Activated Ntrk2 Signals Through Fyn 1
## Activation Of Nima Kinases Nek9 Nek6 Nek7 1
## Creb Phosphorylation 1
## Defective Factor Viii Causes Hemophilia A 1
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 1
## Ikba Variant Leads To Eda Id 1
## Interleukin 6 Family Signaling 3
## Modulation By Mtb Of Host Immune System 1
## Myd88 Independent Tlr4 Cascade 12
## Traf6 Mediated Nf Kb Activation 3
## Cd28 Co Stimulation 4
## Grb2 Events In Erbb2 Signaling 2
## Pi3k Events In Erbb2 Signaling 2
## Signal Regulatory Protein Family Interactions 2
## Signaling By Erbb2 Ecd Mutants 2
## Sumoylation Of Dna Methylation Proteins 2
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 2
## Beta Defensins 5
## Extra Nuclear Estrogen Signaling 9
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 2
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 1
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 1
## Hdl Assembly 1
## Inactivation Of Cdc42 And Rac1 1
## Lectin Pathway Of Complement Activation 1
## Mecp2 Regulates Transcription Of Neuronal Ligands 1
## Netrin Mediated Repulsion Signals 1
## Runx3 Regulates Wnt Signaling 1
## Smac Xiap Regulated Apoptotic Response 1
## Interleukin 2 Family Signaling 5
## Signaling By Cytosolic Fgfr1 Fusion Mutants 2
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 1
## Dap12 Interactions 5
## Downregulation Of Erbb4 Signaling 1
## E2f Enabled Inhibition Of Pre Replication Complex Formation 1
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 1
## Interleukin 23 Signaling 1
## Mapk1 Erk2 Activation 1
## Oas Antiviral Response 1
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 2
## Interleukin 17 Signaling 8
## Other Semaphorin Interactions 2
## Pd 1 Signaling 3
## Scavenging By Class A Receptors 2
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 2
## Akt Phosphorylates Targets In The Nucleus 1
## Camk Iv Mediated Phosphorylation Of Creb 1
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 1
## Chylomicron Assembly 1
## Chylomicron Remodeling 1
## Dap12 Signaling 3
## Downstream Signal Transduction 3
## Hdl Remodeling 1
## Mastl Facilitates Mitotic Progression 1
## P75ntr Regulates Axonogenesis 1
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 1
## Regulation Of Foxo Transcriptional Activity By Acetylation 1
## Interleukin 1 Family Signaling 16
## Signaling By Pdgfr In Disease 2
## Costimulation By The Cd28 Family 8
## Peptide Ligand Binding Receptors 23
## Tnfr1 Induced Nfkappab Signaling Pathway 3
## Interleukin 37 Signaling 2
## Signal Transduction By L1 2
## Condensation Of Prometaphase Chromosomes 1
## Dermatan Sulfate Biosynthesis 1
## Dscam Interactions 1
## Egfr Downregulation 3
## Endosomal Vacuolar Pathway 1
## Enos Activation 1
## Mapk Targets Nuclear Events Mediated By Map Kinases 3
## Pexophagy 1
## Regulation By C Flip 1
## Rho Gtpases Activate Ktn1 1
## Signaling By Leptin 1
## Sumoylation Of Immune Response Proteins 1
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 1
## Cd28 Dependent Pi3k Akt Signaling 2
## Shc1 Events In Erbb2 Signaling 2
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 1
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 1
## Interleukin 2 Signaling 1
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 1
## Notch2 Intracellular Domain Regulates Transcription 1
## Pecam1 Interactions 1
## Tandem Pore Domain Potassium Channels 1
## Ticam1 Dependent Activation Of Irf3 Irf7 1
## Vldlr Internalisation And Degradation 1
## Raf Independent Mapk1 3 Activation 2
## Defensins 5
## Signaling By Scf Kit 4
## Advanced Glycosylation Endproduct Receptor Signaling 1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 1
## Cytochrome C Mediated Apoptotic Response 1
## Dissolution Of Fibrin Clot 1
## Growth Hormone Receptor Signaling 2
## Irf3 Mediated Induction Of Type I Ifn 1
## Negative Regulators Of Ddx58 Ifih1 Signaling 3
## P38mapk Events 1
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 1
## Purine Salvage 1
## Runx2 Regulates Osteoblast Differentiation 2
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 1
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 1
## Regulation Of Tnfr1 Signaling 3
## Golgi Cisternae Pericentriolar Stack Reorganization 1
## Inactivation Of Csf3 G Csf Signaling 2
## Irak1 Recruits Ikk Complex 1
## Notch3 Activation And Transmission Of Signal To The Nucleus 2
## Regulation Of Ifng Signaling 1
## Repression Of Wnt Target Genes 1
## Signaling By Egfr In Cancer 2
## Traf3 Dependent Irf Activation Pathway 1
## Interleukin 20 Family Signaling 2
## Signaling By Erbb2 In Cancer 2
## Depolymerisation Of The Nuclear Lamina 1
## Heme Degradation 1
## Interleukin 12 Family Signaling 5
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 1
## Platelet Adhesion To Exposed Collagen 1
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 1
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 1
## Wnt5a Dependent Internalization Of Fzd4 1
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 1
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 2
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 1
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 1
## Foxo Mediated Transcription Of Cell Death Genes 1
## G0 And Early G1 2
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 3
## Integrin Signaling 2
## Interleukin Receptor Shc Signaling 2
## Nrif Signals Cell Death From The Nucleus 1
## Regulation Of Kit Signaling 1
## Spry Regulation Of Fgf Signaling 1
## Sting Mediated Induction Of Host Immune Responses 1
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 1
## Vegfr2 Mediated Vascular Permeability 2
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 1
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 1
## Downregulation Of Erbb2 Signaling 2
## Foxo Mediated Transcription Of Cell Cycle Genes 1
## Mitophagy 2
## Regulation Of Runx1 Expression And Activity 1
## Ripk1 Mediated Regulated Necrosis 2
## Signaling By Egfr 4
## Signaling By Ntrk3 Trkc 1
## Abc Transporters In Lipid Homeostasis 1
## Crosslinking Of Collagen Fibrils 1
## Diseases Associated With Glycosylation Precursor Biosynthesis 1
## Eph Ephrin Mediated Repulsion Of Cells 4
## Mecp2 Regulates Neuronal Receptors And Channels 1
## Signaling By Csf3 G Csf 2
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 1
## Biosynthesis Of Specialized Proresolving Mediators Spms 1
## Ephrin Signaling 1
## Fgfr1 Mutant Receptor Activation 2
## Initiation Of Nuclear Envelope Ne Reformation 1
## Interleukin 1 Signaling 9
## Ldl Clearance 1
## Nicotinamide Salvaging 1
## Nicotinate Metabolism 2
## Phase 4 Resting Membrane Potential 1
## Plasma Lipoprotein Assembly 1
## Regulation Of Tp53 Activity Through Methylation 1
## Runx2 Regulates Bone Development 2
## Signaling By Interleukins 52
## Tnfr2 Non Canonical Nf Kb Pathway 9
## Transcription Of E2f Targets Under Negative Control By Dream Complex 1
## Vegfr2 Mediated Cell Proliferation 1
## Apoptotic Factor Mediated Response 1
## Cargo Concentration In The Er 2
## Collagen Degradation 5
## G Beta Gamma Signalling Through Cdc42 1
## Listeria Monocytogenes Entry Into Host Cells 1
## Perk Regulates Gene Expression 2
## Phosphorylation Of The Apc C 1
## Pka Mediated Phosphorylation Of Creb 1
## Plasma Lipoprotein Clearance 2
## Signaling By Hippo 1
## Signaling By Ptk6 4
## Signalling To Ras 1
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 2
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 1
## Tnf Signaling 3
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 1
## Branched Chain Amino Acid Catabolism 1
## Chaperone Mediated Autophagy 1
## Complement Cascade 10
## Constitutive Signaling By Aberrant Pi3k In Cancer 6
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 1
## E2f Mediated Regulation Of Dna Replication 1
## Gpvi Mediated Activation Cascade 2
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 1
## P75 Ntr Receptor Mediated Signalling 8
## Pink1 Prkn Mediated Mitophagy 1
## Rho Gtpases Activate Paks 1
## Incretin Synthesis Secretion And Inactivation 1
## Interleukin 12 Signaling 3
## Intrinsic Pathway Of Fibrin Clot Formation 1
## Long Term Potentiation 1
## Nucleotide Salvage 1
## Regulation Of Tp53 Expression And Degradation 2
## Rhoh Gtpase Cycle 2
## Rhoq Gtpase Cycle 4
## Signaling By Notch3 3
## Telomere Extension By Telomerase 1
## Termination Of O Glycan Biosynthesis 1
## Adp Signalling Through P2y Purinoceptor 1 1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 1
## Apc C Cdc20 Mediated Degradation Of Cyclin B 1
## Apoptotic Cleavage Of Cellular Proteins 2
## Apoptotic Execution Phase 3
## Assembly Of Collagen Fibrils And Other Multimeric Structures 4
## Basigin Interactions 1
## Constitutive Signaling By Akt1 E17k In Cancer 1
## Cyclin A B1 B2 Associated Events During G2 M Transition 1
## Cytosolic Sensors Of Pathogen Associated Dna 4
## Death Receptor Signalling 12
## Dectin 2 Family 1
## Negative Regulation Of The Pi3k Akt Network 9
## Netrin 1 Signaling 3
## Ngf Stimulated Transcription 2
## Notch3 Intracellular Domain Regulates Transcription 1
## Other Interleukin Signaling 1
## Platelet Aggregation Plug Formation 2
## Regulation Of Ifna Signaling 1
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 1
## Rho Gtpases Activate Nadph Oxidases 1
## Signaling By Erbb2 3
## Signaling By Fgfr1 In Disease 2
## Signaling By Ntrk2 Trkb 1
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 2
## Triglyceride Catabolism 1
## Wnt Ligand Biogenesis And Trafficking 1
## Antigen Processing Cross Presentation 8
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 1
## Epha Mediated Growth Cone Collapse 1
## Ephb Mediated Forward Signaling 2
## G1 S Specific Transcription 1
## Infection With Mycobacterium Tuberculosis 1
## Intrinsic Pathway For Apoptosis 3
## Map2k And Mapk Activation 2
## Metabolism Of Porphyrins 1
## Myogenesis 1
## Negative Regulation Of Fgfr3 Signaling 1
## Rhof Gtpase Cycle 2
## Rhoj Gtpase Cycle 3
## Tp53 Regulates Transcription Of Cell Death Genes 2
## Traf6 Mediated Irf7 Activation 1
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 2
## Activation Of Bh3 Only Proteins 1
## Antimicrobial Peptides 6
## Ca Dependent Events 1
## Cyclin D Associated Events In G1 2
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 5
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 1
## Foxo Mediated Transcription 3
## G Protein Beta Gamma Signalling 1
## Hdr Through Single Strand Annealing Ssa 1
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 2
## Interleukin 7 Signaling 1
## Late Endosomal Microautophagy 1
## Met Activates Ptk2 Signaling 1
## Metalloprotease Dubs 1
## Negative Regulation Of Fgfr1 Signaling 1
## Negative Regulation Of Fgfr2 Signaling 1
## Negative Regulation Of Fgfr4 Signaling 1
## Nuclear Pore Complex Npc Disassembly 1
## Nuclear Signaling By Erbb4 1
## Oncogene Induced Senescence 1
## Pi3k Akt Signaling In Cancer 7
## Plasma Lipoprotein Remodeling 1
## Raf Activation 1
## Regulation Of Mecp2 Expression And Activity 1
## Resolution Of D Loop Structures 1
## Rho Gtpases Activate Iqgaps 1
## Rho Gtpases Activate Wasps And Waves 1
## Rhod Gtpase Cycle 2
## Rhog Gtpase Cycle 4
## Rhou Gtpase Cycle 1
## Rhov Gtpase Cycle 1
## Ros And Rns Production In Phagocytes 1
## Sialic Acid Metabolism 1
## Signal Amplification 1
## Signaling By Erbb4 3
## Signaling By Moderate Kinase Activity Braf Mutants 2
## Signaling By Notch2 1
## Signaling By Pdgf 3
## Signalling To Erks 1
## Thrombin Signalling Through Proteinase Activated Receptors Pars 1
## Transcriptional Regulation Of Pluripotent Stem Cells 1
## 2 Ltr Circle Formation 0
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 0
## Abacavir Metabolism 0
## Abacavir Transmembrane Transport 0
## Abacavir Transport And Metabolism 0
## Abc Family Proteins Mediated Transport 2
## Abc Transporter Disorders 2
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 0
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 0
## Acetylcholine Binding And Downstream Events 0
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 0
## Acetylcholine Neurotransmitter Release Cycle 0
## Acetylcholine Regulates Insulin Secretion 0
## Acrosome Reaction And Sperm Oocyte Membrane Binding 0
## Activated Notch1 Transmits Signal To The Nucleus 0
## Activated Ntrk2 Signals Through Cdk5 0
## Activated Ntrk2 Signals Through Frs2 And Frs3 0
## Activated Ntrk2 Signals Through Pi3k 0
## Activated Ntrk2 Signals Through Ras 0
## Activated Ntrk3 Signals Through Ras 0
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 0
## Activation Of Ampk Downstream Of Nmdars 0
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 0
## Activation Of Atr In Response To Replication Stress 0
## Activation Of Bad And Translocation To Mitochondria 0
## Activation Of Gene Expression By Srebf Srebp 0
## Activation Of Kainate Receptors Upon Glutamate Binding 0
## Activation Of Nmda Receptors And Postsynaptic Events 2
## Activation Of Noxa And Translocation To Mitochondria 0
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 0
## Activation Of Puma And Translocation To Mitochondria 0
## Activation Of Rac1 0
## Activation Of Rac1 Downstream Of Nmdars 0
## Activation Of Ras In B Cells 0
## Activation Of Smo 0
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 0
## Activation Of The Phototransduction Cascade 0
## Activation Of The Pre Replicative Complex 0
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 0
## Activation Of Trka Receptors 0
## Acyl Chain Remodeling Of Cl 0
## Acyl Chain Remodeling Of Dag And Tag 0
## Acyl Chain Remodelling Of Pc 0
## Acyl Chain Remodelling Of Pe 0
## Acyl Chain Remodelling Of Pg 0
## Acyl Chain Remodelling Of Pi 0
## Acyl Chain Remodelling Of Ps 0
## Adaptive Immune System 29
## Adenylate Cyclase Activating Pathway 0
## Adenylate Cyclase Inhibitory Pathway 0
## Adherens Junctions Interactions 0
## Adora2b Mediated Anti Inflammatory Cytokines Production 2
## Adp Signalling Through P2y Purinoceptor 12 0
## Adrenaline Noradrenaline Inhibits Insulin Secretion 0
## Adrenoceptors 0
## Aflatoxin Activation And Detoxification 0
## Aggrephagy 1
## Akt Phosphorylates Targets In The Cytosol 0
## Alpha Defensins 0
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 0
## Alpha Oxidation Of Phytanate 0
## Alpha Protein Kinase 1 Signaling Pathway 0
## Amine Ligand Binding Receptors 0
## Amino Acid Conjugation 0
## Amino Acid Transport Across The Plasma Membrane 0
## Amino Acids Regulate Mtorc1 0
## Ampk Inhibits Chrebp Transcriptional Activation Activity 0
## Amyloid Fiber Formation 2
## Anchoring Fibril Formation 0
## Anchoring Of The Basal Body To The Plasma Membrane 1
## Androgen Biosynthesis 0
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 5
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1
## Antigen Processing Ubiquitination Proteasome Degradation 0
## Antiviral Mechanism By Ifn Stimulated Genes 2
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 0
## Apc C Mediated Degradation Of Cell Cycle Proteins 1
## Apc Cdc20 Mediated Degradation Of Nek2a 0
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 0
## Apobec3g Mediated Resistance To Hiv 1 Infection 0
## Apoptosis 8
## Aquaporin Mediated Transport 0
## Arachidonate Production From Dag 0
## Arachidonic Acid Metabolism 1
## Arms Mediated Activation 0
## Aryl Hydrocarbon Receptor Signalling 0
## Asparagine N Linked Glycosylation 4
## Aspartate And Asparagine Metabolism 0
## Assembly And Cell Surface Presentation Of Nmda Receptors 0
## Assembly Of Active Lpl And Lipc Lipase Complexes 0
## Assembly Of The Hiv Virion 0
## Assembly Of The Orc Complex At The Origin Of Replication 0
## Assembly Of The Pre Replicative Complex 0
## Association Of Tric Cct With Target Proteins During Biosynthesis 1
## Asymmetric Localization Of Pcp Proteins 1
## Atf6 Atf6 Alpha Activates Chaperone Genes 0
## Atf6 Atf6 Alpha Activates Chaperones 0
## Attachment And Entry 0
## Attachment Of Gpi Anchor To Upar 0
## Attenuation Phase 0
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 0
## Aurka Activation By Tpx2 1
## Autophagy 4
## B Wich Complex Positively Regulates Rrna Expression 0
## Base Excision Repair 0
## Base Excision Repair Ap Site Formation 0
## Bbsome Mediated Cargo Targeting To Cilium 0
## Beta Catenin Independent Wnt Signaling 2
## Beta Catenin Phosphorylation Cascade 0
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 0
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 0
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 0
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 0
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 0
## Beta Oxidation Of Pristanoyl Coa 0
## Beta Oxidation Of Very Long Chain Fatty Acids 0
## Bicarbonate Transporters 0
## Bile Acid And Bile Salt Metabolism 0
## Binding And Uptake Of Ligands By Scavenger Receptors 4
## Biological Oxidations 0
## Biosynthesis Of Maresin Like Spms 0
## Biosynthesis Of Maresins 0
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1
## Biotin Transport And Metabolism 0
## Blood Group Systems Biosynthesis 0
## Budding And Maturation Of Hiv Virion 0
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 0
## Butyrophilin Btn Family Interactions 0
## C Type Lectin Receptors Clrs 5
## Ca2 Activated K Channels 0
## Ca2 Pathway 2
## Calcineurin Activates Nfat 0
## Calcitonin Like Ligand Receptors 0
## Calnexin Calreticulin Cycle 0
## Carboxyterminal Post Translational Modifications Of Tubulin 0
## Cardiac Conduction 1
## Cargo Recognition For Clathrin Mediated Endocytosis 5
## Cargo Trafficking To The Periciliary Membrane 0
## Carnitine Metabolism 0
## Cation Coupled Chloride Cotransporters 0
## Cd209 Dc Sign Signaling 0
## Cd22 Mediated Bcr Regulation 0
## Cdc42 Gtpase Cycle 5
## Cdc6 Association With The Orc Origin Complex 0
## Cell Cell Communication 2
## Cell Cell Junction Organization 0
## Cell Cycle 6
## Cell Cycle Checkpoints 2
## Cell Cycle Mitotic 4
## Cell Death Signalling Via Nrage Nrif And Nade 3
## Cell Extracellular Matrix Interactions 0
## Cell Junction Organization 0
## Cell Surface Interactions At The Vascular Wall 8
## Cellular Hexose Transport 0
## Cellular Response To Chemical Stress 3
## Cellular Response To Heat Stress 2
## Cellular Response To Hypoxia 0
## Cellular Response To Starvation 0
## Cellular Responses To External Stimuli 14
## Cellular Senescence 7
## Cgmp Effects 0
## Chl1 Interactions 0
## Cholesterol Biosynthesis 0
## Choline Catabolism 0
## Chondroitin Sulfate Biosynthesis 0
## Chondroitin Sulfate Dermatan Sulfate Metabolism 1
## Chrebp Activates Metabolic Gene Expression 0
## Chromatin Modifying Enzymes 3
## Chromosome Maintenance 1
## Chylomicron Clearance 0
## Cilium Assembly 1
## Circadian Clock 3
## Citric Acid Cycle Tca Cycle 0
## Class A 1 Rhodopsin Like Receptors 23
## Class B 2 Secretin Family Receptors 2
## Class C 3 Metabotropic Glutamate Pheromone Receptors 0
## Class I Mhc Mediated Antigen Processing Presentation 8
## Class I Peroxisomal Membrane Protein Import 0
## Clathrin Mediated Endocytosis 5
## Clec7a Dectin 1 Induces Nfat Activation 0
## Clec7a Dectin 1 Signaling 4
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 0
## Coenzyme A Biosynthesis 0
## Cohesin Loading Onto Chromatin 0
## Collagen Biosynthesis And Modifying Enzymes 0
## Collagen Chain Trimerization 0
## Collagen Formation 4
## Common Pathway Of Fibrin Clot Formation 0
## Competing Endogenous Rnas Cernas Regulate Pten Translation 0
## Complex I Biogenesis 0
## Condensation Of Prophase Chromosomes 1
## Conjugation Of Benzoate With Glycine 0
## Constitutive Signaling By Overexpressed Erbb2 0
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 0
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 0
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 0
## Copi Dependent Golgi To Er Retrograde Traffic 0
## Copi Independent Golgi To Er Retrograde Traffic 0
## Copi Mediated Anterograde Transport 2
## Copii Mediated Vesicle Transport 2
## Creatine Metabolism 0
## Creation Of C4 And C2 Activators 2
## Creb3 Factors Activate Genes 0
## Cristae Formation 0
## Crmps In Sema3a Signaling 0
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 0
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 0
## Cs Ds Degradation 0
## Cyclin A Cdk2 Associated Events At S Phase Entry 2
## Cyp2e1 Reactions 0
## Cytochrome P450 Arranged By Substrate Type 0
## Cytokine Signaling In Immune System 62
## Cytoprotection By Hmox1 3
## Cytosolic Iron Sulfur Cluster Assembly 0
## Cytosolic Sulfonation Of Small Molecules 0
## Cytosolic Trna Aminoacylation 0
## Dag And Ip3 Signaling 1
## Darpp 32 Events 0
## Deactivation Of The Beta Catenin Transactivating Complex 0
## Deadenylation Dependent Mrna Decay 0
## Deadenylation Of Mrna 0
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 1
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 0
## Defective B4galt7 Causes Eds Progeroid Type 0
## Defective Cftr Causes Cystic Fibrosis 1
## Defective Chst14 Causes Eds Musculocontractural Type 0
## Defective Chst3 Causes Sedcjd 0
## Defective Chst6 Causes Mcdc1 0
## Defective Chsy1 Causes Tpbs 0
## Defective Csf2rb Causes Smdp5 0
## Defective Ext2 Causes Exostoses 2 0
## Defective F9 Activation 0
## Defective Factor Ix Causes Hemophilia B 0
## Defective Lfng Causes Scdo3 0
## Defective Ripk1 Mediated Regulated Necrosis 0
## Defective St3gal3 Causes Mct12 And Eiee15 0
## Defects In Biotin Btn Metabolism 0
## Defects In Cobalamin B12 Metabolism 0
## Defects In Vitamin And Cofactor Metabolism 0
## Degradation Of Axin 0
## Degradation Of Beta Catenin By The Destruction Complex 1
## Degradation Of Cysteine And Homocysteine 0
## Degradation Of Dvl 0
## Degradation Of Gli1 By The Proteasome 0
## Degradation Of The Extracellular Matrix 6
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 0
## Detoxification Of Reactive Oxygen Species 0
## Deubiquitination 12
## Developmental Biology 15
## Digestion 0
## Digestion And Absorption 0
## Digestion Of Dietary Carbohydrate 0
## Digestion Of Dietary Lipid 0
## Diseases Associated With Glycosaminoglycan Metabolism 0
## Diseases Associated With N Glycosylation Of Proteins 0
## Diseases Associated With O Glycosylation Of Proteins 1
## Diseases Associated With Surfactant Metabolism 0
## Diseases Of Base Excision Repair 0
## Diseases Of Carbohydrate Metabolism 0
## Diseases Of Dna Repair 0
## Diseases Of Glycosylation 2
## Diseases Of Metabolism 2
## Diseases Of Mismatch Repair Mmr 0
## Diseases Of Mitotic Cell Cycle 1
## Diseases Of Programmed Cell Death 3
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 11
## Disinhibition Of Snare Formation 0
## Disorders Of Transmembrane Transporters 2
## Displacement Of Dna Glycosylase By Apex1 0
## Dna Damage Bypass 0
## Dna Damage Recognition In Gg Ner 0
## Dna Damage Reversal 0
## Dna Damage Telomere Stress Induced Senescence 1
## Dna Double Strand Break Repair 2
## Dna Double Strand Break Response 2
## Dna Methylation 2
## Dna Repair 2
## Dna Replication 0
## Dna Replication Initiation 0
## Dna Replication Pre Initiation 0
## Dna Strand Elongation 0
## Dopamine Neurotransmitter Release Cycle 0
## Dopamine Receptors 0
## Downregulation Of Erbb2 Erbb3 Signaling 0
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 0
## Downregulation Of Tgf Beta Receptor Signaling 0
## Downstream Signaling Events Of B Cell Receptor Bcr 1
## Downstream Signaling Of Activated Fgfr1 0
## Downstream Signaling Of Activated Fgfr2 0
## Downstream Signaling Of Activated Fgfr3 0
## Downstream Signaling Of Activated Fgfr4 0
## Dual Incision In Gg Ner 0
## Dual Incision In Tc Ner 0
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 0
## Ecm Proteoglycans 1
## Effects Of Pip2 Hydrolysis 0
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 0
## Eicosanoid Ligand Binding Receptors 0
## Eicosanoids 0
## Elastic Fibre Formation 1
## Electric Transmission Across Gap Junctions 0
## Elevation Of Cytosolic Ca2 Levels 0
## Endogenous Sterols 0
## Endosomal Sorting Complex Required For Transport Escrt 0
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 0
## Eph Ephrin Signaling 5
## Epigenetic Regulation Of Gene Expression 3
## Er Quality Control Compartment Erqc 0
## Er To Golgi Anterograde Transport 3
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 0
## Erk Mapk Targets 0
## Erks Are Inactivated 0
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 0
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 0
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 0
## Erythropoietin Activates Phospholipase C Gamma Plcg 0
## Erythropoietin Activates Ras 0
## Erythropoietin Activates Stat5 0
## Esr Mediated Signaling 10
## Establishment Of Sister Chromatid Cohesion 0
## Estrogen Biosynthesis 0
## Estrogen Dependent Gene Expression 2
## Estrogen Stimulated Signaling Through Prkcz 0
## Ethanol Oxidation 0
## Eukaryotic Translation Elongation 0
## Eukaryotic Translation Initiation 0
## Export Of Viral Ribonucleoproteins From Nucleus 0
## Extension Of Telomeres 1
## Extracellular Matrix Organization 13
## Extrinsic Pathway Of Fibrin Clot Formation 0
## Factors Involved In Megakaryocyte Development And Platelet Production 1
## Fanconi Anemia Pathway 0
## Fatty Acid Metabolism 1
## Fatty Acids 0
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 0
## Fatty Acyl Coa Biosynthesis 0
## Fbxw7 Mutants And Notch1 In Cancer 0
## Fc Epsilon Receptor Fceri Signaling 4
## Fceri Mediated Ca 2 Mobilization 1
## Fceri Mediated Mapk Activation 3
## Fceri Mediated Nf Kb Activation 1
## Fcgamma Receptor Fcgr Dependent Phagocytosis 3
## Fcgr Activation 1
## Fcgr3a Mediated Il10 Synthesis 3
## Fertilization 0
## Fgfr1 Ligand Binding And Activation 0
## Fgfr1b Ligand Binding And Activation 0
## Fgfr1c Ligand Binding And Activation 0
## Fgfr2 Alternative Splicing 0
## Fgfr2 Ligand Binding And Activation 0
## Fgfr2 Mutant Receptor Activation 0
## Fgfr2b Ligand Binding And Activation 0
## Fgfr2c Ligand Binding And Activation 0
## Fgfr3 Ligand Binding And Activation 0
## Fgfr3b Ligand Binding And Activation 0
## Fgfrl1 Modulation Of Fgfr1 Signaling 0
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 0
## Flt3 Signaling 0
## Flt3 Signaling By Cbl Mutants 0
## Flt3 Signaling In Disease 0
## Flt3 Signaling Through Src Family Kinases 0
## Folding Of Actin By Cct Tric 0
## Formation Of Apoptosome 0
## Formation Of Atp By Chemiosmotic Coupling 0
## Formation Of Fibrin Clot Clotting Cascade 1
## Formation Of Incision Complex In Gg Ner 0
## Formation Of Rna Pol Ii Elongation Complex 0
## Formation Of Senescence Associated Heterochromatin Foci Sahf 0
## Formation Of Tc Ner Pre Incision Complex 0
## Formation Of The Beta Catenin Tcf Transactivating Complex 2
## Formation Of The Cornified Envelope 0
## Formation Of The Early Elongation Complex 0
## Formation Of Tubulin Folding Intermediates By Cct Tric 0
## Formation Of Xylulose 5 Phosphate 0
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 0
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 0
## Free Fatty Acid Receptors 0
## Free Fatty Acids Regulate Insulin Secretion 0
## Frs Mediated Fgfr1 Signaling 0
## Frs Mediated Fgfr2 Signaling 0
## Frs Mediated Fgfr3 Signaling 0
## Frs Mediated Fgfr4 Signaling 0
## Fructose Catabolism 0
## Fructose Metabolism 0
## G Alpha 12 13 Signalling Events 1
## G Alpha I Signalling Events 21
## G Alpha Q Signalling Events 5
## G Alpha S Signalling Events 1
## G Alpha Z Signalling Events 0
## G Beta Gamma Signalling Through Pi3kgamma 0
## G Protein Activation 0
## G Protein Mediated Events 1
## G1 S Dna Damage Checkpoints 1
## G2 M Checkpoints 2
## G2 M Dna Damage Checkpoint 2
## G2 Phase 0
## Gaba B Receptor Activation 0
## Gaba Receptor Activation 0
## Gaba Synthesis Release Reuptake And Degradation 0
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 0
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 0
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 0
## Gap Junction Assembly 0
## Gap Junction Degradation 0
## Gap Junction Trafficking And Regulation 1
## Gdp Fucose Biosynthesis 0
## Gene Silencing By Rna 0
## Generation Of Second Messenger Molecules 1
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 0
## Global Genome Nucleotide Excision Repair Gg Ner 0
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 0
## Glucagon Signaling In Metabolic Regulation 0
## Glucagon Type Ligand Receptors 0
## Glucocorticoid Biosynthesis 0
## Gluconeogenesis 0
## Glucose Metabolism 0
## Glucuronidation 0
## Glutamate And Glutamine Metabolism 0
## Glutamate Neurotransmitter Release Cycle 0
## Glutathione Conjugation 0
## Glutathione Synthesis And Recycling 0
## Glycerophospholipid Biosynthesis 0
## Glycerophospholipid Catabolism 0
## Glycogen Breakdown Glycogenolysis 0
## Glycogen Metabolism 0
## Glycogen Storage Diseases 0
## Glycogen Synthesis 0
## Glycolysis 0
## Glycosaminoglycan Metabolism 1
## Glycosphingolipid Metabolism 0
## Glyoxylate Metabolism And Glycine Degradation 0
## Golgi Associated Vesicle Biogenesis 0
## Golgi To Er Retrograde Transport 0
## Gpcr Ligand Binding 25
## Grb7 Events In Erbb2 Signaling 0
## Hats Acetylate Histones 0
## Hcmv Early Events 2
## Hcmv Infection 2
## Hcmv Late Events 0
## Hdacs Deacetylate Histones 0
## Hdms Demethylate Histones 0
## Hdr Through Homologous Recombination Hrr 1
## Hdr Through Mmej Alt Nhej 0
## Hedgehog Ligand Biogenesis 0
## Hedgehog Off State 0
## Hedgehog On State 0
## Heme Biosynthesis 0
## Hemostasis 15
## Heparan Sulfate Heparin Hs Gag Metabolism 0
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 0
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 0
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 0
## Histidine Catabolism 0
## Hiv Elongation Arrest And Recovery 0
## Hiv Infection 2
## Hiv Life Cycle 2
## Hiv Transcription Elongation 0
## Hiv Transcription Initiation 0
## Homologous Dna Pairing And Strand Exchange 1
## Homology Directed Repair 1
## Hormone Ligand Binding Receptors 0
## Host Interactions Of Hiv Factors 0
## Hs Gag Biosynthesis 0
## Hs Gag Degradation 0
## Hsf1 Activation 0
## Hsf1 Dependent Transactivation 0
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 0
## Hur Elavl1 Binds And Stabilizes Mrna 0
## Hyaluronan Biosynthesis And Export 0
## Hyaluronan Metabolism 0
## Hyaluronan Uptake And Degradation 0
## Hydrolysis Of Lpc 0
## Il 6 Type Cytokine Receptor Ligand Interactions 0
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 11
## Infectious Disease 21
## Influenza Infection 0
## Inhibition Of Dna Recombination At Telomere 0
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 0
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 0
## Initial Triggering Of Complement 4
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 0
## Innate Immune System 66
## Inositol Phosphate Metabolism 0
## Insulin Processing 0
## Insulin Receptor Recycling 0
## Insulin Receptor Signalling Cascade 1
## Integration Of Energy Metabolism 0
## Integration Of Provirus 0
## Integrin Cell Surface Interactions 2
## Interaction Between L1 And Ankyrins 0
## Interaction With Cumulus Cells And The Zona Pellucida 0
## Interactions Of Rev With Host Cellular Proteins 0
## Interactions Of Vpr With Host Cellular Proteins 0
## Interconversion Of Nucleotide Di And Triphosphates 0
## Interferon Alpha Beta Signaling 3
## Interferon Gamma Signaling 5
## Interferon Signaling 6
## Interleukin 36 Pathway 0
## Intestinal Absorption 0
## Intra Golgi And Retrograde Golgi To Er Traffic 1
## Intra Golgi Traffic 0
## Intracellular Signaling By Second Messengers 10
## Intraflagellar Transport 0
## Inwardly Rectifying K Channels 0
## Ion Channel Transport 1
## Ion Homeostasis 0
## Ion Transport By P Type Atpases 0
## Ionotropic Activity Of Kainate Receptors 0
## Irak2 Mediated Activation Of Tak1 Complex 0
## Ire1alpha Activates Chaperones 0
## Irf3 Mediated Activation Of Type 1 Ifn 0
## Iron Uptake And Transport 1
## Irs Activation 0
## Irs Mediated Signalling 1
## Josephin Domain Dubs 0
## Keratan Sulfate Biosynthesis 0
## Keratan Sulfate Degradation 0
## Keratan Sulfate Keratin Metabolism 0
## Keratinization 0
## Ketone Body Metabolism 0
## Kinesins 0
## Ksrp Khsrp Binds And Destabilizes Mrna 0
## L1cam Interactions 3
## Lagging Strand Synthesis 0
## Laminin Interactions 0
## Leishmania Infection 16
## Leukotriene Receptors 0
## Lgi Adam Interactions 0
## Ligand Receptor Interactions 0
## Linoleic Acid La Metabolism 0
## Lipid Particle Organization 0
## Lipophagy 0
## Loss Of Function Of Mecp2 In Rett Syndrome 0
## Loss Of Function Of Smad2 3 In Cancer 0
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 0
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 0
## Ltc4 Cysltr Mediated Il4 Production 0
## Lysine Catabolism 0
## Lysosome Vesicle Biogenesis 0
## Lysosphingolipid And Lpa Receptors 0
## M Phase 1
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 0
## Mapk Family Signaling Cascades 11
## Mapk6 Mapk4 Signaling 4
## Maturation Of Nucleoprotein 0
## Maturation Of Protein 3a 0
## Maturation Of Sars Cov 1 Spike Protein 0
## Maturation Of Sars Cov 2 Spike Protein 0
## Meiosis 2
## Meiotic Recombination 2
## Meiotic Synapsis 0
## Melanin Biosynthesis 0
## Membrane Trafficking 10
## Met Activates Pi3k Akt Signaling 0
## Met Activates Ptpn11 0
## Met Activates Rap1 And Rac1 0
## Met Activates Ras Signaling 0
## Met Interacts With Tns Proteins 0
## Met Promotes Cell Motility 1
## Met Receptor Activation 0
## Met Receptor Recycling 0
## Metabolic Disorders Of Biological Oxidation Enzymes 0
## Metabolism Of Amine Derived Hormones 0
## Metabolism Of Amino Acids And Derivatives 1
## Metabolism Of Angiotensinogen To Angiotensins 0
## Metabolism Of Carbohydrates 2
## Metabolism Of Cofactors 0
## Metabolism Of Fat Soluble Vitamins 1
## Metabolism Of Folate And Pterines 0
## Metabolism Of Ingested Semet Sec Mesec Into H2se 0
## Metabolism Of Lipids 4
## Metabolism Of Nucleotides 1
## Metabolism Of Polyamines 0
## Metabolism Of Rna 0
## Metabolism Of Steroid Hormones 0
## Metabolism Of Steroids 0
## Metabolism Of Vitamins And Cofactors 3
## Metabolism Of Water Soluble Vitamins And Cofactors 2
## Metal Ion Slc Transporters 0
## Metal Sequestration By Antimicrobial Proteins 0
## Metallothioneins Bind Metals 0
## Methionine Salvage Pathway 0
## Methylation 0
## Mhc Class Ii Antigen Presentation 2
## Microrna Mirna Biogenesis 0
## Mineralocorticoid Biosynthesis 0
## Miro Gtpase Cycle 0
## Miscellaneous Substrates 0
## Miscellaneous Transport And Binding Events 0
## Mismatch Repair 0
## Mitochondrial Biogenesis 1
## Mitochondrial Calcium Ion Transport 0
## Mitochondrial Fatty Acid Beta Oxidation 0
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 0
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 0
## Mitochondrial Iron Sulfur Cluster Biogenesis 0
## Mitochondrial Protein Import 0
## Mitochondrial Translation 0
## Mitochondrial Trna Aminoacylation 0
## Mitochondrial Uncoupling 0
## Mitotic G1 Phase And G1 S Transition 4
## Mitotic G2 G2 M Phases 1
## Mitotic Metaphase And Anaphase 1
## Mitotic Prometaphase 1
## Mitotic Prophase 1
## Mitotic Spindle Checkpoint 0
## Mitotic Telophase Cytokinesis 0
## Molecules Associated With Elastic Fibres 0
## Molybdenum Cofactor Biosynthesis 0
## Mrna Capping 0
## Mrna Decay By 3 To 5 Exoribonuclease 0
## Mrna Decay By 5 To 3 Exoribonuclease 0
## Mrna Editing 0
## Mrna Editing C To U Conversion 0
## Mrna Splicing 0
## Mrna Splicing Minor Pathway 0
## Mtor Signalling 0
## Mtorc1 Mediated Signalling 0
## Mucopolysaccharidoses 0
## Multifunctional Anion Exchangers 0
## Muscarinic Acetylcholine Receptors 0
## Muscle Contraction 1
## Myoclonic Epilepsy Of Lafora 0
## N Glycan Antennae Elongation 0
## N Glycan Antennae Elongation In The Medial Trans Golgi 0
## N Glycan Trimming And Elongation In The Cis Golgi 0
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 0
## Na Cl Dependent Neurotransmitter Transporters 0
## Ncam Signaling For Neurite Out Growth 2
## Ncam1 Interactions 0
## Nectin Necl Trans Heterodimerization 0
## Neddylation 0
## Nef And Signal Transduction 0
## Nef Mediated Cd4 Down Regulation 0
## Nef Mediated Cd8 Down Regulation 0
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 0
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 0
## Negative Epigenetic Regulation Of Rrna Expression 2
## Negative Feedback Regulation Of Mapk Pathway 0
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 0
## Negative Regulation Of Flt3 0
## Negative Regulation Of Mapk Pathway 0
## Negative Regulation Of Met Activity 0
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 0
## Negative Regulation Of Notch4 Signaling 0
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 0
## Nephrin Family Interactions 0
## Nervous System Development 11
## Neurexins And Neuroligins 0
## Neurofascin Interactions 0
## Neuronal System 3
## Neurotoxicity Of Clostridium Toxins 0
## Neurotransmitter Clearance 0
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 2
## Neurotransmitter Release Cycle 0
## Neutrophil Degranulation 24
## Ngf Independant Trka Activation 0
## Nitric Oxide Stimulates Guanylate Cyclase 0
## Non Integrin Membrane Ecm Interactions 0
## Noncanonical Activation Of Notch3 0
## Nonhomologous End Joining Nhej 1
## Nonsense Mediated Decay Nmd 0
## Norepinephrine Neurotransmitter Release Cycle 0
## Notch Hlh Transcription Pathway 0
## Notch1 Intracellular Domain Regulates Transcription 1
## Notch2 Activation And Transmission Of Signal To The Nucleus 0
## Notch4 Activation And Transmission Of Signal To The Nucleus 0
## Notch4 Intracellular Domain Regulates Transcription 0
## Nr1h2 And Nr1h3 Mediated Signaling 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 0
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 0
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 0
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 0
## Nrage Signals Death Through Jnk 2
## Nrcam Interactions 0
## Ns1 Mediated Effects On Host Pathways 0
## Ntrk2 Activates Rac1 0
## Nuclear Envelope Breakdown 1
## Nuclear Envelope Ne Reassembly 1
## Nuclear Events Kinase And Transcription Factor Activation 2
## Nuclear Import Of Rev Protein 0
## Nuclear Receptor Transcription Pathway 0
## Nucleobase Biosynthesis 0
## Nucleobase Catabolism 0
## Nucleotide Excision Repair 0
## Nucleotide Like Purinergic Receptors 0
## O Glycosylation Of Tsr Domain Containing Proteins 0
## O Linked Glycosylation 1
## O Linked Glycosylation Of Mucins 1
## Olfactory Signaling Pathway 0
## Oncogenic Mapk Signaling 2
## Opioid Signalling 1
## Opsins 0
## Orc1 Removal From Chromatin 0
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 0
## Organelle Biogenesis And Maintenance 2
## Organic Anion Transport 0
## Organic Anion Transporters 0
## Organic Cation Anion Zwitterion Transport 0
## Organic Cation Transport 0
## Oxidative Stress Induced Senescence 3
## P2y Receptors 0
## P75ntr Negatively Regulates Cell Cycle Via Sc1 0
## Parasite Infection 3
## Passive Transport By Aquaporins 0
## Pcna Dependent Long Patch Base Excision Repair 0
## Pcp Ce Pathway 1
## Pentose Phosphate Pathway 0
## Peptide Hormone Biosynthesis 0
## Peptide Hormone Metabolism 1
## Peroxisomal Lipid Metabolism 0
## Peroxisomal Protein Import 0
## Phase 0 Rapid Depolarisation 0
## Phase 1 Inactivation Of Fast Na Channels 0
## Phase 2 Plateau Phase 0
## Phase 3 Rapid Repolarisation 0
## Phase I Functionalization Of Compounds 0
## Phase Ii Conjugation Of Compounds 0
## Phenylalanine And Tyrosine Metabolism 0
## Phenylalanine Metabolism 0
## Phosphate Bond Hydrolysis By Ntpdase Proteins 0
## Phosphate Bond Hydrolysis By Nudt Proteins 0
## Phospholipase C Mediated Cascade Fgfr2 0
## Phospholipase C Mediated Cascade Fgfr4 0
## Phospholipid Metabolism 1
## Physiological Factors 0
## Pi 3k Cascade Fgfr1 0
## Pi 3k Cascade Fgfr2 0
## Pi 3k Cascade Fgfr3 0
## Pi 3k Cascade Fgfr4 0
## Pi Metabolism 1
## Pi3k Akt Activation 0
## Pi3k Events In Erbb4 Signaling 0
## Pi5p Regulates Tp53 Acetylation 0
## Piwi Interacting Rna Pirna Biogenesis 0
## Pka Activation In Glucagon Signalling 0
## Pka Mediated Phosphorylation Of Key Metabolic Factors 0
## Pkmts Methylate Histone Lysines 0
## Plasma Lipoprotein Assembly Remodeling And Clearance 2
## Platelet Activation Signaling And Aggregation 8
## Platelet Calcium Homeostasis 0
## Platelet Homeostasis 0
## Platelet Sensitization By Ldl 0
## Polb Dependent Long Patch Base Excision Repair 0
## Polo Like Kinase Mediated Events 0
## Polymerase Switching 0
## Polymerase Switching On The C Strand Of The Telomere 0
## Positive Epigenetic Regulation Of Rrna Expression 0
## Post Chaperonin Tubulin Folding Pathway 0
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1
## Postmitotic Nuclear Pore Complex Npc Reformation 0
## Potassium Channels 1
## Potential Therapeutics For Sars 1
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 0
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 0
## Prc2 Methylates Histones And Dna 2
## Pre Notch Expression And Processing 0
## Pre Notch Processing In Golgi 0
## Pre Notch Processing In The Endoplasmic Reticulum 0
## Pregnenolone Biosynthesis 0
## Presynaptic Depolarization And Calcium Channel Opening 0
## Presynaptic Function Of Kainate Receptors 0
## Prevention Of Phagosomal Lysosomal Fusion 0
## Processing And Activation Of Sumo 0
## Processing Of Capped Intron Containing Pre Mrna 0
## Processing Of Capped Intronless Pre Mrna 0
## Processing Of Dna Double Strand Break Ends 1
## Processing Of Intronless Pre Mrnas 0
## Processing Of Smdt1 0
## Processive Synthesis On The C Strand Of The Telomere 0
## Processive Synthesis On The Lagging Strand 0
## Programmed Cell Death 12
## Prolactin Receptor Signaling 0
## Prolonged Erk Activation Events 0
## Propionyl Coa Catabolism 0
## Prostacyclin Signalling Through Prostacyclin Receptor 0
## Prostanoid Ligand Receptors 0
## Protein Folding 1
## Protein Localization 1
## Protein Methylation 0
## Protein Protein Interactions At Synapses 0
## Protein Ubiquitination 0
## Proton Coupled Monocarboxylate Transport 0
## Pten Regulation 0
## Ptk6 Expression 0
## Ptk6 Regulates Proteins Involved In Rna Processing 0
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 0
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 0
## Purine Catabolism 0
## Purine Ribonucleoside Monophosphate Biosynthesis 0
## Pyrimidine Catabolism 0
## Pyrimidine Salvage 0
## Pyruvate Metabolism 0
## Pyruvate Metabolism And Citric Acid Tca Cycle 0
## Ra Biosynthesis Pathway 0
## Rab Gefs Exchange Gtp For Gdp On Rabs 1
## Rab Geranylgeranylation 1
## Rab Regulation Of Trafficking 1
## Rac1 Gtpase Cycle 5
## Rac2 Gtpase Cycle 4
## Rac3 Gtpase Cycle 5
## Rap1 Signalling 0
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 0
## Ras Processing 0
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 0
## Reactions Specific To The Complex N Glycan Synthesis Pathway 0
## Receptor Type Tyrosine Protein Phosphatases 0
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 0
## Recognition Of Dna Damage By Pcna Containing Replication Complex 0
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1
## Recruitment Of Numa To Mitotic Centrosomes 1
## Recycling Of Bile Acids And Salts 0
## Recycling Of Eif2 Gdp 0
## Recycling Pathway Of L1 1
## Reduction Of Cytosolic Ca Levels 0
## Reelin Signalling Pathway 0
## Regulated Proteolysis Of P75ntr 0
## Regulation Of Bach1 Activity 0
## Regulation Of Beta Cell Development 0
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 0
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 0
## Regulation Of Expression Of Slits And Robos 0
## Regulation Of Fzd By Ubiquitination 0
## Regulation Of Gene Expression By Hypoxia Inducible Factor 0
## Regulation Of Gene Expression In Beta Cells 0
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 0
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 0
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 0
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 0
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 0
## Regulation Of Hmox1 Expression And Activity 1
## Regulation Of Hsf1 Mediated Heat Shock Response 2
## Regulation Of Innate Immune Responses To Cytosolic Dna 0
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 6
## Regulation Of Insulin Secretion 0
## Regulation Of Lipid Metabolism By Pparalpha 1
## Regulation Of Localization Of Foxo Transcription Factors 0
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 0
## Regulation Of Plk1 Activity At G2 M Transition 1
## Regulation Of Pten Gene Transcription 0
## Regulation Of Pten Localization 0
## Regulation Of Pten Mrna Translation 0
## Regulation Of Pten Stability And Activity 0
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 0
## Regulation Of Ras By Gaps 0
## Regulation Of Runx2 Expression And Activity 2
## Regulation Of Runx3 Expression And Activity 1
## Regulation Of Signaling By Cbl 0
## Regulation Of Signaling By Nodal 0
## Regulation Of Tp53 Activity 2
## Regulation Of Tp53 Activity Through Acetylation 0
## Regulation Of Tp53 Activity Through Association With Co Factors 0
## Regulation Of Tp53 Activity Through Phosphorylation 1
## Relaxin Receptors 0
## Release Of Apoptotic Factors From The Mitochondria 0
## Release Of Hh Np From The Secreting Cell 0
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 0
## Reproduction 2
## Resolution Of Abasic Sites Ap Sites 0
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 0
## Resolution Of Sister Chromatid Cohesion 1
## Respiratory Electron Transport 0
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 0
## Response Of Eif2ak1 Hri To Heme Deficiency 0
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 0
## Response Of Mtb To Phagocytosis 0
## Response To Elevated Platelet Cytosolic Ca2 5
## Response To Metal Ions 0
## Ret Signaling 1
## Retinoid Cycle Disease Events 0
## Retrograde Neurotrophin Signalling 0
## Retrograde Transport At The Trans Golgi Network 1
## Reversible Hydration Of Carbon Dioxide 0
## Rho Gtpase Cycle 6
## Rho Gtpase Effectors 4
## Rho Gtpases Activate Cit 0
## Rho Gtpases Activate Formins 2
## Rho Gtpases Activate Pkns 0
## Rho Gtpases Activate Rhotekin And Rhophilins 0
## Rho Gtpases Activate Rocks 0
## Rhoa Gtpase Cycle 3
## Rhob Gtpase Cycle 3
## Rhobtb Gtpase Cycle 0
## Rhobtb1 Gtpase Cycle 0
## Rhobtb2 Gtpase Cycle 0
## Rhobtb3 Atpase Cycle 0
## Rhoc Gtpase Cycle 3
## Rhot1 Gtpase Cycle 0
## Rmts Methylate Histone Arginines 2
## Rna Polymerase I Promoter Escape 0
## Rna Polymerase I Transcription 0
## Rna Polymerase I Transcription Initiation 0
## Rna Polymerase I Transcription Termination 0
## Rna Polymerase Ii Transcribes Snrna Genes 0
## Rna Polymerase Ii Transcription Termination 0
## Rna Polymerase Iii Chain Elongation 0
## Rna Polymerase Iii Transcription 0
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 0
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 0
## Rna Polymerase Iii Transcription Termination 0
## Rnd1 Gtpase Cycle 1
## Rnd2 Gtpase Cycle 1
## Rnd3 Gtpase Cycle 1
## Robo Receptors Bind Akap5 0
## Role Of Abl In Robo Slit Signaling 0
## Role Of Lat2 Ntal Lab On Calcium Mobilization 0
## Role Of Phospholipids In Phagocytosis 0
## Role Of Second Messengers In Netrin 1 Signaling 0
## Rora Activates Gene Expression 0
## Rrna Modification In The Mitochondrion 0
## Rrna Modification In The Nucleus And Cytosol 0
## Rrna Processing 0
## Rrna Processing In The Mitochondrion 0
## Rsk Activation 0
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 0
## Runx1 Regulates Estrogen Receptor Mediated Transcription 0
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 0
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 0
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 0
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 0
## Runx3 Regulates Bcl2l11 Bim Transcription 0
## Runx3 Regulates Cdkn1a Transcription 0
## Runx3 Regulates Immune Response And Cell Migration 0
## Runx3 Regulates Notch Signaling 0
## Runx3 Regulates P14 Arf 0
## Runx3 Regulates Yap1 Mediated Transcription 0
## S Phase 2
## Sars Cov 1 Genome Replication And Transcription 0
## Sars Cov 1 Infection 0
## Sars Cov 2 Infection 0
## Sars Cov Infections 1
## Scavenging By Class F Receptors 0
## Scavenging Of Heme From Plasma 3
## Scf Skp2 Mediated Degradation Of P27 P21 1
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 0
## Selective Autophagy 4
## Selenoamino Acid Metabolism 0
## Sema3a Pak Dependent Axon Repulsion 0
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 0
## Sema4d In Semaphorin Signaling 0
## Sema4d Induced Cell Migration And Growth Cone Collapse 0
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 0
## Semaphorin Interactions 2
## Senescence Associated Secretory Phenotype Sasp 5
## Sensory Perception 1
## Sensory Processing Of Sound 0
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 0
## Separation Of Sister Chromatids 0
## Serine Biosynthesis 0
## Serotonin And Melatonin Biosynthesis 0
## Serotonin Neurotransmitter Release Cycle 0
## Serotonin Receptors 0
## Shc Mediated Cascade Fgfr1 0
## Shc Mediated Cascade Fgfr3 0
## Shc Mediated Cascade Fgfr4 0
## Shc Related Events Triggered By Igf1r 0
## Shc1 Events In Erbb4 Signaling 0
## Signal Attenuation 0
## Signaling By Activin 0
## Signaling By Bmp 0
## Signaling By Braf And Raf Fusions 2
## Signaling By Ctnnb1 Phospho Site Mutants 0
## Signaling By Erythropoietin 0
## Signaling By Fgfr 1
## Signaling By Fgfr In Disease 2
## Signaling By Fgfr1 1
## Signaling By Fgfr2 1
## Signaling By Fgfr2 Iiia Tm 0
## Signaling By Fgfr2 In Disease 0
## Signaling By Fgfr3 1
## Signaling By Fgfr3 Fusions In Cancer 0
## Signaling By Fgfr4 1
## Signaling By Fgfr4 In Disease 0
## Signaling By Flt3 Fusion Proteins 0
## Signaling By Flt3 Itd And Tkd Mutants 0
## Signaling By Gpcr 32
## Signaling By Hedgehog 0
## Signaling By Insulin Receptor 1
## Signaling By Lrp5 Mutants 0
## Signaling By Mapk Mutants 0
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 0
## Signaling By Met 2
## Signaling By Mras Complex Mutants 0
## Signaling By Mst1 0
## Signaling By Nodal 0
## Signaling By Notch 5
## Signaling By Notch1 1
## Signaling By Notch1 Hd Domain Mutants In Cancer 0
## Signaling By Notch1 Pest Domain Mutants In Cancer 1
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 0
## Signaling By Notch4 0
## Signaling By Ntrks 4
## Signaling By Nuclear Receptors 10
## Signaling By Receptor Tyrosine Kinases 12
## Signaling By Retinoic Acid 0
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 7
## Signaling By Rnf43 Mutants 0
## Signaling By Robo Receptors 3
## Signaling By Tgf Beta Receptor Complex 2
## Signaling By Tgf Beta Receptor Complex In Cancer 0
## Signaling By Tgfb Family Members 2
## Signaling By The B Cell Receptor Bcr 2
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 1
## Signaling By Vegf 4
## Signaling By Wnt 4
## Signaling By Wnt In Cancer 0
## Signalling To P38 Via Rit And Rin 0
## Sirt1 Negatively Regulates Rrna Expression 1
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 0
## Slc Mediated Transmembrane Transport 0
## Slc Transporter Disorders 0
## Small Interfering Rna Sirna Biogenesis 0
## Smooth Muscle Contraction 0
## Snrnp Assembly 0
## Sodium Calcium Exchangers 0
## Sodium Coupled Phosphate Cotransporters 0
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 0
## Sodium Proton Exchangers 0
## Sos Mediated Signalling 0
## Sperm Motility And Taxes 0
## Sphingolipid De Novo Biosynthesis 0
## Sphingolipid Metabolism 0
## Srp Dependent Cotranslational Protein Targeting To Membrane 0
## Stabilization Of P53 1
## Stat5 Activation 0
## Stat5 Activation Downstream Of Flt3 Itd Mutants 0
## Stimuli Sensing Channels 1
## Striated Muscle Contraction 0
## Sulfide Oxidation To Sulfate 0
## Sulfur Amino Acid Metabolism 0
## Sumo Is Conjugated To E1 Uba2 Sae1 0
## Sumo Is Proteolytically Processed 0
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 0
## Sumoylation 4
## Sumoylation Of Chromatin Organization Proteins 0
## Sumoylation Of Dna Damage Response And Repair Proteins 0
## Sumoylation Of Dna Replication Proteins 0
## Sumoylation Of Intracellular Receptors 0
## Sumoylation Of Rna Binding Proteins 0
## Sumoylation Of Sumoylation Proteins 0
## Sumoylation Of Transcription Cofactors 1
## Sumoylation Of Transcription Factors 0
## Sumoylation Of Ubiquitinylation Proteins 0
## Suppression Of Apoptosis 0
## Suppression Of Phagosomal Maturation 0
## Surfactant Metabolism 0
## Switching Of Origins To A Post Replicative State 0
## Synaptic Adhesion Like Molecules 0
## Syndecan Interactions 0
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 0
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 0
## Synthesis Of 5 Eicosatetraenoic Acids 0
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 0
## Synthesis Of Bile Acids And Bile Salts 0
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 0
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 0
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 0
## Synthesis Of Diphthamide Eef2 0
## Synthesis Of Dolichyl Phosphate 0
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 0
## Synthesis Of Gdp Mannose 0
## Synthesis Of Glycosylphosphatidylinositol Gpi 0
## Synthesis Of Ip2 Ip And Ins In The Cytosol 0
## Synthesis Of Ip3 And Ip4 In The Cytosol 0
## Synthesis Of Ketone Bodies 0
## Synthesis Of Leukotrienes Lt And Eoxins Ex 0
## Synthesis Of Lipoxins Lx 0
## Synthesis Of Pa 0
## Synthesis Of Pc 0
## Synthesis Of Pe 0
## Synthesis Of Pg 0
## Synthesis Of Pi 0
## Synthesis Of Pips At The Early Endosome Membrane 0
## Synthesis Of Pips At The Er Membrane 0
## Synthesis Of Pips At The Golgi Membrane 0
## Synthesis Of Pips At The Late Endosome Membrane 0
## Synthesis Of Pips At The Plasma Membrane 1
## Synthesis Of Pyrophosphates In The Cytosol 0
## Synthesis Of Substrates In N Glycan Biosythesis 1
## Synthesis Of Udp N Acetyl Glucosamine 0
## Synthesis Of Very Long Chain Fatty Acyl Coas 0
## Synthesis Of Wybutosine At G37 Of Trna Phe 0
## Synthesis Secretion And Deacylation Of Ghrelin 0
## Tachykinin Receptors Bind Tachykinins 0
## Tbc Rabgaps 0
## Tcf Dependent Signaling In Response To Wnt 4
## Tcr Signaling 3
## Telomere C Strand Lagging Strand Synthesis 0
## Telomere C Strand Synthesis Initiation 0
## Telomere Maintenance 1
## Terminal Pathway Of Complement 0
## Termination Of Translesion Dna Synthesis 0
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 0
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 0
## Tgf Beta Receptor Signaling Activates Smads 0
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 0
## The Activation Of Arylsulfatases 0
## The Canonical Retinoid Cycle In Rods Twilight Vision 0
## The Citric Acid Tca Cycle And Respiratory Electron Transport 0
## The Fatty Acid Cycling Model 0
## The Phototransduction Cascade 0
## The Retinoid Cycle In Cones Daylight Vision 0
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 0
## Thromboxane Signalling Through Tp Receptor 0
## Thyroxine Biosynthesis 0
## Tie2 Signaling 0
## Tight Junction Interactions 0
## Toxicity Of Botulinum Toxin Type D Botd 0
## Tp53 Regulates Metabolic Genes 0
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 0
## Tp53 Regulates Transcription Of Cell Cycle Genes 1
## Tp53 Regulates Transcription Of Death Receptors And Ligands 0
## Tp53 Regulates Transcription Of Dna Repair Genes 2
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 0
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 0
## Trafficking Of Ampa Receptors 0
## Trafficking Of Glur2 Containing Ampa Receptors 0
## Trafficking Of Myristoylated Proteins To The Cilium 0
## Trail Signaling 0
## Trans Golgi Network Vesicle Budding 0
## Transcription Coupled Nucleotide Excision Repair Tc Ner 0
## Transcription Of The Hiv Genome 0
## Transcriptional Activation Of Mitochondrial Biogenesis 1
## Transcriptional Regulation By E2f6 0
## Transcriptional Regulation By Mecp2 2
## Transcriptional Regulation By Runx1 6
## Transcriptional Regulation By Runx2 6
## Transcriptional Regulation By Runx3 2
## Transcriptional Regulation By Small Rnas 0
## Transcriptional Regulation By Tp53 4
## Transcriptional Regulation By Ventx 1
## Transcriptional Regulation Of Granulopoiesis 4
## Transcriptional Regulation Of Testis Differentiation 0
## Transcriptional Regulation Of White Adipocyte Differentiation 2
## Transferrin Endocytosis And Recycling 0
## Translation 0
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 0
## Translation Of Sars Cov 1 Structural Proteins 0
## Translation Of Sars Cov 2 Structural Proteins 0
## Translesion Synthesis By Polh 0
## Translesion Synthesis By Polk 0
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 0
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1
## Transmission Across Chemical Synapses 2
## Transport And Synthesis Of Paps 0
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 0
## Transport Of Connexons To The Plasma Membrane 0
## Transport Of Fatty Acids 0
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 0
## Transport Of Mature Mrnas Derived From Intronless Transcripts 0
## Transport Of Mature Transcript To Cytoplasm 0
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 0
## Transport Of Nucleotide Sugars 0
## Transport Of Organic Anions 0
## Transport Of Small Molecules 5
## Transport Of The Slbp Dependant Mature Mrna 0
## Transport Of Vitamins Nucleosides And Related Molecules 0
## Transport To The Golgi And Subsequent Modification 3
## Triglyceride Biosynthesis 0
## Triglyceride Metabolism 1
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 0
## Trna Aminoacylation 0
## Trna Modification In The Mitochondrion 0
## Trna Modification In The Nucleus And Cytosol 0
## Trna Processing 0
## Trna Processing In The Mitochondrion 0
## Trna Processing In The Nucleus 0
## Trp Channels 0
## Tryptophan Catabolism 0
## Type I Hemidesmosome Assembly 0
## Tyrosine Catabolism 0
## Tysnd1 Cleaves Peroxisomal Proteins 0
## Ub Specific Processing Proteases 6
## Ubiquinol Biosynthesis 0
## Uch Proteinases 0
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 0
## Unfolded Protein Response Upr 2
## Unwinding Of Dna 0
## Uptake And Actions Of Bacterial Toxins 0
## Uptake And Function Of Anthrax Toxins 0
## Uptake And Function Of Diphtheria Toxin 0
## Urea Cycle 0
## Vasopressin Like Receptors 0
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 0
## Vegf Ligand Receptor Interactions 0
## Vesicle Mediated Transport 14
## Viral Messenger Rna Synthesis 0
## Visual Phototransduction 1
## Vitamin B1 Thiamin Metabolism 0
## Vitamin B2 Riboflavin Metabolism 0
## Vitamin B5 Pantothenate Metabolism 0
## Vitamin C Ascorbate Metabolism 0
## Vitamin D Calciferol Metabolism 0
## Vitamins 0
## Vldl Assembly 0
## Vldl Clearance 0
## Voltage Gated Potassium Channels 0
## Vxpx Cargo Targeting To Cilium 0
## Wax And Plasmalogen Biosynthesis 0
## Wnt Mediated Activation Of Dvl 0
## Xenobiotics 0
## Zinc Efflux And Compartmentalization By The Slc30 Family 0
## Zinc Influx Into Cells By The Slc39 Gene Family 0
## Zinc Transporters 0
## background
## Interleukin 10 Signaling 1300
## Chemokine Receptors Bind Chemokines 1300
## Interleukin 4 And Interleukin 13 Signaling 1300
## Irak4 Deficiency Tlr2 4 1300
## Fibronectin Matrix Formation 1300
## Diseases Of Immune System 1300
## Regulation Of Tlr By Endogenous Ligand 1300
## Interleukin 18 Signaling 1300
## Cd163 Mediating An Anti Inflammatory Response 1300
## Interleukin 1 Processing 1300
## Purinergic Signaling In Leishmaniasis Infection 1300
## P75ntr Signals Via Nf Kb 1300
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 1300
## Interleukin 6 Signaling 1300
## Tnfs Bind Their Physiological Receptors 1300
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 1300
## Nod1 2 Signaling Pathway 1300
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 1300
## Cd28 Dependent Vav1 Pathway 1300
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 1300
## Killing Mechanisms 1300
## P75ntr Recruits Signalling Complexes 1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 1300
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 1300
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 1300
## Pyroptosis 1300
## Activation Of C3 And C5 1300
## Runx2 Regulates Genes Involved In Cell Migration 1300
## Ctla4 Inhibitory Signaling 1300
## Inflammasomes 1300
## Egfr Interacts With Phospholipase C Gamma 1300
## Egfr Transactivation By Gastrin 1300
## Interleukin 9 Signaling 1300
## Trif Mediated Programmed Cell Death 1300
## Activated Tak1 Mediates P38 Mapk Activation 1300
## Caspase Activation Via Death Receptors In The Presence Of Ligand 1300
## The Nlrp3 Inflammasome 1300
## Toll Like Receptor Tlr1 Tlr2 Cascade 1300
## Ovarian Tumor Domain Proteases 1300
## Activation Of The Ap 1 Family Of Transcription Factors 1300
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 1300
## Gab1 Signalosome 1300
## Interleukin 21 Signaling 1300
## Mapk3 Erk1 Activation 1300
## Rip Mediated Nfkb Activation Via Zbp1 1300
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 1300
## Activation Of Matrix Metalloproteinases 1300
## Apoptotic Cleavage Of Cell Adhesion Proteins 1300
## Interleukin 27 Signaling 1300
## Receptor Mediated Mitophagy 1300
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 1300
## Toll Like Receptor 9 Tlr9 Cascade 1300
## Gp1b Ix V Activation Signalling 1300
## Interleukin 35 Signalling 1300
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 1300
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 1300
## Signaling By Kit In Disease 1300
## Alternative Complement Activation 1300
## Fasl Cd95l Signaling 1300
## G2 M Dna Replication Checkpoint 1300
## Galactose Catabolism 1300
## Hdl Clearance 1300
## Mecp2 Regulates Transcription Factors 1300
## Nostrin Mediated Enos Trafficking 1300
## Runx1 Regulates Expression Of Components Of Tight Junctions 1300
## Runx2 Regulates Chondrocyte Maturation 1300
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 1300
## Apoptosis Induced Dna Fragmentation 1300
## Erbb2 Activates Ptk6 Signaling 1300
## Nf Kb Is Activated And Signals Survival 1300
## Tnfr1 Induced Proapoptotic Signaling 1300
## Trafficking And Processing Of Endosomal Tlr 1300
## Zbp1 Dai Mediated Induction Of Type I Ifns 1300
## Dcc Mediated Attractive Signaling 1300
## Early Phase Of Hiv Life Cycle 1300
## Interleukin 15 Signaling 1300
## Shc1 Events In Egfr Signaling 1300
## Toll Like Receptor Cascades 1300
## Activated Ntrk3 Signals Through Pi3k 1300
## Activation Of Caspases Through Apoptosome Mediated Cleavage 1300
## Biosynthesis Of Epa Derived Spms 1300
## Clec7a Inflammasome Pathway 1300
## Nade Modulates Death Signalling 1300
## Phosphorylation Of Emi1 1300
## Protein Repair 1300
## Ptk6 Promotes Hif1a Stabilization 1300
## Ptk6 Regulates Cell Cycle 1300
## Scavenging By Class B Receptors 1300
## Sensing Of Dna Double Strand Breaks 1300
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 1300
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 1300
## Tnfr1 Mediated Ceramide Production 1300
## Ikk Complex Recruitment Mediated By Rip1 1300
## Constitutive Signaling By Egfrviii 1300
## Erbb2 Regulates Cell Motility 1300
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 1300
## P130cas Linkage To Mapk Signaling For Integrins 1300
## Heme Signaling 1300
## Regulated Necrosis 1300
## Activated Ntrk2 Signals Through Fyn 1300
## Activation Of Nima Kinases Nek9 Nek6 Nek7 1300
## Creb Phosphorylation 1300
## Defective Factor Viii Causes Hemophilia A 1300
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 1300
## Ikba Variant Leads To Eda Id 1300
## Interleukin 6 Family Signaling 1300
## Modulation By Mtb Of Host Immune System 1300
## Myd88 Independent Tlr4 Cascade 1300
## Traf6 Mediated Nf Kb Activation 1300
## Cd28 Co Stimulation 1300
## Grb2 Events In Erbb2 Signaling 1300
## Pi3k Events In Erbb2 Signaling 1300
## Signal Regulatory Protein Family Interactions 1300
## Signaling By Erbb2 Ecd Mutants 1300
## Sumoylation Of Dna Methylation Proteins 1300
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 1300
## Beta Defensins 1300
## Extra Nuclear Estrogen Signaling 1300
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 1300
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 1300
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 1300
## Hdl Assembly 1300
## Inactivation Of Cdc42 And Rac1 1300
## Lectin Pathway Of Complement Activation 1300
## Mecp2 Regulates Transcription Of Neuronal Ligands 1300
## Netrin Mediated Repulsion Signals 1300
## Runx3 Regulates Wnt Signaling 1300
## Smac Xiap Regulated Apoptotic Response 1300
## Interleukin 2 Family Signaling 1300
## Signaling By Cytosolic Fgfr1 Fusion Mutants 1300
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 1300
## Dap12 Interactions 1300
## Downregulation Of Erbb4 Signaling 1300
## E2f Enabled Inhibition Of Pre Replication Complex Formation 1300
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 1300
## Interleukin 23 Signaling 1300
## Mapk1 Erk2 Activation 1300
## Oas Antiviral Response 1300
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 1300
## Interleukin 17 Signaling 1300
## Other Semaphorin Interactions 1300
## Pd 1 Signaling 1300
## Scavenging By Class A Receptors 1300
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 1300
## Akt Phosphorylates Targets In The Nucleus 1300
## Camk Iv Mediated Phosphorylation Of Creb 1300
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 1300
## Chylomicron Assembly 1300
## Chylomicron Remodeling 1300
## Dap12 Signaling 1300
## Downstream Signal Transduction 1300
## Hdl Remodeling 1300
## Mastl Facilitates Mitotic Progression 1300
## P75ntr Regulates Axonogenesis 1300
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 1300
## Regulation Of Foxo Transcriptional Activity By Acetylation 1300
## Interleukin 1 Family Signaling 1300
## Signaling By Pdgfr In Disease 1300
## Costimulation By The Cd28 Family 1300
## Peptide Ligand Binding Receptors 1300
## Tnfr1 Induced Nfkappab Signaling Pathway 1300
## Interleukin 37 Signaling 1300
## Signal Transduction By L1 1300
## Condensation Of Prometaphase Chromosomes 1300
## Dermatan Sulfate Biosynthesis 1300
## Dscam Interactions 1300
## Egfr Downregulation 1300
## Endosomal Vacuolar Pathway 1300
## Enos Activation 1300
## Mapk Targets Nuclear Events Mediated By Map Kinases 1300
## Pexophagy 1300
## Regulation By C Flip 1300
## Rho Gtpases Activate Ktn1 1300
## Signaling By Leptin 1300
## Sumoylation Of Immune Response Proteins 1300
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 1300
## Cd28 Dependent Pi3k Akt Signaling 1300
## Shc1 Events In Erbb2 Signaling 1300
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 1300
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 1300
## Interleukin 2 Signaling 1300
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 1300
## Notch2 Intracellular Domain Regulates Transcription 1300
## Pecam1 Interactions 1300
## Tandem Pore Domain Potassium Channels 1300
## Ticam1 Dependent Activation Of Irf3 Irf7 1300
## Vldlr Internalisation And Degradation 1300
## Raf Independent Mapk1 3 Activation 1300
## Defensins 1300
## Signaling By Scf Kit 1300
## Advanced Glycosylation Endproduct Receptor Signaling 1300
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 1300
## Cytochrome C Mediated Apoptotic Response 1300
## Dissolution Of Fibrin Clot 1300
## Growth Hormone Receptor Signaling 1300
## Irf3 Mediated Induction Of Type I Ifn 1300
## Negative Regulators Of Ddx58 Ifih1 Signaling 1300
## P38mapk Events 1300
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 1300
## Purine Salvage 1300
## Runx2 Regulates Osteoblast Differentiation 1300
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 1300
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 1300
## Regulation Of Tnfr1 Signaling 1300
## Golgi Cisternae Pericentriolar Stack Reorganization 1300
## Inactivation Of Csf3 G Csf Signaling 1300
## Irak1 Recruits Ikk Complex 1300
## Notch3 Activation And Transmission Of Signal To The Nucleus 1300
## Regulation Of Ifng Signaling 1300
## Repression Of Wnt Target Genes 1300
## Signaling By Egfr In Cancer 1300
## Traf3 Dependent Irf Activation Pathway 1300
## Interleukin 20 Family Signaling 1300
## Signaling By Erbb2 In Cancer 1300
## Depolymerisation Of The Nuclear Lamina 1300
## Heme Degradation 1300
## Interleukin 12 Family Signaling 1300
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 1300
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 1300
## Platelet Adhesion To Exposed Collagen 1300
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 1300
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 1300
## Wnt5a Dependent Internalization Of Fzd4 1300
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 1300
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 1300
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 1300
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 1300
## Foxo Mediated Transcription Of Cell Death Genes 1300
## G0 And Early G1 1300
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 1300
## Integrin Signaling 1300
## Interleukin Receptor Shc Signaling 1300
## Nrif Signals Cell Death From The Nucleus 1300
## Regulation Of Kit Signaling 1300
## Spry Regulation Of Fgf Signaling 1300
## Sting Mediated Induction Of Host Immune Responses 1300
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 1300
## Vegfr2 Mediated Vascular Permeability 1300
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 1300
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 1300
## Downregulation Of Erbb2 Signaling 1300
## Foxo Mediated Transcription Of Cell Cycle Genes 1300
## Mitophagy 1300
## Regulation Of Runx1 Expression And Activity 1300
## Ripk1 Mediated Regulated Necrosis 1300
## Signaling By Egfr 1300
## Signaling By Ntrk3 Trkc 1300
## Abc Transporters In Lipid Homeostasis 1300
## Crosslinking Of Collagen Fibrils 1300
## Diseases Associated With Glycosylation Precursor Biosynthesis 1300
## Eph Ephrin Mediated Repulsion Of Cells 1300
## Mecp2 Regulates Neuronal Receptors And Channels 1300
## Signaling By Csf3 G Csf 1300
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 1300
## Biosynthesis Of Specialized Proresolving Mediators Spms 1300
## Ephrin Signaling 1300
## Fgfr1 Mutant Receptor Activation 1300
## Initiation Of Nuclear Envelope Ne Reformation 1300
## Interleukin 1 Signaling 1300
## Ldl Clearance 1300
## Nicotinamide Salvaging 1300
## Nicotinate Metabolism 1300
## Phase 4 Resting Membrane Potential 1300
## Plasma Lipoprotein Assembly 1300
## Regulation Of Tp53 Activity Through Methylation 1300
## Runx2 Regulates Bone Development 1300
## Signaling By Interleukins 1300
## Tnfr2 Non Canonical Nf Kb Pathway 1300
## Transcription Of E2f Targets Under Negative Control By Dream Complex 1300
## Vegfr2 Mediated Cell Proliferation 1300
## Apoptotic Factor Mediated Response 1300
## Cargo Concentration In The Er 1300
## Collagen Degradation 1300
## G Beta Gamma Signalling Through Cdc42 1300
## Listeria Monocytogenes Entry Into Host Cells 1300
## Perk Regulates Gene Expression 1300
## Phosphorylation Of The Apc C 1300
## Pka Mediated Phosphorylation Of Creb 1300
## Plasma Lipoprotein Clearance 1300
## Signaling By Hippo 1300
## Signaling By Ptk6 1300
## Signalling To Ras 1300
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 1300
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 1300
## Tnf Signaling 1300
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 1300
## Branched Chain Amino Acid Catabolism 1300
## Chaperone Mediated Autophagy 1300
## Complement Cascade 1300
## Constitutive Signaling By Aberrant Pi3k In Cancer 1300
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 1300
## E2f Mediated Regulation Of Dna Replication 1300
## Gpvi Mediated Activation Cascade 1300
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 1300
## P75 Ntr Receptor Mediated Signalling 1300
## Pink1 Prkn Mediated Mitophagy 1300
## Rho Gtpases Activate Paks 1300
## Incretin Synthesis Secretion And Inactivation 1300
## Interleukin 12 Signaling 1300
## Intrinsic Pathway Of Fibrin Clot Formation 1300
## Long Term Potentiation 1300
## Nucleotide Salvage 1300
## Regulation Of Tp53 Expression And Degradation 1300
## Rhoh Gtpase Cycle 1300
## Rhoq Gtpase Cycle 1300
## Signaling By Notch3 1300
## Telomere Extension By Telomerase 1300
## Termination Of O Glycan Biosynthesis 1300
## Adp Signalling Through P2y Purinoceptor 1 1300
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 1300
## Apc C Cdc20 Mediated Degradation Of Cyclin B 1300
## Apoptotic Cleavage Of Cellular Proteins 1300
## Apoptotic Execution Phase 1300
## Assembly Of Collagen Fibrils And Other Multimeric Structures 1300
## Basigin Interactions 1300
## Constitutive Signaling By Akt1 E17k In Cancer 1300
## Cyclin A B1 B2 Associated Events During G2 M Transition 1300
## Cytosolic Sensors Of Pathogen Associated Dna 1300
## Death Receptor Signalling 1300
## Dectin 2 Family 1300
## Negative Regulation Of The Pi3k Akt Network 1300
## Netrin 1 Signaling 1300
## Ngf Stimulated Transcription 1300
## Notch3 Intracellular Domain Regulates Transcription 1300
## Other Interleukin Signaling 1300
## Platelet Aggregation Plug Formation 1300
## Regulation Of Ifna Signaling 1300
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 1300
## Rho Gtpases Activate Nadph Oxidases 1300
## Signaling By Erbb2 1300
## Signaling By Fgfr1 In Disease 1300
## Signaling By Ntrk2 Trkb 1300
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 1300
## Triglyceride Catabolism 1300
## Wnt Ligand Biogenesis And Trafficking 1300
## Antigen Processing Cross Presentation 1300
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 1300
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 1300
## Epha Mediated Growth Cone Collapse 1300
## Ephb Mediated Forward Signaling 1300
## G1 S Specific Transcription 1300
## Infection With Mycobacterium Tuberculosis 1300
## Intrinsic Pathway For Apoptosis 1300
## Map2k And Mapk Activation 1300
## Metabolism Of Porphyrins 1300
## Myogenesis 1300
## Negative Regulation Of Fgfr3 Signaling 1300
## Rhof Gtpase Cycle 1300
## Rhoj Gtpase Cycle 1300
## Tp53 Regulates Transcription Of Cell Death Genes 1300
## Traf6 Mediated Irf7 Activation 1300
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 1300
## Activation Of Bh3 Only Proteins 1300
## Antimicrobial Peptides 1300
## Ca Dependent Events 1300
## Cyclin D Associated Events In G1 1300
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 1300
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 1300
## Foxo Mediated Transcription 1300
## G Protein Beta Gamma Signalling 1300
## Hdr Through Single Strand Annealing Ssa 1300
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 1300
## Interleukin 7 Signaling 1300
## Late Endosomal Microautophagy 1300
## Met Activates Ptk2 Signaling 1300
## Metalloprotease Dubs 1300
## Negative Regulation Of Fgfr1 Signaling 1300
## Negative Regulation Of Fgfr2 Signaling 1300
## Negative Regulation Of Fgfr4 Signaling 1300
## Nuclear Pore Complex Npc Disassembly 1300
## Nuclear Signaling By Erbb4 1300
## Oncogene Induced Senescence 1300
## Pi3k Akt Signaling In Cancer 1300
## Plasma Lipoprotein Remodeling 1300
## Raf Activation 1300
## Regulation Of Mecp2 Expression And Activity 1300
## Resolution Of D Loop Structures 1300
## Rho Gtpases Activate Iqgaps 1300
## Rho Gtpases Activate Wasps And Waves 1300
## Rhod Gtpase Cycle 1300
## Rhog Gtpase Cycle 1300
## Rhou Gtpase Cycle 1300
## Rhov Gtpase Cycle 1300
## Ros And Rns Production In Phagocytes 1300
## Sialic Acid Metabolism 1300
## Signal Amplification 1300
## Signaling By Erbb4 1300
## Signaling By Moderate Kinase Activity Braf Mutants 1300
## Signaling By Notch2 1300
## Signaling By Pdgf 1300
## Signalling To Erks 1300
## Thrombin Signalling Through Proteinase Activated Receptors Pars 1300
## Transcriptional Regulation Of Pluripotent Stem Cells 1300
## 2 Ltr Circle Formation 1300
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 1300
## Abacavir Metabolism 1300
## Abacavir Transmembrane Transport 1300
## Abacavir Transport And Metabolism 1300
## Abc Family Proteins Mediated Transport 1300
## Abc Transporter Disorders 1300
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 1300
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 1300
## Acetylcholine Binding And Downstream Events 1300
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 1300
## Acetylcholine Neurotransmitter Release Cycle 1300
## Acetylcholine Regulates Insulin Secretion 1300
## Acrosome Reaction And Sperm Oocyte Membrane Binding 1300
## Activated Notch1 Transmits Signal To The Nucleus 1300
## Activated Ntrk2 Signals Through Cdk5 1300
## Activated Ntrk2 Signals Through Frs2 And Frs3 1300
## Activated Ntrk2 Signals Through Pi3k 1300
## Activated Ntrk2 Signals Through Ras 1300
## Activated Ntrk3 Signals Through Ras 1300
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 1300
## Activation Of Ampk Downstream Of Nmdars 1300
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 1300
## Activation Of Atr In Response To Replication Stress 1300
## Activation Of Bad And Translocation To Mitochondria 1300
## Activation Of Gene Expression By Srebf Srebp 1300
## Activation Of Kainate Receptors Upon Glutamate Binding 1300
## Activation Of Nmda Receptors And Postsynaptic Events 1300
## Activation Of Noxa And Translocation To Mitochondria 1300
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 1300
## Activation Of Puma And Translocation To Mitochondria 1300
## Activation Of Rac1 1300
## Activation Of Rac1 Downstream Of Nmdars 1300
## Activation Of Ras In B Cells 1300
## Activation Of Smo 1300
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 1300
## Activation Of The Phototransduction Cascade 1300
## Activation Of The Pre Replicative Complex 1300
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 1300
## Activation Of Trka Receptors 1300
## Acyl Chain Remodeling Of Cl 1300
## Acyl Chain Remodeling Of Dag And Tag 1300
## Acyl Chain Remodelling Of Pc 1300
## Acyl Chain Remodelling Of Pe 1300
## Acyl Chain Remodelling Of Pg 1300
## Acyl Chain Remodelling Of Pi 1300
## Acyl Chain Remodelling Of Ps 1300
## Adaptive Immune System 1300
## Adenylate Cyclase Activating Pathway 1300
## Adenylate Cyclase Inhibitory Pathway 1300
## Adherens Junctions Interactions 1300
## Adora2b Mediated Anti Inflammatory Cytokines Production 1300
## Adp Signalling Through P2y Purinoceptor 12 1300
## Adrenaline Noradrenaline Inhibits Insulin Secretion 1300
## Adrenoceptors 1300
## Aflatoxin Activation And Detoxification 1300
## Aggrephagy 1300
## Akt Phosphorylates Targets In The Cytosol 1300
## Alpha Defensins 1300
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 1300
## Alpha Oxidation Of Phytanate 1300
## Alpha Protein Kinase 1 Signaling Pathway 1300
## Amine Ligand Binding Receptors 1300
## Amino Acid Conjugation 1300
## Amino Acid Transport Across The Plasma Membrane 1300
## Amino Acids Regulate Mtorc1 1300
## Ampk Inhibits Chrebp Transcriptional Activation Activity 1300
## Amyloid Fiber Formation 1300
## Anchoring Fibril Formation 1300
## Anchoring Of The Basal Body To The Plasma Membrane 1300
## Androgen Biosynthesis 1300
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 1300
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1300
## Antigen Processing Ubiquitination Proteasome Degradation 1300
## Antiviral Mechanism By Ifn Stimulated Genes 1300
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 1300
## Apc C Mediated Degradation Of Cell Cycle Proteins 1300
## Apc Cdc20 Mediated Degradation Of Nek2a 1300
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 1300
## Apobec3g Mediated Resistance To Hiv 1 Infection 1300
## Apoptosis 1300
## Aquaporin Mediated Transport 1300
## Arachidonate Production From Dag 1300
## Arachidonic Acid Metabolism 1300
## Arms Mediated Activation 1300
## Aryl Hydrocarbon Receptor Signalling 1300
## Asparagine N Linked Glycosylation 1300
## Aspartate And Asparagine Metabolism 1300
## Assembly And Cell Surface Presentation Of Nmda Receptors 1300
## Assembly Of Active Lpl And Lipc Lipase Complexes 1300
## Assembly Of The Hiv Virion 1300
## Assembly Of The Orc Complex At The Origin Of Replication 1300
## Assembly Of The Pre Replicative Complex 1300
## Association Of Tric Cct With Target Proteins During Biosynthesis 1300
## Asymmetric Localization Of Pcp Proteins 1300
## Atf6 Atf6 Alpha Activates Chaperone Genes 1300
## Atf6 Atf6 Alpha Activates Chaperones 1300
## Attachment And Entry 1300
## Attachment Of Gpi Anchor To Upar 1300
## Attenuation Phase 1300
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 1300
## Aurka Activation By Tpx2 1300
## Autophagy 1300
## B Wich Complex Positively Regulates Rrna Expression 1300
## Base Excision Repair 1300
## Base Excision Repair Ap Site Formation 1300
## Bbsome Mediated Cargo Targeting To Cilium 1300
## Beta Catenin Independent Wnt Signaling 1300
## Beta Catenin Phosphorylation Cascade 1300
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 1300
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 1300
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 1300
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 1300
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 1300
## Beta Oxidation Of Pristanoyl Coa 1300
## Beta Oxidation Of Very Long Chain Fatty Acids 1300
## Bicarbonate Transporters 1300
## Bile Acid And Bile Salt Metabolism 1300
## Binding And Uptake Of Ligands By Scavenger Receptors 1300
## Biological Oxidations 1300
## Biosynthesis Of Maresin Like Spms 1300
## Biosynthesis Of Maresins 1300
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1300
## Biotin Transport And Metabolism 1300
## Blood Group Systems Biosynthesis 1300
## Budding And Maturation Of Hiv Virion 1300
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 1300
## Butyrophilin Btn Family Interactions 1300
## C Type Lectin Receptors Clrs 1300
## Ca2 Activated K Channels 1300
## Ca2 Pathway 1300
## Calcineurin Activates Nfat 1300
## Calcitonin Like Ligand Receptors 1300
## Calnexin Calreticulin Cycle 1300
## Carboxyterminal Post Translational Modifications Of Tubulin 1300
## Cardiac Conduction 1300
## Cargo Recognition For Clathrin Mediated Endocytosis 1300
## Cargo Trafficking To The Periciliary Membrane 1300
## Carnitine Metabolism 1300
## Cation Coupled Chloride Cotransporters 1300
## Cd209 Dc Sign Signaling 1300
## Cd22 Mediated Bcr Regulation 1300
## Cdc42 Gtpase Cycle 1300
## Cdc6 Association With The Orc Origin Complex 1300
## Cell Cell Communication 1300
## Cell Cell Junction Organization 1300
## Cell Cycle 1300
## Cell Cycle Checkpoints 1300
## Cell Cycle Mitotic 1300
## Cell Death Signalling Via Nrage Nrif And Nade 1300
## Cell Extracellular Matrix Interactions 1300
## Cell Junction Organization 1300
## Cell Surface Interactions At The Vascular Wall 1300
## Cellular Hexose Transport 1300
## Cellular Response To Chemical Stress 1300
## Cellular Response To Heat Stress 1300
## Cellular Response To Hypoxia 1300
## Cellular Response To Starvation 1300
## Cellular Responses To External Stimuli 1300
## Cellular Senescence 1300
## Cgmp Effects 1300
## Chl1 Interactions 1300
## Cholesterol Biosynthesis 1300
## Choline Catabolism 1300
## Chondroitin Sulfate Biosynthesis 1300
## Chondroitin Sulfate Dermatan Sulfate Metabolism 1300
## Chrebp Activates Metabolic Gene Expression 1300
## Chromatin Modifying Enzymes 1300
## Chromosome Maintenance 1300
## Chylomicron Clearance 1300
## Cilium Assembly 1300
## Circadian Clock 1300
## Citric Acid Cycle Tca Cycle 1300
## Class A 1 Rhodopsin Like Receptors 1300
## Class B 2 Secretin Family Receptors 1300
## Class C 3 Metabotropic Glutamate Pheromone Receptors 1300
## Class I Mhc Mediated Antigen Processing Presentation 1300
## Class I Peroxisomal Membrane Protein Import 1300
## Clathrin Mediated Endocytosis 1300
## Clec7a Dectin 1 Induces Nfat Activation 1300
## Clec7a Dectin 1 Signaling 1300
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 1300
## Coenzyme A Biosynthesis 1300
## Cohesin Loading Onto Chromatin 1300
## Collagen Biosynthesis And Modifying Enzymes 1300
## Collagen Chain Trimerization 1300
## Collagen Formation 1300
## Common Pathway Of Fibrin Clot Formation 1300
## Competing Endogenous Rnas Cernas Regulate Pten Translation 1300
## Complex I Biogenesis 1300
## Condensation Of Prophase Chromosomes 1300
## Conjugation Of Benzoate With Glycine 1300
## Constitutive Signaling By Overexpressed Erbb2 1300
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 1300
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 1300
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 1300
## Copi Dependent Golgi To Er Retrograde Traffic 1300
## Copi Independent Golgi To Er Retrograde Traffic 1300
## Copi Mediated Anterograde Transport 1300
## Copii Mediated Vesicle Transport 1300
## Creatine Metabolism 1300
## Creation Of C4 And C2 Activators 1300
## Creb3 Factors Activate Genes 1300
## Cristae Formation 1300
## Crmps In Sema3a Signaling 1300
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 1300
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 1300
## Cs Ds Degradation 1300
## Cyclin A Cdk2 Associated Events At S Phase Entry 1300
## Cyp2e1 Reactions 1300
## Cytochrome P450 Arranged By Substrate Type 1300
## Cytokine Signaling In Immune System 1300
## Cytoprotection By Hmox1 1300
## Cytosolic Iron Sulfur Cluster Assembly 1300
## Cytosolic Sulfonation Of Small Molecules 1300
## Cytosolic Trna Aminoacylation 1300
## Dag And Ip3 Signaling 1300
## Darpp 32 Events 1300
## Deactivation Of The Beta Catenin Transactivating Complex 1300
## Deadenylation Dependent Mrna Decay 1300
## Deadenylation Of Mrna 1300
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 1300
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 1300
## Defective B4galt7 Causes Eds Progeroid Type 1300
## Defective Cftr Causes Cystic Fibrosis 1300
## Defective Chst14 Causes Eds Musculocontractural Type 1300
## Defective Chst3 Causes Sedcjd 1300
## Defective Chst6 Causes Mcdc1 1300
## Defective Chsy1 Causes Tpbs 1300
## Defective Csf2rb Causes Smdp5 1300
## Defective Ext2 Causes Exostoses 2 1300
## Defective F9 Activation 1300
## Defective Factor Ix Causes Hemophilia B 1300
## Defective Lfng Causes Scdo3 1300
## Defective Ripk1 Mediated Regulated Necrosis 1300
## Defective St3gal3 Causes Mct12 And Eiee15 1300
## Defects In Biotin Btn Metabolism 1300
## Defects In Cobalamin B12 Metabolism 1300
## Defects In Vitamin And Cofactor Metabolism 1300
## Degradation Of Axin 1300
## Degradation Of Beta Catenin By The Destruction Complex 1300
## Degradation Of Cysteine And Homocysteine 1300
## Degradation Of Dvl 1300
## Degradation Of Gli1 By The Proteasome 1300
## Degradation Of The Extracellular Matrix 1300
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 1300
## Detoxification Of Reactive Oxygen Species 1300
## Deubiquitination 1300
## Developmental Biology 1300
## Digestion 1300
## Digestion And Absorption 1300
## Digestion Of Dietary Carbohydrate 1300
## Digestion Of Dietary Lipid 1300
## Diseases Associated With Glycosaminoglycan Metabolism 1300
## Diseases Associated With N Glycosylation Of Proteins 1300
## Diseases Associated With O Glycosylation Of Proteins 1300
## Diseases Associated With Surfactant Metabolism 1300
## Diseases Of Base Excision Repair 1300
## Diseases Of Carbohydrate Metabolism 1300
## Diseases Of Dna Repair 1300
## Diseases Of Glycosylation 1300
## Diseases Of Metabolism 1300
## Diseases Of Mismatch Repair Mmr 1300
## Diseases Of Mitotic Cell Cycle 1300
## Diseases Of Programmed Cell Death 1300
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 1300
## Disinhibition Of Snare Formation 1300
## Disorders Of Transmembrane Transporters 1300
## Displacement Of Dna Glycosylase By Apex1 1300
## Dna Damage Bypass 1300
## Dna Damage Recognition In Gg Ner 1300
## Dna Damage Reversal 1300
## Dna Damage Telomere Stress Induced Senescence 1300
## Dna Double Strand Break Repair 1300
## Dna Double Strand Break Response 1300
## Dna Methylation 1300
## Dna Repair 1300
## Dna Replication 1300
## Dna Replication Initiation 1300
## Dna Replication Pre Initiation 1300
## Dna Strand Elongation 1300
## Dopamine Neurotransmitter Release Cycle 1300
## Dopamine Receptors 1300
## Downregulation Of Erbb2 Erbb3 Signaling 1300
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 1300
## Downregulation Of Tgf Beta Receptor Signaling 1300
## Downstream Signaling Events Of B Cell Receptor Bcr 1300
## Downstream Signaling Of Activated Fgfr1 1300
## Downstream Signaling Of Activated Fgfr2 1300
## Downstream Signaling Of Activated Fgfr3 1300
## Downstream Signaling Of Activated Fgfr4 1300
## Dual Incision In Gg Ner 1300
## Dual Incision In Tc Ner 1300
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 1300
## Ecm Proteoglycans 1300
## Effects Of Pip2 Hydrolysis 1300
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 1300
## Eicosanoid Ligand Binding Receptors 1300
## Eicosanoids 1300
## Elastic Fibre Formation 1300
## Electric Transmission Across Gap Junctions 1300
## Elevation Of Cytosolic Ca2 Levels 1300
## Endogenous Sterols 1300
## Endosomal Sorting Complex Required For Transport Escrt 1300
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 1300
## Eph Ephrin Signaling 1300
## Epigenetic Regulation Of Gene Expression 1300
## Er Quality Control Compartment Erqc 1300
## Er To Golgi Anterograde Transport 1300
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 1300
## Erk Mapk Targets 1300
## Erks Are Inactivated 1300
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 1300
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 1300
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 1300
## Erythropoietin Activates Phospholipase C Gamma Plcg 1300
## Erythropoietin Activates Ras 1300
## Erythropoietin Activates Stat5 1300
## Esr Mediated Signaling 1300
## Establishment Of Sister Chromatid Cohesion 1300
## Estrogen Biosynthesis 1300
## Estrogen Dependent Gene Expression 1300
## Estrogen Stimulated Signaling Through Prkcz 1300
## Ethanol Oxidation 1300
## Eukaryotic Translation Elongation 1300
## Eukaryotic Translation Initiation 1300
## Export Of Viral Ribonucleoproteins From Nucleus 1300
## Extension Of Telomeres 1300
## Extracellular Matrix Organization 1300
## Extrinsic Pathway Of Fibrin Clot Formation 1300
## Factors Involved In Megakaryocyte Development And Platelet Production 1300
## Fanconi Anemia Pathway 1300
## Fatty Acid Metabolism 1300
## Fatty Acids 1300
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 1300
## Fatty Acyl Coa Biosynthesis 1300
## Fbxw7 Mutants And Notch1 In Cancer 1300
## Fc Epsilon Receptor Fceri Signaling 1300
## Fceri Mediated Ca 2 Mobilization 1300
## Fceri Mediated Mapk Activation 1300
## Fceri Mediated Nf Kb Activation 1300
## Fcgamma Receptor Fcgr Dependent Phagocytosis 1300
## Fcgr Activation 1300
## Fcgr3a Mediated Il10 Synthesis 1300
## Fertilization 1300
## Fgfr1 Ligand Binding And Activation 1300
## Fgfr1b Ligand Binding And Activation 1300
## Fgfr1c Ligand Binding And Activation 1300
## Fgfr2 Alternative Splicing 1300
## Fgfr2 Ligand Binding And Activation 1300
## Fgfr2 Mutant Receptor Activation 1300
## Fgfr2b Ligand Binding And Activation 1300
## Fgfr2c Ligand Binding And Activation 1300
## Fgfr3 Ligand Binding And Activation 1300
## Fgfr3b Ligand Binding And Activation 1300
## Fgfrl1 Modulation Of Fgfr1 Signaling 1300
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 1300
## Flt3 Signaling 1300
## Flt3 Signaling By Cbl Mutants 1300
## Flt3 Signaling In Disease 1300
## Flt3 Signaling Through Src Family Kinases 1300
## Folding Of Actin By Cct Tric 1300
## Formation Of Apoptosome 1300
## Formation Of Atp By Chemiosmotic Coupling 1300
## Formation Of Fibrin Clot Clotting Cascade 1300
## Formation Of Incision Complex In Gg Ner 1300
## Formation Of Rna Pol Ii Elongation Complex 1300
## Formation Of Senescence Associated Heterochromatin Foci Sahf 1300
## Formation Of Tc Ner Pre Incision Complex 1300
## Formation Of The Beta Catenin Tcf Transactivating Complex 1300
## Formation Of The Cornified Envelope 1300
## Formation Of The Early Elongation Complex 1300
## Formation Of Tubulin Folding Intermediates By Cct Tric 1300
## Formation Of Xylulose 5 Phosphate 1300
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 1300
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 1300
## Free Fatty Acid Receptors 1300
## Free Fatty Acids Regulate Insulin Secretion 1300
## Frs Mediated Fgfr1 Signaling 1300
## Frs Mediated Fgfr2 Signaling 1300
## Frs Mediated Fgfr3 Signaling 1300
## Frs Mediated Fgfr4 Signaling 1300
## Fructose Catabolism 1300
## Fructose Metabolism 1300
## G Alpha 12 13 Signalling Events 1300
## G Alpha I Signalling Events 1300
## G Alpha Q Signalling Events 1300
## G Alpha S Signalling Events 1300
## G Alpha Z Signalling Events 1300
## G Beta Gamma Signalling Through Pi3kgamma 1300
## G Protein Activation 1300
## G Protein Mediated Events 1300
## G1 S Dna Damage Checkpoints 1300
## G2 M Checkpoints 1300
## G2 M Dna Damage Checkpoint 1300
## G2 Phase 1300
## Gaba B Receptor Activation 1300
## Gaba Receptor Activation 1300
## Gaba Synthesis Release Reuptake And Degradation 1300
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 1300
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 1300
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 1300
## Gap Junction Assembly 1300
## Gap Junction Degradation 1300
## Gap Junction Trafficking And Regulation 1300
## Gdp Fucose Biosynthesis 1300
## Gene Silencing By Rna 1300
## Generation Of Second Messenger Molecules 1300
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 1300
## Global Genome Nucleotide Excision Repair Gg Ner 1300
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 1300
## Glucagon Signaling In Metabolic Regulation 1300
## Glucagon Type Ligand Receptors 1300
## Glucocorticoid Biosynthesis 1300
## Gluconeogenesis 1300
## Glucose Metabolism 1300
## Glucuronidation 1300
## Glutamate And Glutamine Metabolism 1300
## Glutamate Neurotransmitter Release Cycle 1300
## Glutathione Conjugation 1300
## Glutathione Synthesis And Recycling 1300
## Glycerophospholipid Biosynthesis 1300
## Glycerophospholipid Catabolism 1300
## Glycogen Breakdown Glycogenolysis 1300
## Glycogen Metabolism 1300
## Glycogen Storage Diseases 1300
## Glycogen Synthesis 1300
## Glycolysis 1300
## Glycosaminoglycan Metabolism 1300
## Glycosphingolipid Metabolism 1300
## Glyoxylate Metabolism And Glycine Degradation 1300
## Golgi Associated Vesicle Biogenesis 1300
## Golgi To Er Retrograde Transport 1300
## Gpcr Ligand Binding 1300
## Grb7 Events In Erbb2 Signaling 1300
## Hats Acetylate Histones 1300
## Hcmv Early Events 1300
## Hcmv Infection 1300
## Hcmv Late Events 1300
## Hdacs Deacetylate Histones 1300
## Hdms Demethylate Histones 1300
## Hdr Through Homologous Recombination Hrr 1300
## Hdr Through Mmej Alt Nhej 1300
## Hedgehog Ligand Biogenesis 1300
## Hedgehog Off State 1300
## Hedgehog On State 1300
## Heme Biosynthesis 1300
## Hemostasis 1300
## Heparan Sulfate Heparin Hs Gag Metabolism 1300
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 1300
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 1300
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 1300
## Histidine Catabolism 1300
## Hiv Elongation Arrest And Recovery 1300
## Hiv Infection 1300
## Hiv Life Cycle 1300
## Hiv Transcription Elongation 1300
## Hiv Transcription Initiation 1300
## Homologous Dna Pairing And Strand Exchange 1300
## Homology Directed Repair 1300
## Hormone Ligand Binding Receptors 1300
## Host Interactions Of Hiv Factors 1300
## Hs Gag Biosynthesis 1300
## Hs Gag Degradation 1300
## Hsf1 Activation 1300
## Hsf1 Dependent Transactivation 1300
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 1300
## Hur Elavl1 Binds And Stabilizes Mrna 1300
## Hyaluronan Biosynthesis And Export 1300
## Hyaluronan Metabolism 1300
## Hyaluronan Uptake And Degradation 1300
## Hydrolysis Of Lpc 1300
## Il 6 Type Cytokine Receptor Ligand Interactions 1300
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 1300
## Infectious Disease 1300
## Influenza Infection 1300
## Inhibition Of Dna Recombination At Telomere 1300
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 1300
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 1300
## Initial Triggering Of Complement 1300
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 1300
## Innate Immune System 1300
## Inositol Phosphate Metabolism 1300
## Insulin Processing 1300
## Insulin Receptor Recycling 1300
## Insulin Receptor Signalling Cascade 1300
## Integration Of Energy Metabolism 1300
## Integration Of Provirus 1300
## Integrin Cell Surface Interactions 1300
## Interaction Between L1 And Ankyrins 1300
## Interaction With Cumulus Cells And The Zona Pellucida 1300
## Interactions Of Rev With Host Cellular Proteins 1300
## Interactions Of Vpr With Host Cellular Proteins 1300
## Interconversion Of Nucleotide Di And Triphosphates 1300
## Interferon Alpha Beta Signaling 1300
## Interferon Gamma Signaling 1300
## Interferon Signaling 1300
## Interleukin 36 Pathway 1300
## Intestinal Absorption 1300
## Intra Golgi And Retrograde Golgi To Er Traffic 1300
## Intra Golgi Traffic 1300
## Intracellular Signaling By Second Messengers 1300
## Intraflagellar Transport 1300
## Inwardly Rectifying K Channels 1300
## Ion Channel Transport 1300
## Ion Homeostasis 1300
## Ion Transport By P Type Atpases 1300
## Ionotropic Activity Of Kainate Receptors 1300
## Irak2 Mediated Activation Of Tak1 Complex 1300
## Ire1alpha Activates Chaperones 1300
## Irf3 Mediated Activation Of Type 1 Ifn 1300
## Iron Uptake And Transport 1300
## Irs Activation 1300
## Irs Mediated Signalling 1300
## Josephin Domain Dubs 1300
## Keratan Sulfate Biosynthesis 1300
## Keratan Sulfate Degradation 1300
## Keratan Sulfate Keratin Metabolism 1300
## Keratinization 1300
## Ketone Body Metabolism 1300
## Kinesins 1300
## Ksrp Khsrp Binds And Destabilizes Mrna 1300
## L1cam Interactions 1300
## Lagging Strand Synthesis 1300
## Laminin Interactions 1300
## Leishmania Infection 1300
## Leukotriene Receptors 1300
## Lgi Adam Interactions 1300
## Ligand Receptor Interactions 1300
## Linoleic Acid La Metabolism 1300
## Lipid Particle Organization 1300
## Lipophagy 1300
## Loss Of Function Of Mecp2 In Rett Syndrome 1300
## Loss Of Function Of Smad2 3 In Cancer 1300
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 1300
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 1300
## Ltc4 Cysltr Mediated Il4 Production 1300
## Lysine Catabolism 1300
## Lysosome Vesicle Biogenesis 1300
## Lysosphingolipid And Lpa Receptors 1300
## M Phase 1300
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 1300
## Mapk Family Signaling Cascades 1300
## Mapk6 Mapk4 Signaling 1300
## Maturation Of Nucleoprotein 1300
## Maturation Of Protein 3a 1300
## Maturation Of Sars Cov 1 Spike Protein 1300
## Maturation Of Sars Cov 2 Spike Protein 1300
## Meiosis 1300
## Meiotic Recombination 1300
## Meiotic Synapsis 1300
## Melanin Biosynthesis 1300
## Membrane Trafficking 1300
## Met Activates Pi3k Akt Signaling 1300
## Met Activates Ptpn11 1300
## Met Activates Rap1 And Rac1 1300
## Met Activates Ras Signaling 1300
## Met Interacts With Tns Proteins 1300
## Met Promotes Cell Motility 1300
## Met Receptor Activation 1300
## Met Receptor Recycling 1300
## Metabolic Disorders Of Biological Oxidation Enzymes 1300
## Metabolism Of Amine Derived Hormones 1300
## Metabolism Of Amino Acids And Derivatives 1300
## Metabolism Of Angiotensinogen To Angiotensins 1300
## Metabolism Of Carbohydrates 1300
## Metabolism Of Cofactors 1300
## Metabolism Of Fat Soluble Vitamins 1300
## Metabolism Of Folate And Pterines 1300
## Metabolism Of Ingested Semet Sec Mesec Into H2se 1300
## Metabolism Of Lipids 1300
## Metabolism Of Nucleotides 1300
## Metabolism Of Polyamines 1300
## Metabolism Of Rna 1300
## Metabolism Of Steroid Hormones 1300
## Metabolism Of Steroids 1300
## Metabolism Of Vitamins And Cofactors 1300
## Metabolism Of Water Soluble Vitamins And Cofactors 1300
## Metal Ion Slc Transporters 1300
## Metal Sequestration By Antimicrobial Proteins 1300
## Metallothioneins Bind Metals 1300
## Methionine Salvage Pathway 1300
## Methylation 1300
## Mhc Class Ii Antigen Presentation 1300
## Microrna Mirna Biogenesis 1300
## Mineralocorticoid Biosynthesis 1300
## Miro Gtpase Cycle 1300
## Miscellaneous Substrates 1300
## Miscellaneous Transport And Binding Events 1300
## Mismatch Repair 1300
## Mitochondrial Biogenesis 1300
## Mitochondrial Calcium Ion Transport 1300
## Mitochondrial Fatty Acid Beta Oxidation 1300
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 1300
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 1300
## Mitochondrial Iron Sulfur Cluster Biogenesis 1300
## Mitochondrial Protein Import 1300
## Mitochondrial Translation 1300
## Mitochondrial Trna Aminoacylation 1300
## Mitochondrial Uncoupling 1300
## Mitotic G1 Phase And G1 S Transition 1300
## Mitotic G2 G2 M Phases 1300
## Mitotic Metaphase And Anaphase 1300
## Mitotic Prometaphase 1300
## Mitotic Prophase 1300
## Mitotic Spindle Checkpoint 1300
## Mitotic Telophase Cytokinesis 1300
## Molecules Associated With Elastic Fibres 1300
## Molybdenum Cofactor Biosynthesis 1300
## Mrna Capping 1300
## Mrna Decay By 3 To 5 Exoribonuclease 1300
## Mrna Decay By 5 To 3 Exoribonuclease 1300
## Mrna Editing 1300
## Mrna Editing C To U Conversion 1300
## Mrna Splicing 1300
## Mrna Splicing Minor Pathway 1300
## Mtor Signalling 1300
## Mtorc1 Mediated Signalling 1300
## Mucopolysaccharidoses 1300
## Multifunctional Anion Exchangers 1300
## Muscarinic Acetylcholine Receptors 1300
## Muscle Contraction 1300
## Myoclonic Epilepsy Of Lafora 1300
## N Glycan Antennae Elongation 1300
## N Glycan Antennae Elongation In The Medial Trans Golgi 1300
## N Glycan Trimming And Elongation In The Cis Golgi 1300
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 1300
## Na Cl Dependent Neurotransmitter Transporters 1300
## Ncam Signaling For Neurite Out Growth 1300
## Ncam1 Interactions 1300
## Nectin Necl Trans Heterodimerization 1300
## Neddylation 1300
## Nef And Signal Transduction 1300
## Nef Mediated Cd4 Down Regulation 1300
## Nef Mediated Cd8 Down Regulation 1300
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 1300
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 1300
## Negative Epigenetic Regulation Of Rrna Expression 1300
## Negative Feedback Regulation Of Mapk Pathway 1300
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 1300
## Negative Regulation Of Flt3 1300
## Negative Regulation Of Mapk Pathway 1300
## Negative Regulation Of Met Activity 1300
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 1300
## Negative Regulation Of Notch4 Signaling 1300
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 1300
## Nephrin Family Interactions 1300
## Nervous System Development 1300
## Neurexins And Neuroligins 1300
## Neurofascin Interactions 1300
## Neuronal System 1300
## Neurotoxicity Of Clostridium Toxins 1300
## Neurotransmitter Clearance 1300
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 1300
## Neurotransmitter Release Cycle 1300
## Neutrophil Degranulation 1300
## Ngf Independant Trka Activation 1300
## Nitric Oxide Stimulates Guanylate Cyclase 1300
## Non Integrin Membrane Ecm Interactions 1300
## Noncanonical Activation Of Notch3 1300
## Nonhomologous End Joining Nhej 1300
## Nonsense Mediated Decay Nmd 1300
## Norepinephrine Neurotransmitter Release Cycle 1300
## Notch Hlh Transcription Pathway 1300
## Notch1 Intracellular Domain Regulates Transcription 1300
## Notch2 Activation And Transmission Of Signal To The Nucleus 1300
## Notch4 Activation And Transmission Of Signal To The Nucleus 1300
## Notch4 Intracellular Domain Regulates Transcription 1300
## Nr1h2 And Nr1h3 Mediated Signaling 1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 1300
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 1300
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 1300
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 1300
## Nrage Signals Death Through Jnk 1300
## Nrcam Interactions 1300
## Ns1 Mediated Effects On Host Pathways 1300
## Ntrk2 Activates Rac1 1300
## Nuclear Envelope Breakdown 1300
## Nuclear Envelope Ne Reassembly 1300
## Nuclear Events Kinase And Transcription Factor Activation 1300
## Nuclear Import Of Rev Protein 1300
## Nuclear Receptor Transcription Pathway 1300
## Nucleobase Biosynthesis 1300
## Nucleobase Catabolism 1300
## Nucleotide Excision Repair 1300
## Nucleotide Like Purinergic Receptors 1300
## O Glycosylation Of Tsr Domain Containing Proteins 1300
## O Linked Glycosylation 1300
## O Linked Glycosylation Of Mucins 1300
## Olfactory Signaling Pathway 1300
## Oncogenic Mapk Signaling 1300
## Opioid Signalling 1300
## Opsins 1300
## Orc1 Removal From Chromatin 1300
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 1300
## Organelle Biogenesis And Maintenance 1300
## Organic Anion Transport 1300
## Organic Anion Transporters 1300
## Organic Cation Anion Zwitterion Transport 1300
## Organic Cation Transport 1300
## Oxidative Stress Induced Senescence 1300
## P2y Receptors 1300
## P75ntr Negatively Regulates Cell Cycle Via Sc1 1300
## Parasite Infection 1300
## Passive Transport By Aquaporins 1300
## Pcna Dependent Long Patch Base Excision Repair 1300
## Pcp Ce Pathway 1300
## Pentose Phosphate Pathway 1300
## Peptide Hormone Biosynthesis 1300
## Peptide Hormone Metabolism 1300
## Peroxisomal Lipid Metabolism 1300
## Peroxisomal Protein Import 1300
## Phase 0 Rapid Depolarisation 1300
## Phase 1 Inactivation Of Fast Na Channels 1300
## Phase 2 Plateau Phase 1300
## Phase 3 Rapid Repolarisation 1300
## Phase I Functionalization Of Compounds 1300
## Phase Ii Conjugation Of Compounds 1300
## Phenylalanine And Tyrosine Metabolism 1300
## Phenylalanine Metabolism 1300
## Phosphate Bond Hydrolysis By Ntpdase Proteins 1300
## Phosphate Bond Hydrolysis By Nudt Proteins 1300
## Phospholipase C Mediated Cascade Fgfr2 1300
## Phospholipase C Mediated Cascade Fgfr4 1300
## Phospholipid Metabolism 1300
## Physiological Factors 1300
## Pi 3k Cascade Fgfr1 1300
## Pi 3k Cascade Fgfr2 1300
## Pi 3k Cascade Fgfr3 1300
## Pi 3k Cascade Fgfr4 1300
## Pi Metabolism 1300
## Pi3k Akt Activation 1300
## Pi3k Events In Erbb4 Signaling 1300
## Pi5p Regulates Tp53 Acetylation 1300
## Piwi Interacting Rna Pirna Biogenesis 1300
## Pka Activation In Glucagon Signalling 1300
## Pka Mediated Phosphorylation Of Key Metabolic Factors 1300
## Pkmts Methylate Histone Lysines 1300
## Plasma Lipoprotein Assembly Remodeling And Clearance 1300
## Platelet Activation Signaling And Aggregation 1300
## Platelet Calcium Homeostasis 1300
## Platelet Homeostasis 1300
## Platelet Sensitization By Ldl 1300
## Polb Dependent Long Patch Base Excision Repair 1300
## Polo Like Kinase Mediated Events 1300
## Polymerase Switching 1300
## Polymerase Switching On The C Strand Of The Telomere 1300
## Positive Epigenetic Regulation Of Rrna Expression 1300
## Post Chaperonin Tubulin Folding Pathway 1300
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1300
## Postmitotic Nuclear Pore Complex Npc Reformation 1300
## Potassium Channels 1300
## Potential Therapeutics For Sars 1300
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 1300
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 1300
## Prc2 Methylates Histones And Dna 1300
## Pre Notch Expression And Processing 1300
## Pre Notch Processing In Golgi 1300
## Pre Notch Processing In The Endoplasmic Reticulum 1300
## Pregnenolone Biosynthesis 1300
## Presynaptic Depolarization And Calcium Channel Opening 1300
## Presynaptic Function Of Kainate Receptors 1300
## Prevention Of Phagosomal Lysosomal Fusion 1300
## Processing And Activation Of Sumo 1300
## Processing Of Capped Intron Containing Pre Mrna 1300
## Processing Of Capped Intronless Pre Mrna 1300
## Processing Of Dna Double Strand Break Ends 1300
## Processing Of Intronless Pre Mrnas 1300
## Processing Of Smdt1 1300
## Processive Synthesis On The C Strand Of The Telomere 1300
## Processive Synthesis On The Lagging Strand 1300
## Programmed Cell Death 1300
## Prolactin Receptor Signaling 1300
## Prolonged Erk Activation Events 1300
## Propionyl Coa Catabolism 1300
## Prostacyclin Signalling Through Prostacyclin Receptor 1300
## Prostanoid Ligand Receptors 1300
## Protein Folding 1300
## Protein Localization 1300
## Protein Methylation 1300
## Protein Protein Interactions At Synapses 1300
## Protein Ubiquitination 1300
## Proton Coupled Monocarboxylate Transport 1300
## Pten Regulation 1300
## Ptk6 Expression 1300
## Ptk6 Regulates Proteins Involved In Rna Processing 1300
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 1300
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 1300
## Purine Catabolism 1300
## Purine Ribonucleoside Monophosphate Biosynthesis 1300
## Pyrimidine Catabolism 1300
## Pyrimidine Salvage 1300
## Pyruvate Metabolism 1300
## Pyruvate Metabolism And Citric Acid Tca Cycle 1300
## Ra Biosynthesis Pathway 1300
## Rab Gefs Exchange Gtp For Gdp On Rabs 1300
## Rab Geranylgeranylation 1300
## Rab Regulation Of Trafficking 1300
## Rac1 Gtpase Cycle 1300
## Rac2 Gtpase Cycle 1300
## Rac3 Gtpase Cycle 1300
## Rap1 Signalling 1300
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 1300
## Ras Processing 1300
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 1300
## Reactions Specific To The Complex N Glycan Synthesis Pathway 1300
## Receptor Type Tyrosine Protein Phosphatases 1300
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 1300
## Recognition Of Dna Damage By Pcna Containing Replication Complex 1300
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1300
## Recruitment Of Numa To Mitotic Centrosomes 1300
## Recycling Of Bile Acids And Salts 1300
## Recycling Of Eif2 Gdp 1300
## Recycling Pathway Of L1 1300
## Reduction Of Cytosolic Ca Levels 1300
## Reelin Signalling Pathway 1300
## Regulated Proteolysis Of P75ntr 1300
## Regulation Of Bach1 Activity 1300
## Regulation Of Beta Cell Development 1300
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 1300
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 1300
## Regulation Of Expression Of Slits And Robos 1300
## Regulation Of Fzd By Ubiquitination 1300
## Regulation Of Gene Expression By Hypoxia Inducible Factor 1300
## Regulation Of Gene Expression In Beta Cells 1300
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 1300
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 1300
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 1300
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 1300
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 1300
## Regulation Of Hmox1 Expression And Activity 1300
## Regulation Of Hsf1 Mediated Heat Shock Response 1300
## Regulation Of Innate Immune Responses To Cytosolic Dna 1300
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 1300
## Regulation Of Insulin Secretion 1300
## Regulation Of Lipid Metabolism By Pparalpha 1300
## Regulation Of Localization Of Foxo Transcription Factors 1300
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 1300
## Regulation Of Plk1 Activity At G2 M Transition 1300
## Regulation Of Pten Gene Transcription 1300
## Regulation Of Pten Localization 1300
## Regulation Of Pten Mrna Translation 1300
## Regulation Of Pten Stability And Activity 1300
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 1300
## Regulation Of Ras By Gaps 1300
## Regulation Of Runx2 Expression And Activity 1300
## Regulation Of Runx3 Expression And Activity 1300
## Regulation Of Signaling By Cbl 1300
## Regulation Of Signaling By Nodal 1300
## Regulation Of Tp53 Activity 1300
## Regulation Of Tp53 Activity Through Acetylation 1300
## Regulation Of Tp53 Activity Through Association With Co Factors 1300
## Regulation Of Tp53 Activity Through Phosphorylation 1300
## Relaxin Receptors 1300
## Release Of Apoptotic Factors From The Mitochondria 1300
## Release Of Hh Np From The Secreting Cell 1300
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 1300
## Reproduction 1300
## Resolution Of Abasic Sites Ap Sites 1300
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 1300
## Resolution Of Sister Chromatid Cohesion 1300
## Respiratory Electron Transport 1300
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 1300
## Response Of Eif2ak1 Hri To Heme Deficiency 1300
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 1300
## Response Of Mtb To Phagocytosis 1300
## Response To Elevated Platelet Cytosolic Ca2 1300
## Response To Metal Ions 1300
## Ret Signaling 1300
## Retinoid Cycle Disease Events 1300
## Retrograde Neurotrophin Signalling 1300
## Retrograde Transport At The Trans Golgi Network 1300
## Reversible Hydration Of Carbon Dioxide 1300
## Rho Gtpase Cycle 1300
## Rho Gtpase Effectors 1300
## Rho Gtpases Activate Cit 1300
## Rho Gtpases Activate Formins 1300
## Rho Gtpases Activate Pkns 1300
## Rho Gtpases Activate Rhotekin And Rhophilins 1300
## Rho Gtpases Activate Rocks 1300
## Rhoa Gtpase Cycle 1300
## Rhob Gtpase Cycle 1300
## Rhobtb Gtpase Cycle 1300
## Rhobtb1 Gtpase Cycle 1300
## Rhobtb2 Gtpase Cycle 1300
## Rhobtb3 Atpase Cycle 1300
## Rhoc Gtpase Cycle 1300
## Rhot1 Gtpase Cycle 1300
## Rmts Methylate Histone Arginines 1300
## Rna Polymerase I Promoter Escape 1300
## Rna Polymerase I Transcription 1300
## Rna Polymerase I Transcription Initiation 1300
## Rna Polymerase I Transcription Termination 1300
## Rna Polymerase Ii Transcribes Snrna Genes 1300
## Rna Polymerase Ii Transcription Termination 1300
## Rna Polymerase Iii Chain Elongation 1300
## Rna Polymerase Iii Transcription 1300
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 1300
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 1300
## Rna Polymerase Iii Transcription Termination 1300
## Rnd1 Gtpase Cycle 1300
## Rnd2 Gtpase Cycle 1300
## Rnd3 Gtpase Cycle 1300
## Robo Receptors Bind Akap5 1300
## Role Of Abl In Robo Slit Signaling 1300
## Role Of Lat2 Ntal Lab On Calcium Mobilization 1300
## Role Of Phospholipids In Phagocytosis 1300
## Role Of Second Messengers In Netrin 1 Signaling 1300
## Rora Activates Gene Expression 1300
## Rrna Modification In The Mitochondrion 1300
## Rrna Modification In The Nucleus And Cytosol 1300
## Rrna Processing 1300
## Rrna Processing In The Mitochondrion 1300
## Rsk Activation 1300
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 1300
## Runx1 Regulates Estrogen Receptor Mediated Transcription 1300
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 1300
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 1300
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 1300
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 1300
## Runx3 Regulates Bcl2l11 Bim Transcription 1300
## Runx3 Regulates Cdkn1a Transcription 1300
## Runx3 Regulates Immune Response And Cell Migration 1300
## Runx3 Regulates Notch Signaling 1300
## Runx3 Regulates P14 Arf 1300
## Runx3 Regulates Yap1 Mediated Transcription 1300
## S Phase 1300
## Sars Cov 1 Genome Replication And Transcription 1300
## Sars Cov 1 Infection 1300
## Sars Cov 2 Infection 1300
## Sars Cov Infections 1300
## Scavenging By Class F Receptors 1300
## Scavenging Of Heme From Plasma 1300
## Scf Skp2 Mediated Degradation Of P27 P21 1300
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 1300
## Selective Autophagy 1300
## Selenoamino Acid Metabolism 1300
## Sema3a Pak Dependent Axon Repulsion 1300
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 1300
## Sema4d In Semaphorin Signaling 1300
## Sema4d Induced Cell Migration And Growth Cone Collapse 1300
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 1300
## Semaphorin Interactions 1300
## Senescence Associated Secretory Phenotype Sasp 1300
## Sensory Perception 1300
## Sensory Processing Of Sound 1300
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 1300
## Separation Of Sister Chromatids 1300
## Serine Biosynthesis 1300
## Serotonin And Melatonin Biosynthesis 1300
## Serotonin Neurotransmitter Release Cycle 1300
## Serotonin Receptors 1300
## Shc Mediated Cascade Fgfr1 1300
## Shc Mediated Cascade Fgfr3 1300
## Shc Mediated Cascade Fgfr4 1300
## Shc Related Events Triggered By Igf1r 1300
## Shc1 Events In Erbb4 Signaling 1300
## Signal Attenuation 1300
## Signaling By Activin 1300
## Signaling By Bmp 1300
## Signaling By Braf And Raf Fusions 1300
## Signaling By Ctnnb1 Phospho Site Mutants 1300
## Signaling By Erythropoietin 1300
## Signaling By Fgfr 1300
## Signaling By Fgfr In Disease 1300
## Signaling By Fgfr1 1300
## Signaling By Fgfr2 1300
## Signaling By Fgfr2 Iiia Tm 1300
## Signaling By Fgfr2 In Disease 1300
## Signaling By Fgfr3 1300
## Signaling By Fgfr3 Fusions In Cancer 1300
## Signaling By Fgfr4 1300
## Signaling By Fgfr4 In Disease 1300
## Signaling By Flt3 Fusion Proteins 1300
## Signaling By Flt3 Itd And Tkd Mutants 1300
## Signaling By Gpcr 1300
## Signaling By Hedgehog 1300
## Signaling By Insulin Receptor 1300
## Signaling By Lrp5 Mutants 1300
## Signaling By Mapk Mutants 1300
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 1300
## Signaling By Met 1300
## Signaling By Mras Complex Mutants 1300
## Signaling By Mst1 1300
## Signaling By Nodal 1300
## Signaling By Notch 1300
## Signaling By Notch1 1300
## Signaling By Notch1 Hd Domain Mutants In Cancer 1300
## Signaling By Notch1 Pest Domain Mutants In Cancer 1300
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 1300
## Signaling By Notch4 1300
## Signaling By Ntrks 1300
## Signaling By Nuclear Receptors 1300
## Signaling By Receptor Tyrosine Kinases 1300
## Signaling By Retinoic Acid 1300
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 1300
## Signaling By Rnf43 Mutants 1300
## Signaling By Robo Receptors 1300
## Signaling By Tgf Beta Receptor Complex 1300
## Signaling By Tgf Beta Receptor Complex In Cancer 1300
## Signaling By Tgfb Family Members 1300
## Signaling By The B Cell Receptor Bcr 1300
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 1300
## Signaling By Vegf 1300
## Signaling By Wnt 1300
## Signaling By Wnt In Cancer 1300
## Signalling To P38 Via Rit And Rin 1300
## Sirt1 Negatively Regulates Rrna Expression 1300
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 1300
## Slc Mediated Transmembrane Transport 1300
## Slc Transporter Disorders 1300
## Small Interfering Rna Sirna Biogenesis 1300
## Smooth Muscle Contraction 1300
## Snrnp Assembly 1300
## Sodium Calcium Exchangers 1300
## Sodium Coupled Phosphate Cotransporters 1300
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 1300
## Sodium Proton Exchangers 1300
## Sos Mediated Signalling 1300
## Sperm Motility And Taxes 1300
## Sphingolipid De Novo Biosynthesis 1300
## Sphingolipid Metabolism 1300
## Srp Dependent Cotranslational Protein Targeting To Membrane 1300
## Stabilization Of P53 1300
## Stat5 Activation 1300
## Stat5 Activation Downstream Of Flt3 Itd Mutants 1300
## Stimuli Sensing Channels 1300
## Striated Muscle Contraction 1300
## Sulfide Oxidation To Sulfate 1300
## Sulfur Amino Acid Metabolism 1300
## Sumo Is Conjugated To E1 Uba2 Sae1 1300
## Sumo Is Proteolytically Processed 1300
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 1300
## Sumoylation 1300
## Sumoylation Of Chromatin Organization Proteins 1300
## Sumoylation Of Dna Damage Response And Repair Proteins 1300
## Sumoylation Of Dna Replication Proteins 1300
## Sumoylation Of Intracellular Receptors 1300
## Sumoylation Of Rna Binding Proteins 1300
## Sumoylation Of Sumoylation Proteins 1300
## Sumoylation Of Transcription Cofactors 1300
## Sumoylation Of Transcription Factors 1300
## Sumoylation Of Ubiquitinylation Proteins 1300
## Suppression Of Apoptosis 1300
## Suppression Of Phagosomal Maturation 1300
## Surfactant Metabolism 1300
## Switching Of Origins To A Post Replicative State 1300
## Synaptic Adhesion Like Molecules 1300
## Syndecan Interactions 1300
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 1300
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 1300
## Synthesis Of 5 Eicosatetraenoic Acids 1300
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 1300
## Synthesis Of Bile Acids And Bile Salts 1300
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 1300
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 1300
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 1300
## Synthesis Of Diphthamide Eef2 1300
## Synthesis Of Dolichyl Phosphate 1300
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 1300
## Synthesis Of Gdp Mannose 1300
## Synthesis Of Glycosylphosphatidylinositol Gpi 1300
## Synthesis Of Ip2 Ip And Ins In The Cytosol 1300
## Synthesis Of Ip3 And Ip4 In The Cytosol 1300
## Synthesis Of Ketone Bodies 1300
## Synthesis Of Leukotrienes Lt And Eoxins Ex 1300
## Synthesis Of Lipoxins Lx 1300
## Synthesis Of Pa 1300
## Synthesis Of Pc 1300
## Synthesis Of Pe 1300
## Synthesis Of Pg 1300
## Synthesis Of Pi 1300
## Synthesis Of Pips At The Early Endosome Membrane 1300
## Synthesis Of Pips At The Er Membrane 1300
## Synthesis Of Pips At The Golgi Membrane 1300
## Synthesis Of Pips At The Late Endosome Membrane 1300
## Synthesis Of Pips At The Plasma Membrane 1300
## Synthesis Of Pyrophosphates In The Cytosol 1300
## Synthesis Of Substrates In N Glycan Biosythesis 1300
## Synthesis Of Udp N Acetyl Glucosamine 1300
## Synthesis Of Very Long Chain Fatty Acyl Coas 1300
## Synthesis Of Wybutosine At G37 Of Trna Phe 1300
## Synthesis Secretion And Deacylation Of Ghrelin 1300
## Tachykinin Receptors Bind Tachykinins 1300
## Tbc Rabgaps 1300
## Tcf Dependent Signaling In Response To Wnt 1300
## Tcr Signaling 1300
## Telomere C Strand Lagging Strand Synthesis 1300
## Telomere C Strand Synthesis Initiation 1300
## Telomere Maintenance 1300
## Terminal Pathway Of Complement 1300
## Termination Of Translesion Dna Synthesis 1300
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 1300
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 1300
## Tgf Beta Receptor Signaling Activates Smads 1300
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 1300
## The Activation Of Arylsulfatases 1300
## The Canonical Retinoid Cycle In Rods Twilight Vision 1300
## The Citric Acid Tca Cycle And Respiratory Electron Transport 1300
## The Fatty Acid Cycling Model 1300
## The Phototransduction Cascade 1300
## The Retinoid Cycle In Cones Daylight Vision 1300
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1300
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 1300
## Thromboxane Signalling Through Tp Receptor 1300
## Thyroxine Biosynthesis 1300
## Tie2 Signaling 1300
## Tight Junction Interactions 1300
## Toxicity Of Botulinum Toxin Type D Botd 1300
## Tp53 Regulates Metabolic Genes 1300
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 1300
## Tp53 Regulates Transcription Of Cell Cycle Genes 1300
## Tp53 Regulates Transcription Of Death Receptors And Ligands 1300
## Tp53 Regulates Transcription Of Dna Repair Genes 1300
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 1300
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1300
## Trafficking Of Ampa Receptors 1300
## Trafficking Of Glur2 Containing Ampa Receptors 1300
## Trafficking Of Myristoylated Proteins To The Cilium 1300
## Trail Signaling 1300
## Trans Golgi Network Vesicle Budding 1300
## Transcription Coupled Nucleotide Excision Repair Tc Ner 1300
## Transcription Of The Hiv Genome 1300
## Transcriptional Activation Of Mitochondrial Biogenesis 1300
## Transcriptional Regulation By E2f6 1300
## Transcriptional Regulation By Mecp2 1300
## Transcriptional Regulation By Runx1 1300
## Transcriptional Regulation By Runx2 1300
## Transcriptional Regulation By Runx3 1300
## Transcriptional Regulation By Small Rnas 1300
## Transcriptional Regulation By Tp53 1300
## Transcriptional Regulation By Ventx 1300
## Transcriptional Regulation Of Granulopoiesis 1300
## Transcriptional Regulation Of Testis Differentiation 1300
## Transcriptional Regulation Of White Adipocyte Differentiation 1300
## Transferrin Endocytosis And Recycling 1300
## Translation 1300
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 1300
## Translation Of Sars Cov 1 Structural Proteins 1300
## Translation Of Sars Cov 2 Structural Proteins 1300
## Translesion Synthesis By Polh 1300
## Translesion Synthesis By Polk 1300
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 1300
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1300
## Transmission Across Chemical Synapses 1300
## Transport And Synthesis Of Paps 1300
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 1300
## Transport Of Connexons To The Plasma Membrane 1300
## Transport Of Fatty Acids 1300
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 1300
## Transport Of Mature Mrnas Derived From Intronless Transcripts 1300
## Transport Of Mature Transcript To Cytoplasm 1300
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 1300
## Transport Of Nucleotide Sugars 1300
## Transport Of Organic Anions 1300
## Transport Of Small Molecules 1300
## Transport Of The Slbp Dependant Mature Mrna 1300
## Transport Of Vitamins Nucleosides And Related Molecules 1300
## Transport To The Golgi And Subsequent Modification 1300
## Triglyceride Biosynthesis 1300
## Triglyceride Metabolism 1300
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 1300
## Trna Aminoacylation 1300
## Trna Modification In The Mitochondrion 1300
## Trna Modification In The Nucleus And Cytosol 1300
## Trna Processing 1300
## Trna Processing In The Mitochondrion 1300
## Trna Processing In The Nucleus 1300
## Trp Channels 1300
## Tryptophan Catabolism 1300
## Type I Hemidesmosome Assembly 1300
## Tyrosine Catabolism 1300
## Tysnd1 Cleaves Peroxisomal Proteins 1300
## Ub Specific Processing Proteases 1300
## Ubiquinol Biosynthesis 1300
## Uch Proteinases 1300
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 1300
## Unfolded Protein Response Upr 1300
## Unwinding Of Dna 1300
## Uptake And Actions Of Bacterial Toxins 1300
## Uptake And Function Of Anthrax Toxins 1300
## Uptake And Function Of Diphtheria Toxin 1300
## Urea Cycle 1300
## Vasopressin Like Receptors 1300
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 1300
## Vegf Ligand Receptor Interactions 1300
## Vesicle Mediated Transport 1300
## Viral Messenger Rna Synthesis 1300
## Visual Phototransduction 1300
## Vitamin B1 Thiamin Metabolism 1300
## Vitamin B2 Riboflavin Metabolism 1300
## Vitamin B5 Pantothenate Metabolism 1300
## Vitamin C Ascorbate Metabolism 1300
## Vitamin D Calciferol Metabolism 1300
## Vitamins 1300
## Vldl Assembly 1300
## Vldl Clearance 1300
## Voltage Gated Potassium Channels 1300
## Vxpx Cargo Targeting To Cilium 1300
## Wax And Plasmalogen Biosynthesis 1300
## Wnt Mediated Activation Of Dvl 1300
## Xenobiotics 1300
## Zinc Efflux And Compartmentalization By The Slc30 Family 1300
## Zinc Influx Into Cells By The Slc39 Gene Family 1300
## Zinc Transporters 1300
## hits
## Interleukin 10 Signaling CCL2,CCL20,CCL22,CCR1,CCR2,CCR5,CD80,CD86,CSF2,CXCL1,CXCL10,CXCL2,CXCL8,ICAM1,IL10,IL18,IL1B,IL6,PTGS2,STAT3,TNF
## Chemokine Receptors Bind Chemokines CCL11,CCL2,CCL20,CCL22,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4
## Interleukin 4 And Interleukin 13 Signaling CCL11,CCL2,CCL22,CXCL8,FASLG,FOS,HMOX1,ICAM1,IL10,IL13,IL17A,IL18,IL1B,IL4,IL6,IRF4,LBP,MMP2,MMP3,MMP9,MYC,PTGS2,STAT1,STAT3,TNF
## Irak4 Deficiency Tlr2 4 HMGB1,LY96,MYD88,TLR1,TLR2,TLR4
## Fibronectin Matrix Formation CEACAM1,CEACAM6,CEACAM8
## Diseases Of Immune System HMGB1,LY96,MYD88,NFKBIA,TLR1,TLR2,TLR3,TLR4
## Regulation Of Tlr By Endogenous Ligand HMGB1,LBP,LY96,TLR1,TLR2,TLR4
## Interleukin 18 Signaling IL13,IL18,IL4
## Cd163 Mediating An Anti Inflammatory Response CD163,IL10,IL6
## Interleukin 1 Processing CASP1,IL18,IL1B
## Purinergic Signaling In Leishmaniasis Infection C3,CASP1,HMOX1,IL18,IL1B,NLRP3
## P75ntr Signals Via Nf Kb IRAK1,MYD88,NFKBIA,RIPK2
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 IRAK1,MAPK8,NOD1,NOD2,RIPK2
## Interleukin 6 Signaling IL6,STAT1,STAT3
## Tnfs Bind Their Physiological Receptors CD27,CD70,FASLG,TNFRSF11B,TNFSF11,TNFSF13B
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway BIRC3,CD40,TNFSF11,TNFSF13B
## Nod1 2 Signaling Pathway BIRC3,CASP1,IRAK1,NOD1,NOD2,RIPK2,TNFAIP3
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways AIM2,BIRC3,CASP1,HMOX1,IRAK1,NLRP3,NOD1,NOD2,RIPK2,TNFAIP3
## Cd28 Dependent Vav1 Pathway CD80,CD86,CDC42
## Gastrin Creb Signalling Pathway Via Pkc And Mapk CREB1,EGFR,GAST,MMP3
## Killing Mechanisms MAPK8,NOX1,WNT5A
## P75ntr Recruits Signalling Complexes IRAK1,MYD88,RIPK2
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells CSF2,RUNX2
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex HMGB1,IRAK1,NFKBIA,NOD1,NOD2,RIPK2
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling IRAK1,MYD88,TLR9
## Pyroptosis CASP1,CASP3,HMGB1,IL18,IL1B
## Activation Of C3 And C5 C3,C4B
## Runx2 Regulates Genes Involved In Cell Migration MMP13,RUNX2
## Ctla4 Inhibitory Signaling CD80,CD86,CTLA4,SRC
## Inflammasomes AIM2,CASP1,HMOX1,NLRP3
## Egfr Interacts With Phospholipase C Gamma EGF,EGFR
## Egfr Transactivation By Gastrin EGFR,MMP3
## Interleukin 9 Signaling STAT1,STAT3
## Trif Mediated Programmed Cell Death LY96,TLR4
## Activated Tak1 Mediates P38 Mapk Activation IRAK1,NOD1,NOD2,RIPK2
## Caspase Activation Via Death Receptors In The Presence Of Ligand FASLG,LY96,TLR4
## The Nlrp3 Inflammasome CASP1,HMOX1,NLRP3
## Toll Like Receptor Tlr1 Tlr2 Cascade CREB1,FOS,HMGB1,IRAK1,IRAK3,LY96,MAPK8,MYD88,NFKBIA,NOD1,NOD2,RIPK2,TLR1,TLR2,TLR4
## Ovarian Tumor Domain Proteases CDK1,DDX58,NOD1,NOD2,RIPK2,TNFAIP3
## Activation Of The Ap 1 Family Of Transcription Factors FOS,MAPK8
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling CREB1,EGF,EGFR,FOS
## Gab1 Signalosome EGF,EGFR,SRC
## Interleukin 21 Signaling STAT1,STAT3
## Mapk3 Erk1 Activation CDK1,IL6
## Rip Mediated Nfkb Activation Via Zbp1 MYD88,NFKBIA,TLR3
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs CTLA4,IL2
## Activation Of Matrix Metalloproteinases MMP13,MMP2,MMP3,MMP8,MMP9
## Apoptotic Cleavage Of Cell Adhesion Proteins CASP3,OCLN
## Interleukin 27 Signaling STAT1,STAT3
## Receptor Mediated Mitophagy ATG5,SRC
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway CASP3,FASLG,LY96,TLR4
## Toll Like Receptor 9 Tlr9 Cascade CREB1,FOS,HMGB1,IRAK1,LY96,MAPK8,MYD88,NFKBIA,NOD1,NOD2,RIPK2,TLR4,TLR9
## Gp1b Ix V Activation Signalling SRC,VWF
## Interleukin 35 Signalling STAT1,STAT3
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants STAT1,STAT3
## Tp53 Regulates Transcription Of Caspase Activators And Caspases ATM,CASP1
## Signaling By Kit In Disease SRC,STAT1,STAT3
## Alternative Complement Activation C3
## Fasl Cd95l Signaling FASLG
## G2 M Dna Replication Checkpoint CDK1
## Galactose Catabolism GALE
## Hdl Clearance APOA1
## Mecp2 Regulates Transcription Factors CREB1
## Nostrin Mediated Enos Trafficking CAV1
## Runx1 Regulates Expression Of Components Of Tight Junctions OCLN
## Runx2 Regulates Chondrocyte Maturation RUNX2
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors MYC
## Apoptosis Induced Dna Fragmentation CASP3,HMGB1
## Erbb2 Activates Ptk6 Signaling EGF,EGFR
## Nf Kb Is Activated And Signals Survival IRAK1,NFKBIA
## Tnfr1 Induced Proapoptotic Signaling TNF,TNFAIP3
## Trafficking And Processing Of Endosomal Tlr TLR3,TLR9
## Zbp1 Dai Mediated Induction Of Type I Ifns MYD88,NFKBIA,TLR3
## Dcc Mediated Attractive Signaling CDC42,SRC
## Early Phase Of Hiv Life Cycle CCR5,CXCR4
## Interleukin 15 Signaling IL15,STAT3
## Shc1 Events In Egfr Signaling EGF,EGFR
## Toll Like Receptor Cascades BIRC3,BPI,CREB1,FOS,HMGB1,IRAK1,IRAK3,LBP,LY96,MAPK8,MYD88,NFKBIA,NOD1,NOD2,RIPK2,TLR1,TLR2,TLR3,TLR4,TLR9
## Activated Ntrk3 Signals Through Pi3k SRC
## Activation Of Caspases Through Apoptosome Mediated Cleavage CASP3
## Biosynthesis Of Epa Derived Spms PTGS2
## Clec7a Inflammasome Pathway IL1B
## Nade Modulates Death Signalling CASP3
## Phosphorylation Of Emi1 CDK1
## Protein Repair MSRA
## Ptk6 Promotes Hif1a Stabilization EGFR
## Ptk6 Regulates Cell Cycle CDK4
## Scavenging By Class B Receptors APOA1
## Sensing Of Dna Double Strand Breaks ATM
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives PTGS2
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death TLR3
## Tnfr1 Mediated Ceramide Production TNF
## Ikk Complex Recruitment Mediated By Rip1 BIRC3,LY96,TLR4
## Constitutive Signaling By Egfrviii EGF,EGFR
## Erbb2 Regulates Cell Motility EGF,EGFR
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins SRC,VWF
## P130cas Linkage To Mapk Signaling For Integrins SRC,VWF
## Heme Signaling APOA1,CREB1,HMOX1,LY96,SIRT1,TLR4
## Regulated Necrosis BIRC3,CASP1,CASP3,FASLG,HMGB1,IL18,IL1B
## Activated Ntrk2 Signals Through Fyn SRC
## Activation Of Nima Kinases Nek9 Nek6 Nek7 CDK1
## Creb Phosphorylation CREB1
## Defective Factor Viii Causes Hemophilia A VWF
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production MYD88
## Ikba Variant Leads To Eda Id NFKBIA
## Interleukin 6 Family Signaling IL6,STAT1,STAT3
## Modulation By Mtb Of Host Immune System TLR2
## Myd88 Independent Tlr4 Cascade BIRC3,CREB1,FOS,HMGB1,IRAK1,LY96,MAPK8,NFKBIA,NOD1,NOD2,RIPK2,TLR4
## Traf6 Mediated Nf Kb Activation DDX58,HMGB1,NFKBIA
## Cd28 Co Stimulation CD80,CD86,CDC42,SRC
## Grb2 Events In Erbb2 Signaling EGF,EGFR
## Pi3k Events In Erbb2 Signaling EGF,EGFR
## Signal Regulatory Protein Family Interactions SRC,TYROBP
## Signaling By Erbb2 Ecd Mutants EGF,EGFR
## Sumoylation Of Dna Methylation Proteins DNMT1,DNMT3A
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex LY96,TLR4
## Beta Defensins CCR2,DEFB1,DEFB4A,TLR1,TLR2
## Extra Nuclear Estrogen Signaling CAV1,CREB1,EGF,EGFR,FOS,MMP2,MMP3,MMP9,SRC
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon LY96,TLR4
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters MYC
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde CREB1
## Hdl Assembly APOA1
## Inactivation Of Cdc42 And Rac1 CDC42
## Lectin Pathway Of Complement Activation MBL2
## Mecp2 Regulates Transcription Of Neuronal Ligands CREB1
## Netrin Mediated Repulsion Signals SRC
## Runx3 Regulates Wnt Signaling MYC
## Smac Xiap Regulated Apoptotic Response CASP3
## Interleukin 2 Family Signaling CSF2,IL15,IL2,STAT1,STAT3
## Signaling By Cytosolic Fgfr1 Fusion Mutants STAT1,STAT3
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members STAT3
## Dap12 Interactions HLA-B,TREM1,TREM2,TYROBP,VAV2
## Downregulation Of Erbb4 Signaling SRC
## E2f Enabled Inhibition Of Pre Replication Complex Formation CDK1
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells SRC
## Interleukin 23 Signaling STAT3
## Mapk1 Erk2 Activation IL6
## Oas Antiviral Response DDX58
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants EGF,EGFR
## Interleukin 17 Signaling CREB1,FOS,IL17A,IRAK1,MAPK8,NOD1,NOD2,RIPK2
## Other Semaphorin Interactions TREM2,TYROBP
## Pd 1 Signaling CD274,HLA-DQB1,PDCD1LG2
## Scavenging By Class A Receptors APOA1,MARCO
## Ticam1 Rip1 Mediated Ikk Complex Recruitment BIRC3,TLR3
## Akt Phosphorylates Targets In The Nucleus CREB1
## Camk Iv Mediated Phosphorylation Of Creb CREB1
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand CASP3
## Chylomicron Assembly APOA1
## Chylomicron Remodeling APOA1
## Dap12 Signaling TREM2,TYROBP,VAV2
## Downstream Signal Transduction SRC,STAT1,STAT3
## Hdl Remodeling APOA1
## Mastl Facilitates Mitotic Progression CDK1
## P75ntr Regulates Axonogenesis OMG
## Regulation Of Commissural Axon Pathfinding By Slit And Robo SRC
## Regulation Of Foxo Transcriptional Activity By Acetylation SIRT1
## Interleukin 1 Family Signaling CASP1,HMGB1,IL13,IL18,IL1B,IL33,IL4,IRAK1,IRAK3,MAPK8,MYD88,NFKBIA,NOD1,NOD2,RIPK2,STAT3
## Signaling By Pdgfr In Disease STAT1,STAT3
## Costimulation By The Cd28 Family CD274,CD80,CD86,CDC42,CTLA4,HLA-DQB1,PDCD1LG2,SRC
## Peptide Ligand Binding Receptors C3,C5AR1,CCL11,CCL2,CCL20,CCL22,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CORT,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4,MLN
## Tnfr1 Induced Nfkappab Signaling Pathway BIRC3,TNF,TNFAIP3
## Interleukin 37 Signaling CASP1,STAT3
## Signal Transduction By L1 EGFR,VAV2
## Condensation Of Prometaphase Chromosomes CDK1
## Dermatan Sulfate Biosynthesis UST
## Dscam Interactions MAPK8
## Egfr Downregulation CDC42,EGF,EGFR
## Endosomal Vacuolar Pathway HLA-B
## Enos Activation CAV1
## Mapk Targets Nuclear Events Mediated By Map Kinases CREB1,FOS,MAPK8
## Pexophagy ATM
## Regulation By C Flip FASLG
## Rho Gtpases Activate Ktn1 CDC42
## Signaling By Leptin STAT3
## Sumoylation Of Immune Response Proteins NFKBIA
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex TLR3
## Cd28 Dependent Pi3k Akt Signaling CD80,CD86
## Shc1 Events In Erbb2 Signaling EGF,EGFR
## Caspase Mediated Cleavage Of Cytoskeletal Proteins CASP3
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase CREB1
## Interleukin 2 Signaling IL2
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 DDX58
## Notch2 Intracellular Domain Regulates Transcription CREB1
## Pecam1 Interactions SRC
## Tandem Pore Domain Potassium Channels KCNK1
## Ticam1 Dependent Activation Of Irf3 Irf7 TLR3
## Vldlr Internalisation And Degradation PCSK9
## Raf Independent Mapk1 3 Activation CDK1,IL6
## Defensins CCR2,DEFB1,DEFB4A,TLR1,TLR2
## Signaling By Scf Kit MMP9,SRC,STAT1,STAT3
## Advanced Glycosylation Endproduct Receptor Signaling HMGB1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex CDK1
## Cytochrome C Mediated Apoptotic Response CASP3
## Dissolution Of Fibrin Clot SERPINE1
## Growth Hormone Receptor Signaling STAT1,STAT3
## Irf3 Mediated Induction Of Type I Ifn IFI16
## Negative Regulators Of Ddx58 Ifih1 Signaling ATG5,DDX58,TNFAIP3
## P38mapk Events SRC
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation STAT3
## Purine Salvage ADK
## Runx2 Regulates Osteoblast Differentiation RUNX2,SRC
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip DPP4
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 WNT5A
## Regulation Of Tnfr1 Signaling BIRC3,TNF,TNFAIP3
## Golgi Cisternae Pericentriolar Stack Reorganization CDK1
## Inactivation Of Csf3 G Csf Signaling STAT1,STAT3
## Irak1 Recruits Ikk Complex IRAK1
## Notch3 Activation And Transmission Of Signal To The Nucleus EGF,EGFR
## Regulation Of Ifng Signaling STAT1
## Repression Of Wnt Target Genes MYC
## Signaling By Egfr In Cancer EGF,EGFR
## Traf3 Dependent Irf Activation Pathway DDX58
## Interleukin 20 Family Signaling STAT1,STAT3
## Signaling By Erbb2 In Cancer EGF,EGFR
## Depolymerisation Of The Nuclear Lamina CDK1
## Heme Degradation HMOX1
## Interleukin 12 Family Signaling CDC42,IL10,MIF,STAT1,STAT3
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation CAV1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists WNT5A
## Platelet Adhesion To Exposed Collagen VWF
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx PTGS2
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors EGFR
## Wnt5a Dependent Internalization Of Fzd4 WNT5A
## Yap1 And Wwtr1 Taz Stimulated Gene Expression RUNX2
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress CCL2,CXCL8
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc MUC5B
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks VWF
## Foxo Mediated Transcription Of Cell Death Genes FASLG
## G0 And Early G1 CDK1,MYC
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation CDC42,IL10,MIF
## Integrin Signaling SRC,VWF
## Interleukin Receptor Shc Signaling CSF2,IL2
## Nrif Signals Cell Death From The Nucleus MAPK8
## Regulation Of Kit Signaling SRC
## Spry Regulation Of Fgf Signaling SRC
## Sting Mediated Induction Of Host Immune Responses IFI16
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 CDK1
## Vegfr2 Mediated Vascular Permeability CAV1,VAV2
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects CDK4
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps MUC5B
## Downregulation Of Erbb2 Signaling EGF,EGFR
## Foxo Mediated Transcription Of Cell Cycle Genes CAV1
## Mitophagy ATG5,SRC
## Regulation Of Runx1 Expression And Activity SRC
## Ripk1 Mediated Regulated Necrosis BIRC3,FASLG
## Signaling By Egfr CDC42,EGF,EGFR,SRC
## Signaling By Ntrk3 Trkc SRC
## Abc Transporters In Lipid Homeostasis APOA1
## Crosslinking Of Collagen Fibrils LOX
## Diseases Associated With Glycosylation Precursor Biosynthesis GALE
## Eph Ephrin Mediated Repulsion Of Cells MMP2,MMP9,SRC,VAV2
## Mecp2 Regulates Neuronal Receptors And Channels CREB1
## Signaling By Csf3 G Csf STAT1,STAT3
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest CDK1
## Biosynthesis Of Specialized Proresolving Mediators Spms PTGS2
## Ephrin Signaling SRC
## Fgfr1 Mutant Receptor Activation STAT1,STAT3
## Initiation Of Nuclear Envelope Ne Reformation CDK1
## Interleukin 1 Signaling HMGB1,IL1B,IRAK1,IRAK3,MYD88,NFKBIA,NOD1,NOD2,RIPK2
## Ldl Clearance PCSK9
## Nicotinamide Salvaging PTGS2
## Nicotinate Metabolism CD38,PTGS2
## Phase 4 Resting Membrane Potential KCNK1
## Plasma Lipoprotein Assembly APOA1
## Regulation Of Tp53 Activity Through Methylation ATM
## Runx2 Regulates Bone Development RUNX2,SRC
## Signaling By Interleukins CASP1,CASP3,CCL11,CCL2,CCL20,CCL22,CCR1,CCR2,CCR5,CD80,CD86,CDC42,CREB1,CSF2,CXCL1,CXCL10,CXCL2,CXCL8,FASLG,FOS,HMGB1,HMOX1,ICAM1,IL10,IL13,IL15,IL17A,IL18,IL1B,IL2,IL33,IL4,IL6,IRAK1,IRAK3,IRF4,LBP,MAPK8,MIF,MMP2,MMP3,MMP9,MYC,MYD88,NFKBIA,NOD1,NOD2,PTGS2,RIPK2,STAT1,STAT3,TNF
## Tnfr2 Non Canonical Nf Kb Pathway BIRC3,CD27,CD40,CD70,FASLG,TNF,TNFRSF11B,TNFSF11,TNFSF13B
## Transcription Of E2f Targets Under Negative Control By Dream Complex MYC
## Vegfr2 Mediated Cell Proliferation SRC
## Apoptotic Factor Mediated Response CASP3
## Cargo Concentration In The Er CD59,CTSC
## Collagen Degradation MMP13,MMP2,MMP3,MMP8,MMP9
## G Beta Gamma Signalling Through Cdc42 CDC42
## Listeria Monocytogenes Entry Into Host Cells SRC
## Perk Regulates Gene Expression CCL2,CXCL8
## Phosphorylation Of The Apc C CDK1
## Pka Mediated Phosphorylation Of Creb CREB1
## Plasma Lipoprotein Clearance APOA1,PCSK9
## Signaling By Hippo CASP3
## Signaling By Ptk6 CDK4,EGF,EGFR,STAT3
## Signalling To Ras SRC
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription MYC,SERPINE1
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 DPP4
## Tnf Signaling BIRC3,TNF,TNFAIP3
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release ATM
## Branched Chain Amino Acid Catabolism IVD
## Chaperone Mediated Autophagy CFTR
## Complement Cascade C3,C4B,C5AR1,CD19,CD46,CD55,CD59,CFH,CRP,MBL2
## Constitutive Signaling By Aberrant Pi3k In Cancer CD19,CD80,CD86,EGF,EGFR,SRC
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models FASLG
## E2f Mediated Regulation Of Dna Replication CDK1
## Gpvi Mediated Activation Cascade CDC42,VAV2
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane HMOX1
## P75 Ntr Receptor Mediated Signalling CASP3,IRAK1,MAPK8,MYD88,NFKBIA,OMG,RIPK2,VAV2
## Pink1 Prkn Mediated Mitophagy ATG5
## Rho Gtpases Activate Paks CDC42
## Incretin Synthesis Secretion And Inactivation DPP4
## Interleukin 12 Signaling CDC42,IL10,MIF
## Intrinsic Pathway Of Fibrin Clot Formation VWF
## Long Term Potentiation SRC
## Nucleotide Salvage ADK
## Regulation Of Tp53 Expression And Degradation ATM,CDK1
## Rhoh Gtpase Cycle CAV1,VAMP3
## Rhoq Gtpase Cycle CAV1,CDC42,CFTR,VAMP3
## Signaling By Notch3 EGF,EGFR,STAT1
## Telomere Extension By Telomerase TERT
## Termination Of O Glycan Biosynthesis MUC5B
## Adp Signalling Through P2y Purinoceptor 1 SRC
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc HLA-B
## Apc C Cdc20 Mediated Degradation Of Cyclin B CDK1
## Apoptotic Cleavage Of Cellular Proteins CASP3,OCLN
## Apoptotic Execution Phase CASP3,HMGB1,OCLN
## Assembly Of Collagen Fibrils And Other Multimeric Structures LOX,MMP13,MMP3,MMP9
## Basigin Interactions CAV1
## Constitutive Signaling By Akt1 E17k In Cancer CREB1
## Cyclin A B1 B2 Associated Events During G2 M Transition CDK1
## Cytosolic Sensors Of Pathogen Associated Dna IFI16,MYD88,NFKBIA,TLR3
## Death Receptor Signalling BIRC3,CASP3,FASLG,IRAK1,MAPK8,MYD88,NFKBIA,OMG,RIPK2,TNF,TNFAIP3,VAV2
## Dectin 2 Family MUC5B
## Negative Regulation Of The Pi3k Akt Network CD19,CD80,CD86,EGF,EGFR,IL33,IRAK1,MYD88,SRC
## Netrin 1 Signaling CDC42,MAPK8,SRC
## Ngf Stimulated Transcription CREB1,FOS
## Notch3 Intracellular Domain Regulates Transcription STAT1
## Other Interleukin Signaling CASP3
## Platelet Aggregation Plug Formation SRC,VWF
## Regulation Of Ifna Signaling STAT1
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa ATM
## Rho Gtpases Activate Nadph Oxidases NOX1
## Signaling By Erbb2 EGF,EGFR,SRC
## Signaling By Fgfr1 In Disease STAT1,STAT3
## Signaling By Ntrk2 Trkb SRC
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors EGFR,MYC
## Triglyceride Catabolism CAV1
## Wnt Ligand Biogenesis And Trafficking WNT5A
## Antigen Processing Cross Presentation HLA-B,HMGB1,LY96,MYD88,TLR1,TLR2,TLR4,VAMP3
## Bmal1 Clock Npas2 Activates Circadian Gene Expression SERPINE1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling CREB1
## Epha Mediated Growth Cone Collapse SRC
## Ephb Mediated Forward Signaling CDC42,SRC
## G1 S Specific Transcription CDK1
## Infection With Mycobacterium Tuberculosis TLR2
## Intrinsic Pathway For Apoptosis CASP3,MAPK8,STAT3
## Map2k And Mapk Activation SRC,VWF
## Metabolism Of Porphyrins HMOX1
## Myogenesis CDC42
## Negative Regulation Of Fgfr3 Signaling SRC
## Rhof Gtpase Cycle CAV1,VAMP3
## Rhoj Gtpase Cycle CAV1,CDC42,VAMP3
## Tp53 Regulates Transcription Of Cell Death Genes ATM,CASP1
## Traf6 Mediated Irf7 Activation DDX58
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer MYC,SERPINE1
## Activation Of Bh3 Only Proteins MAPK8
## Antimicrobial Peptides BPI,CCR2,DEFB1,DEFB4A,TLR1,TLR2
## Ca Dependent Events CREB1
## Cyclin D Associated Events In G1 CDK4,SRC
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta ATG5,DDX58,HMGB1,NFKBIA,TNFAIP3
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane CAV1
## Foxo Mediated Transcription CAV1,FASLG,SIRT1
## G Protein Beta Gamma Signalling CDC42
## Hdr Through Single Strand Annealing Ssa ATM
## Interleukin 3 Interleukin 5 And Gm Csf Signaling CSF2,IL2
## Interleukin 7 Signaling STAT3
## Late Endosomal Microautophagy CFTR
## Met Activates Ptk2 Signaling SRC
## Metalloprotease Dubs NLRP3
## Negative Regulation Of Fgfr1 Signaling SRC
## Negative Regulation Of Fgfr2 Signaling SRC
## Negative Regulation Of Fgfr4 Signaling SRC
## Nuclear Pore Complex Npc Disassembly CDK1
## Nuclear Signaling By Erbb4 SRC
## Oncogene Induced Senescence CDK4
## Pi3k Akt Signaling In Cancer CD19,CD80,CD86,CREB1,EGF,EGFR,SRC
## Plasma Lipoprotein Remodeling APOA1
## Raf Activation SRC
## Regulation Of Mecp2 Expression And Activity CREB1
## Resolution Of D Loop Structures ATM
## Rho Gtpases Activate Iqgaps CDC42
## Rho Gtpases Activate Wasps And Waves CDC42
## Rhod Gtpase Cycle CAV1,VAMP3
## Rhog Gtpase Cycle CAV1,CDC42,VAMP3,VAV2
## Rhou Gtpase Cycle CDC42
## Rhov Gtpase Cycle CDC42
## Ros And Rns Production In Phagocytes MPO
## Sialic Acid Metabolism NANP
## Signal Amplification SRC
## Signaling By Erbb4 EGF,EGFR,SRC
## Signaling By Moderate Kinase Activity Braf Mutants SRC,VWF
## Signaling By Notch2 CREB1
## Signaling By Pdgf SRC,STAT1,STAT3
## Signalling To Erks SRC
## Thrombin Signalling Through Proteinase Activated Receptors Pars SRC
## Transcriptional Regulation Of Pluripotent Stem Cells STAT3
## 2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism
## Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism
## Abc Family Proteins Mediated Transport APOA1,CFTR
## Abc Transporter Disorders APOA1,CFTR
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria
## Activation Of Gene Expression By Srebf Srebp
## Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Nmda Receptors And Postsynaptic Events CREB1,SRC
## Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells
## Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps
## Adaptive Immune System C3,CD19,CD274,CD34,CD40,CD80,CD86,CDC42,CTLA4,CTSC,FCGR2B,HLA-B,HLA-DQB1,HMGB1,ICAM1,LY96,MYD88,NCR1,NFKBIA,PDCD1LG2,RIPK2,SRC,TLR1,TLR2,TLR4,TREM1,TREM2,TYROBP,VAMP3
## Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions
## Adora2b Mediated Anti Inflammatory Cytokines Production CREB1,IL6
## Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors
## Aflatoxin Activation And Detoxification
## Aggrephagy CFTR
## Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway
## Amine Ligand Binding Receptors
## Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity
## Amyloid Fiber Formation APOA1,CST3
## Anchoring Fibril Formation
## Anchoring Of The Basal Body To The Plasma Membrane CDK1
## Androgen Biosynthesis
## Anti Inflammatory Response Favouring Leishmania Parasite Infection CD163,CREB1,IL10,IL6,SRC
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers CD19
## Antigen Processing Ubiquitination Proteasome Degradation
## Antiviral Mechanism By Ifn Stimulated Genes DDX58,STAT1
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc C Mediated Degradation Of Cell Cycle Proteins CDK1
## Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection
## Apoptosis CASP3,FASLG,HMGB1,LY96,MAPK8,OCLN,STAT3,TLR4
## Aquaporin Mediated Transport
## Arachidonate Production From Dag
## Arachidonic Acid Metabolism PTGS2
## Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling
## Asparagine N Linked Glycosylation CD55,CD59,CTSC,NANP
## Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex
## Association Of Tric Cct With Target Proteins During Biosynthesis STAT3
## Asymmetric Localization Of Pcp Proteins WNT5A
## Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry
## Attachment Of Gpi Anchor To Upar
## Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## Aurka Activation By Tpx2 CDK1
## Autophagy ATG5,ATM,CFTR,SRC
## B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair
## Base Excision Repair Ap Site Formation
## Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Independent Wnt Signaling MYC,WNT5A
## Beta Catenin Phosphorylation Cascade
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids
## Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism
## Binding And Uptake Of Ligands By Scavenger Receptors APOA1,CD163,HP,MARCO
## Biological Oxidations
## Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein NANP
## Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis
## Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions
## C Type Lectin Receptors Clrs CCL22,IL1B,MUC5B,NFKBIA,SRC
## Ca2 Activated K Channels
## Ca2 Pathway MYC,WNT5A
## Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin
## Cardiac Conduction KCNK1
## Cargo Recognition For Clathrin Mediated Endocytosis CFTR,EGF,EGFR,VAMP3,WNT5A
## Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism
## Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation
## Cdc42 Gtpase Cycle CAV1,CDC42,NOX1,VAMP3,VAV2
## Cdc6 Association With The Orc Origin Complex
## Cell Cell Communication SRC,TYROBP
## Cell Cell Junction Organization
## Cell Cycle ATM,CDK1,CDK4,MYC,SRC,TERT
## Cell Cycle Checkpoints ATM,CDK1
## Cell Cycle Mitotic CDK1,CDK4,MYC,SRC
## Cell Death Signalling Via Nrage Nrif And Nade CASP3,MAPK8,VAV2
## Cell Extracellular Matrix Interactions
## Cell Junction Organization
## Cell Surface Interactions At The Vascular Wall CAV1,CD2,CEACAM1,CEACAM6,CEACAM8,MIF,SRC,TREM1
## Cellular Hexose Transport
## Cellular Response To Chemical Stress HMOX1,NLRP3,STAT3
## Cellular Response To Heat Stress ATM,SIRT1
## Cellular Response To Hypoxia
## Cellular Response To Starvation
## Cellular Responses To External Stimuli APOA1,ATM,CDK4,CREB1,CXCL8,FOS,HMOX1,IL6,LY96,MAPK8,NLRP3,SIRT1,STAT3,TLR4
## Cellular Senescence ATM,CDK4,CXCL8,FOS,IL6,MAPK8,STAT3
## Cgmp Effects
## Chl1 Interactions
## Cholesterol Biosynthesis
## Choline Catabolism
## Chondroitin Sulfate Biosynthesis
## Chondroitin Sulfate Dermatan Sulfate Metabolism UST
## Chrebp Activates Metabolic Gene Expression
## Chromatin Modifying Enzymes CDK4,DNMT3A,PADI4
## Chromosome Maintenance TERT
## Chylomicron Clearance
## Cilium Assembly CDK1
## Circadian Clock CREB1,SERPINE1,SIRT1
## Citric Acid Cycle Tca Cycle
## Class A 1 Rhodopsin Like Receptors C3,C5AR1,CCL11,CCL2,CCL20,CCL22,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CORT,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4,MLN
## Class B 2 Secretin Family Receptors CD55,WNT5A
## Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Mhc Mediated Antigen Processing Presentation HLA-B,HMGB1,LY96,MYD88,TLR1,TLR2,TLR4,VAMP3
## Class I Peroxisomal Membrane Protein Import
## Clathrin Mediated Endocytosis CFTR,EGF,EGFR,VAMP3,WNT5A
## Clec7a Dectin 1 Induces Nfat Activation
## Clec7a Dectin 1 Signaling CCL22,IL1B,NFKBIA,SRC
## Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization
## Collagen Formation LOX,MMP13,MMP3,MMP9
## Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complex I Biogenesis
## Condensation Of Prophase Chromosomes CDK1
## Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic
## Copi Mediated Anterograde Transport CD55,CD59
## Copii Mediated Vesicle Transport CD59,CTSC
## Creatine Metabolism
## Creation Of C4 And C2 Activators CRP,MBL2
## Creb3 Factors Activate Genes
## Cristae Formation
## Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Cs Ds Degradation
## Cyclin A Cdk2 Associated Events At S Phase Entry CDK4,MYC
## Cyp2e1 Reactions
## Cytochrome P450 Arranged By Substrate Type
## Cytokine Signaling In Immune System BIRC3,CASP1,CASP3,CCL11,CCL2,CCL20,CCL22,CCR1,CCR2,CCR5,CD27,CD40,CD70,CD80,CD86,CDC42,CREB1,CSF2,CXCL1,CXCL10,CXCL2,CXCL8,DDX58,FASLG,FOS,HLA-B,HLA-DQB1,HMGB1,HMOX1,ICAM1,IL10,IL13,IL15,IL17A,IL18,IL1B,IL2,IL33,IL4,IL6,IRAK1,IRAK3,IRF4,LBP,MAPK8,MIF,MMP2,MMP3,MMP9,MYC,MYD88,NFKBIA,NOD1,NOD2,PTGS2,RIPK2,STAT1,STAT3,TNF,TNFRSF11B,TNFSF11,TNFSF13B
## Cytoprotection By Hmox1 HMOX1,NLRP3,STAT3
## Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation
## Dag And Ip3 Signaling CREB1
## Darpp 32 Events
## Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna
## Dectin 1 Mediated Noncanonical Nf Kb Signaling CCL22
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type
## Defective Cftr Causes Cystic Fibrosis CFTR
## Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2
## Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B
## Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism
## Degradation Of Axin
## Degradation Of Beta Catenin By The Destruction Complex MYC
## Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome
## Degradation Of The Extracellular Matrix CASP3,MMP13,MMP2,MMP3,MMP8,MMP9
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Detoxification Of Reactive Oxygen Species
## Deubiquitination BIRC3,CDK1,CFTR,DDX58,IL33,MYC,NFKBIA,NLRP3,NOD1,NOD2,RIPK2,TNFAIP3
## Developmental Biology CDC42,CDK4,CREB1,CXCR4,EGFR,MAPK8,MMP2,MMP9,MYC,SRC,STAT3,TNF,TREM2,TYROBP,VAV2
## Digestion
## Digestion And Absorption
## Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid
## Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With O Glycosylation Of Proteins MUC5B
## Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair
## Diseases Of Glycosylation GALE,MUC5B
## Diseases Of Metabolism GALE,MUC5B
## Diseases Of Mismatch Repair Mmr
## Diseases Of Mitotic Cell Cycle CDK4
## Diseases Of Programmed Cell Death DNMT1,DNMT3A,FASLG
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers CD19,CD80,CD86,CREB1,EGF,EGFR,MYC,SRC,STAT1,STAT3,VWF
## Disinhibition Of Snare Formation
## Disorders Of Transmembrane Transporters APOA1,CFTR
## Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass
## Dna Damage Recognition In Gg Ner
## Dna Damage Reversal
## Dna Damage Telomere Stress Induced Senescence ATM
## Dna Double Strand Break Repair ATM,MAPK8
## Dna Double Strand Break Response ATM,MAPK8
## Dna Methylation DNMT1,DNMT3A
## Dna Repair ATM,MAPK8
## Dna Replication
## Dna Replication Initiation
## Dna Replication Pre Initiation
## Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signaling Events Of B Cell Receptor Bcr NFKBIA
## Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4
## Dual Incision In Gg Ner
## Dual Incision In Tc Ner
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Ecm Proteoglycans SERPINE1
## Effects Of Pip2 Hydrolysis
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors
## Eicosanoids
## Elastic Fibre Formation LOX
## Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Eph Ephrin Signaling CDC42,MMP2,MMP9,SRC,VAV2
## Epigenetic Regulation Of Gene Expression DNMT1,DNMT3A,SIRT1
## Er Quality Control Compartment Erqc
## Er To Golgi Anterograde Transport CD55,CD59,CTSC
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets
## Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras
## Erythropoietin Activates Stat5
## Esr Mediated Signaling CAV1,CREB1,EGF,EGFR,FOS,MMP2,MMP3,MMP9,MYC,SRC
## Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis
## Estrogen Dependent Gene Expression FOS,MYC
## Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation
## Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus
## Extension Of Telomeres TERT
## Extracellular Matrix Organization CASP3,CEACAM1,CEACAM6,CEACAM8,ICAM1,LOX,MMP13,MMP2,MMP3,MMP8,MMP9,SERPINE1,VWF
## Extrinsic Pathway Of Fibrin Clot Formation
## Factors Involved In Megakaryocyte Development And Platelet Production CDC42
## Fanconi Anemia Pathway
## Fatty Acid Metabolism PTGS2
## Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer
## Fc Epsilon Receptor Fceri Signaling FOS,MAPK8,NFKBIA,VAV2
## Fceri Mediated Ca 2 Mobilization VAV2
## Fceri Mediated Mapk Activation FOS,MAPK8,VAV2
## Fceri Mediated Nf Kb Activation NFKBIA
## Fcgamma Receptor Fcgr Dependent Phagocytosis CDC42,SRC,VAV2
## Fcgr Activation SRC
## Fcgr3a Mediated Il10 Synthesis CREB1,IL10,SRC
## Fertilization
## Fgfr1 Ligand Binding And Activation
## Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling
## Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric
## Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling
## Formation Of Fibrin Clot Clotting Cascade VWF
## Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex
## Formation Of The Beta Catenin Tcf Transactivating Complex MYC,TERT
## Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling
## Fructose Catabolism
## Fructose Metabolism
## G Alpha 12 13 Signalling Events VAV2
## G Alpha I Signalling Events C3,C5AR1,CCL20,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CORT,CREB1,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4,SRC
## G Alpha Q Signalling Events CREB1,EGFR,GAST,MLN,MMP3
## G Alpha S Signalling Events SRC
## G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation
## G Protein Mediated Events CREB1
## G1 S Dna Damage Checkpoints ATM
## G2 M Checkpoints ATM,CDK1
## G2 M Dna Damage Checkpoint ATM,CDK1
## G2 Phase
## Gaba B Receptor Activation
## Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly
## Gap Junction Degradation
## Gap Junction Trafficking And Regulation SRC
## Gdp Fucose Biosynthesis
## Gene Silencing By Rna
## Generation Of Second Messenger Molecules HLA-DQB1
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis
## Gluconeogenesis
## Glucose Metabolism
## Glucuronidation
## Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation
## Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism
## Glycogen Storage Diseases
## Glycogen Synthesis
## Glycolysis
## Glycosaminoglycan Metabolism UST
## Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis
## Golgi To Er Retrograde Transport
## Gpcr Ligand Binding C3,C5AR1,CCL11,CCL2,CCL20,CCL22,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CD55,CORT,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4,MLN,WNT5A
## Grb7 Events In Erbb2 Signaling
## Hats Acetylate Histones
## Hcmv Early Events CREB1,EGFR
## Hcmv Infection CREB1,EGFR
## Hcmv Late Events
## Hdacs Deacetylate Histones
## Hdms Demethylate Histones
## Hdr Through Homologous Recombination Hrr ATM
## Hdr Through Mmej Alt Nhej
## Hedgehog Ligand Biogenesis
## Hedgehog Off State
## Hedgehog On State
## Heme Biosynthesis
## Hemostasis APOA1,CAV1,CD2,CD63,CDC42,CEACAM1,CEACAM6,CEACAM8,EGF,MIF,SERPINE1,SRC,TREM1,VAV2,VWF
## Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism
## Hiv Elongation Arrest And Recovery
## Hiv Infection CCR5,CXCR4
## Hiv Life Cycle CCR5,CXCR4
## Hiv Transcription Elongation
## Hiv Transcription Initiation
## Homologous Dna Pairing And Strand Exchange ATM
## Homology Directed Repair ATM
## Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis
## Hs Gag Degradation
## Hsf1 Activation
## Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc
## Il 6 Type Cytokine Receptor Ligand Interactions
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell C3,CD19,CD34,CD40,FCGR2B,HLA-B,ICAM1,NCR1,TREM1,TREM2,TYROBP
## Infectious Disease C3,CASP1,CCR5,CD163,CDC42,CREB1,CXCR4,EGFR,HMOX1,IL10,IL18,IL1B,IL6,MAPK8,NLRP3,NOX1,SRC,TLR2,TLR9,VAV2,WNT5A
## Influenza Infection
## Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Initial Triggering Of Complement C3,C4B,CRP,MBL2
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Innate Immune System AIM2,ATG5,BIRC3,BPI,C3,C4B,C5AR1,CASP1,CCL22,CCR2,CD19,CD46,CD55,CD59,CD63,CD68,CDC42,CEACAM1,CEACAM6,CEACAM8,CFH,CREB1,CRP,CST3,CTSC,CXCL1,DDX58,DEFB1,DEFB4A,FOS,HLA-B,HMGB1,HMOX1,HP,IFI16,IL1B,IRAK1,IRAK3,LBP,LY96,MAPK8,MBL2,MIF,MMP8,MMP9,MPO,MUC5B,MYD88,NFKBIA,NLRP3,NOD1,NOD2,RAB14,RIPK2,SLPI,SRC,TLR1,TLR2,TLR3,TLR4,TLR9,TNFAIP3,TREM1,TREM2,TYROBP,VAV2
## Inositol Phosphate Metabolism
## Insulin Processing
## Insulin Receptor Recycling
## Insulin Receptor Signalling Cascade TLR9
## Integration Of Energy Metabolism
## Integration Of Provirus
## Integrin Cell Surface Interactions ICAM1,VWF
## Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates
## Interferon Alpha Beta Signaling HLA-B,IRF4,STAT1
## Interferon Gamma Signaling HLA-B,HLA-DQB1,ICAM1,IRF4,STAT1
## Interferon Signaling DDX58,HLA-B,HLA-DQB1,ICAM1,IRF4,STAT1
## Interleukin 36 Pathway
## Intestinal Absorption
## Intra Golgi And Retrograde Golgi To Er Traffic VAMP3
## Intra Golgi Traffic
## Intracellular Signaling By Second Messengers CD19,CD80,CD86,CREB1,EGF,EGFR,IL33,IRAK1,MYD88,SRC
## Intraflagellar Transport
## Inwardly Rectifying K Channels
## Ion Channel Transport BEST2
## Ion Homeostasis
## Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors
## Irak2 Mediated Activation Of Tak1 Complex
## Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn
## Iron Uptake And Transport HMOX1
## Irs Activation
## Irs Mediated Signalling TLR9
## Josephin Domain Dubs
## Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism
## Keratinization
## Ketone Body Metabolism
## Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna
## L1cam Interactions EGFR,SRC,VAV2
## Lagging Strand Synthesis
## Laminin Interactions
## Leishmania Infection C3,CASP1,CD163,CDC42,CREB1,HMOX1,IL10,IL18,IL1B,IL6,MAPK8,NLRP3,NOX1,SRC,VAV2,WNT5A
## Leukotriene Receptors
## Lgi Adam Interactions
## Ligand Receptor Interactions
## Linoleic Acid La Metabolism
## Lipid Particle Organization
## Lipophagy
## Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism
## Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors
## M Phase CDK1
## Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Mapk Family Signaling Cascades CDC42,CDK1,CSF2,EGF,EGFR,IL2,IL6,MMP2,MYC,SRC,VWF
## Mapk6 Mapk4 Signaling CDC42,CDK1,MMP2,MYC
## Maturation Of Nucleoprotein
## Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein
## Meiosis ATM,CDK4
## Meiotic Recombination ATM,CDK4
## Meiotic Synapsis
## Melanin Biosynthesis
## Membrane Trafficking CD55,CD59,CFTR,CTSC,EGF,EGFR,RAB14,SRC,VAMP3,WNT5A
## Met Activates Pi3k Akt Signaling
## Met Activates Ptpn11
## Met Activates Rap1 And Rac1
## Met Activates Ras Signaling
## Met Interacts With Tns Proteins
## Met Promotes Cell Motility SRC
## Met Receptor Activation
## Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones
## Metabolism Of Amino Acids And Derivatives IVD
## Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Carbohydrates GALE,UST
## Metabolism Of Cofactors
## Metabolism Of Fat Soluble Vitamins APOA1
## Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Lipids APOA1,CAV1,PTGS2,RAB14
## Metabolism Of Nucleotides ADK
## Metabolism Of Polyamines
## Metabolism Of Rna
## Metabolism Of Steroid Hormones
## Metabolism Of Steroids
## Metabolism Of Vitamins And Cofactors APOA1,CD38,PTGS2
## Metabolism Of Water Soluble Vitamins And Cofactors CD38,PTGS2
## Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins
## Metallothioneins Bind Metals
## Methionine Salvage Pathway
## Methylation
## Mhc Class Ii Antigen Presentation CTSC,HLA-DQB1
## Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle
## Miscellaneous Substrates
## Miscellaneous Transport And Binding Events
## Mismatch Repair
## Mitochondrial Biogenesis CREB1
## Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import
## Mitochondrial Translation
## Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling
## Mitotic G1 Phase And G1 S Transition CDK1,CDK4,MYC,SRC
## Mitotic G2 G2 M Phases CDK1
## Mitotic Metaphase And Anaphase CDK1
## Mitotic Prometaphase CDK1
## Mitotic Prophase CDK1
## Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis
## Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis
## Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing
## Mrna Editing C To U Conversion
## Mrna Splicing
## Mrna Splicing Minor Pathway
## Mtor Signalling
## Mtorc1 Mediated Signalling
## Mucopolysaccharidoses
## Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors
## Muscle Contraction KCNK1
## Myoclonic Epilepsy Of Lafora
## N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters
## Ncam Signaling For Neurite Out Growth CREB1,SRC
## Ncam1 Interactions
## Nectin Necl Trans Heterodimerization
## Neddylation
## Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Epigenetic Regulation Of Rrna Expression DNMT1,SIRT1
## Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Nephrin Family Interactions
## Nervous System Development CDC42,CREB1,CXCR4,EGFR,MAPK8,MMP2,MMP9,SRC,TREM2,TYROBP,VAV2
## Neurexins And Neuroligins
## Neurofascin Interactions
## Neuronal System CREB1,KCNK1,SRC
## Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance
## Neurotransmitter Receptors And Postsynaptic Signal Transmission CREB1,SRC
## Neurotransmitter Release Cycle
## Neutrophil Degranulation BPI,C3,C5AR1,CD55,CD59,CD63,CD68,CEACAM1,CEACAM6,CEACAM8,CST3,CTSC,CXCL1,HLA-B,HMGB1,HP,MIF,MMP8,MMP9,MPO,RAB14,SLPI,TLR2,TYROBP
## Ngf Independant Trka Activation
## Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3
## Nonhomologous End Joining Nhej ATM
## Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle
## Notch Hlh Transcription Pathway
## Notch1 Intracellular Domain Regulates Transcription MYC
## Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrage Signals Death Through Jnk MAPK8,VAV2
## Nrcam Interactions
## Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1
## Nuclear Envelope Breakdown CDK1
## Nuclear Envelope Ne Reassembly CDK1
## Nuclear Events Kinase And Transcription Factor Activation CREB1,FOS
## Nuclear Import Of Rev Protein
## Nuclear Receptor Transcription Pathway
## Nucleobase Biosynthesis
## Nucleobase Catabolism
## Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors
## O Glycosylation Of Tsr Domain Containing Proteins
## O Linked Glycosylation MUC5B
## O Linked Glycosylation Of Mucins MUC5B
## Olfactory Signaling Pathway
## Oncogenic Mapk Signaling SRC,VWF
## Opioid Signalling CREB1
## Opsins
## Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organelle Biogenesis And Maintenance CDK1,CREB1
## Organic Anion Transport
## Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport
## Organic Cation Transport
## Oxidative Stress Induced Senescence CDK4,FOS,MAPK8
## P2y Receptors
## P75ntr Negatively Regulates Cell Cycle Via Sc1
## Parasite Infection CDC42,SRC,VAV2
## Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair
## Pcp Ce Pathway WNT5A
## Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis
## Peptide Hormone Metabolism DPP4
## Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import
## Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation
## Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4
## Phospholipid Metabolism RAB14
## Physiological Factors
## Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4
## Pi Metabolism RAB14
## Pi3k Akt Activation
## Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation
## Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines
## Plasma Lipoprotein Assembly Remodeling And Clearance APOA1,PCSK9
## Platelet Activation Signaling And Aggregation APOA1,CD63,CDC42,EGF,SERPINE1,SRC,VAV2,VWF
## Platelet Calcium Homeostasis
## Platelet Homeostasis
## Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events
## Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway
## Post Translational Modification Synthesis Of Gpi Anchored Proteins GP2
## Postmitotic Nuclear Pore Complex Npc Reformation
## Potassium Channels KCNK1
## Potential Therapeutics For Sars TLR9
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Prc2 Methylates Histones And Dna DNMT1,DNMT3A
## Pre Notch Expression And Processing
## Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna
## Processing Of Dna Double Strand Break Ends ATM
## Processing Of Intronless Pre Mrnas
## Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand
## Programmed Cell Death BIRC3,CASP1,CASP3,FASLG,HMGB1,IL18,IL1B,LY96,MAPK8,OCLN,STAT3,TLR4
## Prolactin Receptor Signaling
## Prolonged Erk Activation Events
## Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors
## Protein Folding STAT3
## Protein Localization HMOX1
## Protein Methylation
## Protein Protein Interactions At Synapses
## Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport
## Pten Regulation
## Ptk6 Expression
## Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis
## Pyrimidine Catabolism
## Pyrimidine Salvage
## Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway
## Rab Gefs Exchange Gtp For Gdp On Rabs RAB14
## Rab Geranylgeranylation RAB14
## Rab Regulation Of Trafficking RAB14
## Rac1 Gtpase Cycle CAV1,CDC42,NOX1,VAMP3,VAV2
## Rac2 Gtpase Cycle CAV1,CDC42,VAMP3,VAV2
## Rac3 Gtpase Cycle CAV1,CDC42,NOX1,VAMP3,VAV2
## Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recruitment Of Mitotic Centrosome Proteins And Complexes CDK1
## Recruitment Of Numa To Mitotic Centrosomes CDK1
## Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp
## Recycling Pathway Of L1 SRC
## Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr
## Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos
## Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Hmox1 Expression And Activity HMOX1
## Regulation Of Hsf1 Mediated Heat Shock Response ATM,SIRT1
## Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps APOA1,C3,CST3,IL6,MMP2,PCSK9
## Regulation Of Insulin Secretion
## Regulation Of Lipid Metabolism By Pparalpha APOA1
## Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Plk1 Activity At G2 M Transition CDK1
## Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps
## Regulation Of Runx2 Expression And Activity RUNX2,STAT1
## Regulation Of Runx3 Expression And Activity SRC
## Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal
## Regulation Of Tp53 Activity ATM,CDK1
## Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors
## Regulation Of Tp53 Activity Through Phosphorylation ATM
## Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Reproduction ATM,CDK4
## Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Resolution Of Sister Chromatid Cohesion CDK1
## Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis
## Response To Elevated Platelet Cytosolic Ca2 APOA1,CD63,EGF,SERPINE1,VWF
## Response To Metal Ions
## Ret Signaling SRC
## Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling
## Retrograde Transport At The Trans Golgi Network VAMP3
## Reversible Hydration Of Carbon Dioxide
## Rho Gtpase Cycle CAV1,CDC42,CFTR,NOX1,VAMP3,VAV2
## Rho Gtpase Effectors CDC42,CFTR,NOX1,SRC
## Rho Gtpases Activate Cit
## Rho Gtpases Activate Formins CDC42,SRC
## Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks
## Rhoa Gtpase Cycle CAV1,VAMP3,VAV2
## Rhob Gtpase Cycle CAV1,VAMP3,VAV2
## Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle
## Rhoc Gtpase Cycle CAV1,VAMP3,VAV2
## Rhot1 Gtpase Cycle
## Rmts Methylate Histone Arginines CDK4,DNMT3A
## Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination
## Rnd1 Gtpase Cycle CAV1
## Rnd2 Gtpase Cycle CAV1
## Rnd3 Gtpase Cycle CAV1
## Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression
## Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol
## Rrna Processing
## Rrna Processing In The Mitochondrion
## Rsk Activation
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf
## Runx3 Regulates Yap1 Mediated Transcription
## S Phase CDK4,MYC
## Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection
## Sars Cov 2 Infection
## Sars Cov Infections TLR9
## Scavenging By Class F Receptors
## Scavenging Of Heme From Plasma APOA1,CD163,HP
## Scf Skp2 Mediated Degradation Of P27 P21 CDK4
## Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selective Autophagy ATG5,ATM,CFTR,SRC
## Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Semaphorin Interactions TREM2,TYROBP
## Senescence Associated Secretory Phenotype Sasp CDK4,CXCL8,FOS,IL6,STAT3
## Sensory Perception APOA1
## Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids
## Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors
## Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r
## Shc1 Events In Erbb4 Signaling
## Signal Attenuation
## Signaling By Activin
## Signaling By Bmp
## Signaling By Braf And Raf Fusions SRC,VWF
## Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Erythropoietin
## Signaling By Fgfr SRC
## Signaling By Fgfr In Disease STAT1,STAT3
## Signaling By Fgfr1 SRC
## Signaling By Fgfr2 SRC
## Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease
## Signaling By Fgfr3 SRC
## Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4 SRC
## Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Gpcr C3,C5AR1,CCL11,CCL2,CCL20,CCL22,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CD55,CDC42,CORT,CREB1,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4,EGFR,GAST,MLN,MMP3,SRC,VAV2,WNT5A
## Signaling By Hedgehog
## Signaling By Insulin Receptor TLR9
## Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Met SRC,STAT3
## Signaling By Mras Complex Mutants
## Signaling By Mst1
## Signaling By Nodal
## Signaling By Notch CREB1,EGF,EGFR,MYC,STAT1
## Signaling By Notch1 MYC
## Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 Pest Domain Mutants In Cancer MYC
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch4
## Signaling By Ntrks CREB1,FOS,SRC,STAT3
## Signaling By Nuclear Receptors CAV1,CREB1,EGF,EGFR,FOS,MMP2,MMP3,MMP9,MYC,SRC
## Signaling By Receptor Tyrosine Kinases CAV1,CDC42,CREB1,EGF,EGFR,FOS,MMP9,SRC,STAT1,STAT3,TLR9,VAV2
## Signaling By Retinoic Acid
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 CAV1,CDC42,CFTR,NOX1,SRC,VAMP3,VAV2
## Signaling By Rnf43 Mutants
## Signaling By Robo Receptors CDC42,CXCR4,SRC
## Signaling By Tgf Beta Receptor Complex MYC,SERPINE1
## Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By Tgfb Family Members MYC,SERPINE1
## Signaling By The B Cell Receptor Bcr CD19,NFKBIA
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r TLR9
## Signaling By Vegf CAV1,CDC42,SRC,VAV2
## Signaling By Wnt CAV1,MYC,TERT,WNT5A
## Signaling By Wnt In Cancer
## Signalling To P38 Via Rit And Rin
## Sirt1 Negatively Regulates Rrna Expression SIRT1
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport
## Slc Transporter Disorders
## Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction
## Snrnp Assembly
## Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers
## Sos Mediated Signalling
## Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism
## Srp Dependent Cotranslational Protein Targeting To Membrane
## Stabilization Of P53 ATM
## Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants
## Stimuli Sensing Channels BEST2
## Striated Muscle Contraction
## Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation DNMT1,DNMT3A,NFKBIA,UHRF2
## Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins
## Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Cofactors UHRF2
## Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation
## Surfactant Metabolism
## Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules
## Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx
## Synthesis Of Pa
## Synthesis Of Pc
## Synthesis Of Pe
## Synthesis Of Pg
## Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pips At The Plasma Membrane RAB14
## Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Substrates In N Glycan Biosythesis NANP
## Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin
## Tachykinin Receptors Bind Tachykinins
## Tbc Rabgaps
## Tcf Dependent Signaling In Response To Wnt CAV1,MYC,TERT,WNT5A
## Tcr Signaling HLA-DQB1,NFKBIA,RIPK2
## Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation
## Telomere Maintenance TERT
## Terminal Pathway Of Complement
## Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model
## The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint CDK1
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis
## Tie2 Signaling
## Tight Junction Interactions
## Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Cell Cycle Genes CDK1
## Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Dna Repair Genes ATM,FOS
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling
## Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of The Hiv Genome
## Transcriptional Activation Of Mitochondrial Biogenesis CREB1
## Transcriptional Regulation By E2f6
## Transcriptional Regulation By Mecp2 CREB1,IRAK1
## Transcriptional Regulation By Runx1 CSF2,CTLA4,IL2,OCLN,RUNX2,SRC
## Transcriptional Regulation By Runx2 CDK1,CDK4,MMP13,RUNX2,SRC,STAT1
## Transcriptional Regulation By Runx3 MYC,SRC
## Transcriptional Regulation By Small Rnas
## Transcriptional Regulation By Tp53 ATM,CASP1,CDK1,FOS
## Transcriptional Regulation By Ventx IL6
## Transcriptional Regulation Of Granulopoiesis CDK4,CREB1,MYC,STAT3
## Transcriptional Regulation Of Testis Differentiation
## Transcriptional Regulation Of White Adipocyte Differentiation CDK4,TNF
## Transferrin Endocytosis And Recycling
## Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh
## Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane RAB14
## Transmission Across Chemical Synapses CREB1,SRC
## Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars
## Transport Of Organic Anions
## Transport Of Small Molecules APOA1,BEST2,CFTR,HMOX1,PCSK9
## Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules
## Transport To The Golgi And Subsequent Modification CD55,CD59,CTSC
## Triglyceride Biosynthesis
## Triglyceride Metabolism CAV1
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation
## Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol
## Trna Processing
## Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus
## Trp Channels
## Tryptophan Catabolism
## Type I Hemidesmosome Assembly
## Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins
## Ub Specific Processing Proteases BIRC3,CFTR,DDX58,IL33,MYC,NFKBIA
## Ubiquinol Biosynthesis
## Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unfolded Protein Response Upr CCL2,CXCL8
## Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin
## Urea Cycle
## Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions
## Vesicle Mediated Transport APOA1,CD163,CD55,CD59,CFTR,CTSC,EGF,EGFR,HP,MARCO,RAB14,SRC,VAMP3,WNT5A
## Viral Messenger Rna Synthesis
## Visual Phototransduction APOA1
## Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism
## Vitamins
## Vldl Assembly
## Vldl Clearance
## Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl
## Xenobiotics
## Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters
hyp_dots(hyp_mic4, merge = T, fdr = 0.1, title = "Reactome(bck=all)")
hyp_mic4$as.list()
## $cancer
## label
## Cytokine Signaling In Immune System Cytokine Signaling In Immune System
## Interleukin 10 Signaling Interleukin 10 Signaling
## Signaling By Interleukins Signaling By Interleukins
## Innate Immune System Innate Immune System
## Interleukin 4 And Interleukin 13 Signaling Interleukin 4 And Interleukin 13 Signaling
## Chemokine Receptors Bind Chemokines Chemokine Receptors Bind Chemokines
## Signaling By Gpcr Signaling By Gpcr
## Peptide Ligand Binding Receptors Peptide Ligand Binding Receptors
## Neutrophil Degranulation Neutrophil Degranulation
## Leishmania Infection Leishmania Infection
## Regulated Necrosis Regulated Necrosis
## Purinergic Signaling In Leishmaniasis Infection Purinergic Signaling In Leishmaniasis Infection
## Pyroptosis Pyroptosis
## Gpcr Ligand Binding Gpcr Ligand Binding
## Interleukin 1 Processing Interleukin 1 Processing
## Extra Nuclear Estrogen Signaling Extra Nuclear Estrogen Signaling
## Interleukin 1 Family Signaling Interleukin 1 Family Signaling
## G Alpha I Signalling Events G Alpha I Signalling Events
## Adaptive Immune System Adaptive Immune System
## Class A 1 Rhodopsin Like Receptors Class A 1 Rhodopsin Like Receptors
## Toll Like Receptor Cascades Toll Like Receptor Cascades
## Tnfr2 Non Canonical Nf Kb Pathway Tnfr2 Non Canonical Nf Kb Pathway
## Pi3k Akt Signaling In Cancer Pi3k Akt Signaling In Cancer
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway
## Gastrin Creb Signalling Pathway Via Pkc And Mapk Gastrin Creb Signalling Pathway Via Pkc And Mapk
## Negative Regulation Of The Pi3k Akt Network Negative Regulation Of The Pi3k Akt Network
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell
## Inflammasomes Inflammasomes
## Programmed Cell Death Programmed Cell Death
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling
## Costimulation By The Cd28 Family Costimulation By The Cd28 Family
## Constitutive Signaling By Aberrant Pi3k In Cancer Constitutive Signaling By Aberrant Pi3k In Cancer
## Tnfs Bind Their Physiological Receptors Tnfs Bind Their Physiological Receptors
## Infectious Disease Infectious Disease
## Activation Of Matrix Metalloproteinases Activation Of Matrix Metalloproteinases
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells
## Toll Like Receptor 9 Tlr9 Cascade Toll Like Receptor 9 Tlr9 Cascade
## Myd88 Independent Tlr4 Cascade Myd88 Independent Tlr4 Cascade
## Cd163 Mediating An Anti Inflammatory Response Cd163 Mediating An Anti Inflammatory Response
## Egfr Transactivation By Gastrin Egfr Transactivation By Gastrin
## Extracellular Matrix Organization Extracellular Matrix Organization
## Dap12 Interactions Dap12 Interactions
## Intracellular Signaling By Second Messengers Intracellular Signaling By Second Messengers
## Mapk3 Erk1 Activation Mapk3 Erk1 Activation
## Senescence Associated Secretory Phenotype Sasp Senescence Associated Secretory Phenotype Sasp
## Post Translational Protein Modification Post Translational Protein Modification
## Complement Cascade Complement Cascade
## Interleukin 6 Signaling Interleukin 6 Signaling
## Cd28 Dependent Vav1 Pathway Cd28 Dependent Vav1 Pathway
## Esr Mediated Signaling Esr Mediated Signaling
## Trafficking And Processing Of Endosomal Tlr Trafficking And Processing Of Endosomal Tlr
## Interleukin 12 Family Signaling Interleukin 12 Family Signaling
## Signaling By Receptor Tyrosine Kinases Signaling By Receptor Tyrosine Kinases
## Collagen Degradation Collagen Degradation
## The Nlrp3 Inflammasome The Nlrp3 Inflammasome
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers
## Interleukin 17 Signaling Interleukin 17 Signaling
## Ticam1 Rip1 Mediated Ikk Complex Recruitment Ticam1 Rip1 Mediated Ikk Complex Recruitment
## Ctla4 Inhibitory Signaling Ctla4 Inhibitory Signaling
## Interleukin 37 Signaling Interleukin 37 Signaling
## Signal Transduction By L1 Signal Transduction By L1
## Cd28 Dependent Pi3k Akt Signaling Cd28 Dependent Pi3k Akt Signaling
## Raf Independent Mapk1 3 Activation Raf Independent Mapk1 3 Activation
## Signaling By Nuclear Receptors Signaling By Nuclear Receptors
## Interleukin 6 Family Signaling Interleukin 6 Family Signaling
## Interferon Gamma Signaling Interferon Gamma Signaling
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress
## Cellular Senescence Cellular Senescence
## Pd 1 Signaling Pd 1 Signaling
## Toll Like Receptor Tlr1 Tlr2 Cascade Toll Like Receptor Tlr1 Tlr2 Cascade
## Diseases Of Immune System Diseases Of Immune System
## Mapk Targets Nuclear Events Mediated By Map Kinases Mapk Targets Nuclear Events Mediated By Map Kinases
## Cargo Recognition For Clathrin Mediated Endocytosis Cargo Recognition For Clathrin Mediated Endocytosis
## Antigen Processing Cross Presentation Antigen Processing Cross Presentation
## Perk Regulates Gene Expression Perk Regulates Gene Expression
## Cd28 Co Stimulation Cd28 Co Stimulation
## Nod1 2 Signaling Pathway Nod1 2 Signaling Pathway
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation
## Ngf Stimulated Transcription Ngf Stimulated Transcription
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps
## Signaling By Scf Kit Signaling By Scf Kit
## Interleukin 2 Family Signaling Interleukin 2 Family Signaling
## Signaling By Ntrks Signaling By Ntrks
## Interleukin 12 Signaling Interleukin 12 Signaling
## Degradation Of The Extracellular Matrix Degradation Of The Extracellular Matrix
## Death Receptor Signalling Death Receptor Signalling
## Clathrin Mediated Endocytosis Clathrin Mediated Endocytosis
## Eph Ephrin Mediated Repulsion Of Cells Eph Ephrin Mediated Repulsion Of Cells
## Signaling By Ptk6 Signaling By Ptk6
## Deubiquitination Deubiquitination
## G2 M Dna Replication Checkpoint G2 M Dna Replication Checkpoint
## Mecp2 Regulates Transcription Factors Mecp2 Regulates Transcription Factors
## Runx2 Regulates Chondrocyte Maturation Runx2 Regulates Chondrocyte Maturation
## Assembly Of Collagen Fibrils And Other Multimeric Structures Assembly Of Collagen Fibrils And Other Multimeric Structures
## Cytosolic Sensors Of Pathogen Associated Dna Cytosolic Sensors Of Pathogen Associated Dna
## Nuclear Events Kinase And Transcription Factor Activation Nuclear Events Kinase And Transcription Factor Activation
## Clec7a Inflammasome Pathway Clec7a Inflammasome Pathway
## Fibronectin Matrix Formation Fibronectin Matrix Formation
## Hemostasis Hemostasis
## Mapk Family Signaling Cascades Mapk Family Signaling Cascades
## Phosphorylation Of Emi1 Phosphorylation Of Emi1
## Ptk6 Promotes Hif1a Stabilization Ptk6 Promotes Hif1a Stabilization
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death Tlr3 Mediated Ticam1 Dependent Programmed Cell Death
## Circadian Clock Circadian Clock
## Rhob Gtpase Cycle Rhob Gtpase Cycle
## Activation Of Nima Kinases Nek9 Nek6 Nek7 Activation Of Nima Kinases Nek9 Nek6 Nek7
## Creb Phosphorylation Creb Phosphorylation
## Rhoc Gtpase Cycle Rhoc Gtpase Cycle
## Rhog Gtpase Cycle Rhog Gtpase Cycle
## Cell Surface Interactions At The Vascular Wall Cell Surface Interactions At The Vascular Wall
## Cellular Responses To External Stimuli Cellular Responses To External Stimuli
## Activation Of C3 And C5 Activation Of C3 And C5
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde
## Interferon Signaling Interferon Signaling
## Interleukin 18 Signaling Interleukin 18 Signaling
## Mecp2 Regulates Transcription Of Neuronal Ligands Mecp2 Regulates Transcription Of Neuronal Ligands
## Runx2 Regulates Genes Involved In Cell Migration Runx2 Regulates Genes Involved In Cell Migration
## Rna Polymerase Ii Transcription Rna Polymerase Ii Transcription
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members
## E2f Enabled Inhibition Of Pre Replication Complex Formation E2f Enabled Inhibition Of Pre Replication Complex Formation
## Egfr Interacts With Phospholipase C Gamma Egfr Interacts With Phospholipase C Gamma
## Interleukin 23 Signaling Interleukin 23 Signaling
## Interleukin 9 Signaling Interleukin 9 Signaling
## Mapk1 Erk2 Activation Mapk1 Erk2 Activation
## Fceri Mediated Mapk Activation Fceri Mediated Mapk Activation
## G Alpha Q Signalling Events G Alpha Q Signalling Events
## Activation Of The Ap 1 Family Of Transcription Factors Activation Of The Ap 1 Family Of Transcription Factors
## Akt Phosphorylates Targets In The Nucleus Akt Phosphorylates Targets In The Nucleus
## Camk Iv Mediated Phosphorylation Of Creb Camk Iv Mediated Phosphorylation Of Creb
## Interleukin 21 Signaling Interleukin 21 Signaling
## Mastl Facilitates Mitotic Progression Mastl Facilitates Mitotic Progression
## P75ntr Regulates Axonogenesis P75ntr Regulates Axonogenesis
## Rac2 Gtpase Cycle Rac2 Gtpase Cycle
## Anti Inflammatory Response Favouring Leishmania Parasite Infection Anti Inflammatory Response Favouring Leishmania Parasite Infection
## Collagen Formation Collagen Formation
## Transcriptional Regulation Of Granulopoiesis Transcriptional Regulation Of Granulopoiesis
## Eph Ephrin Signaling Eph Ephrin Signaling
## Unfolded Protein Response Upr Unfolded Protein Response Upr
## Condensation Of Prometaphase Chromosomes Condensation Of Prometaphase Chromosomes
## Endosomal Vacuolar Pathway Endosomal Vacuolar Pathway
## Interleukin 27 Signaling Interleukin 27 Signaling
## Signaling By Leptin Signaling By Leptin
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex Ticam1 Traf6 Dependent Induction Of Tak1 Complex
## Class B 2 Secretin Family Receptors Class B 2 Secretin Family Receptors
## Fcgr3a Mediated Il10 Synthesis Fcgr3a Mediated Il10 Synthesis
## Rac3 Gtpase Cycle Rac3 Gtpase Cycle
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase
## Interleukin 35 Signalling Interleukin 35 Signalling
## Killing Mechanisms Killing Mechanisms
## Notch2 Intracellular Domain Regulates Transcription Notch2 Intracellular Domain Regulates Transcription
## P75 Ntr Receptor Mediated Signalling P75 Ntr Receptor Mediated Signalling
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants
## Tandem Pore Domain Potassium Channels Tandem Pore Domain Potassium Channels
## Ticam1 Dependent Activation Of Irf3 Irf7 Ticam1 Dependent Activation Of Irf3 Irf7
## Tp53 Regulates Transcription Of Caspase Activators And Caspases Tp53 Regulates Transcription Of Caspase Activators And Caspases
## Vldlr Internalisation And Degradation Vldlr Internalisation And Degradation
## Advanced Glycosylation Endproduct Receptor Signaling Advanced Glycosylation Endproduct Receptor Signaling
## Apoptosis Induced Dna Fragmentation Apoptosis Induced Dna Fragmentation
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex
## Copi Mediated Anterograde Transport Copi Mediated Anterograde Transport
## Dissolution Of Fibrin Clot Dissolution Of Fibrin Clot
## Erbb2 Activates Ptk6 Signaling Erbb2 Activates Ptk6 Signaling
## Interleukin 1 Signaling Interleukin 1 Signaling
## Irf3 Mediated Induction Of Type I Ifn Irf3 Mediated Induction Of Type I Ifn
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2
## Golgi Cisternae Pericentriolar Stack Reorganization Golgi Cisternae Pericentriolar Stack Reorganization
## Interleukin 15 Signaling Interleukin 15 Signaling
## Shc1 Events In Egfr Signaling Shc1 Events In Egfr Signaling
## Constitutive Signaling By Egfrviii Constitutive Signaling By Egfrviii
## Depolymerisation Of The Nuclear Lamina Depolymerisation Of The Nuclear Lamina
## Erbb2 Regulates Cell Motility Erbb2 Regulates Cell Motility
## Membrane Trafficking Membrane Trafficking
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors
## Wnt5a Dependent Internalization Of Fzd4 Wnt5a Dependent Internalization Of Fzd4
## Yap1 And Wwtr1 Taz Stimulated Gene Expression Yap1 And Wwtr1 Taz Stimulated Gene Expression
## Platelet Activation Signaling And Aggregation Platelet Activation Signaling And Aggregation
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc
## Grb2 Events In Erbb2 Signaling Grb2 Events In Erbb2 Signaling
## Pi3k Events In Erbb2 Signaling Pi3k Events In Erbb2 Signaling
## Signaling By Erbb2 Ecd Mutants Signaling By Erbb2 Ecd Mutants
## Sting Mediated Induction Of Host Immune Responses Sting Mediated Induction Of Host Immune Responses
## Sumoylation Of Dna Methylation Proteins Sumoylation Of Dna Methylation Proteins
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps
## Gab1 Signalosome Gab1 Signalosome
## Rip Mediated Nfkb Activation Via Zbp1 Rip Mediated Nfkb Activation Via Zbp1
## Transcriptional Regulation By Runx2 Transcriptional Regulation By Runx2
## Irak4 Deficiency Tlr2 4 Irak4 Deficiency Tlr2 4
## L1cam Interactions L1cam Interactions
## Mecp2 Regulates Neuronal Receptors And Channels Mecp2 Regulates Neuronal Receptors And Channels
## Signaling By Cytosolic Fgfr1 Fusion Mutants Signaling By Cytosolic Fgfr1 Fusion Mutants
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants Constitutive Signaling By Ligand Responsive Egfr Cancer Variants
## Cytoprotection By Hmox1 Cytoprotection By Hmox1
## Initiation Of Nuclear Envelope Ne Reformation Initiation Of Nuclear Envelope Ne Reformation
## Ldl Clearance Ldl Clearance
## Phase 4 Resting Membrane Potential Phase 4 Resting Membrane Potential
## Phosphorylation Of The Apc C Phosphorylation Of The Apc C
## Pka Mediated Phosphorylation Of Creb Pka Mediated Phosphorylation Of Creb
## Signaling By Kit In Disease Signaling By Kit In Disease
## Signaling By Pdgfr In Disease Signaling By Pdgfr In Disease
## Regulation Of Tlr By Endogenous Ligand Regulation Of Tlr By Endogenous Ligand
## Zbp1 Dai Mediated Induction Of Type I Ifns Zbp1 Dai Mediated Induction Of Type I Ifns
## Response To Elevated Platelet Cytosolic Ca2 Response To Elevated Platelet Cytosolic Ca2
## Adora2b Mediated Anti Inflammatory Cytokines Production Adora2b Mediated Anti Inflammatory Cytokines Production
## E2f Mediated Regulation Of Dna Replication E2f Mediated Regulation Of Dna Replication
## Shc1 Events In Erbb2 Signaling Shc1 Events In Erbb2 Signaling
## Hcmv Early Events Hcmv Early Events
## Ikk Complex Recruitment Mediated By Rip1 Ikk Complex Recruitment Mediated By Rip1
## Termination Of O Glycan Biosynthesis Termination Of O Glycan Biosynthesis
## Asparagine N Linked Glycosylation Asparagine N Linked Glycosylation
## C Type Lectin Receptors Clrs C Type Lectin Receptors Clrs
## Apc C Cdc20 Mediated Degradation Of Cyclin B Apc C Cdc20 Mediated Degradation Of Cyclin B
## Growth Hormone Receptor Signaling Growth Hormone Receptor Signaling
## Runx2 Regulates Osteoblast Differentiation Runx2 Regulates Osteoblast Differentiation
## Traf6 Mediated Nf Kb Activation Traf6 Mediated Nf Kb Activation
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc
## Cyclin A B1 B2 Associated Events During G2 M Transition Cyclin A B1 B2 Associated Events During G2 M Transition
## Inactivation Of Csf3 G Csf Signaling Inactivation Of Csf3 G Csf Signaling
## Notch3 Activation And Transmission Of Signal To The Nucleus Notch3 Activation And Transmission Of Signal To The Nucleus
## Signaling By Egfr In Cancer Signaling By Egfr In Cancer
## Vesicle Mediated Transport Vesicle Mediated Transport
## Constitutive Signaling By Akt1 E17k In Cancer Constitutive Signaling By Akt1 E17k In Cancer
## Dectin 2 Family Dectin 2 Family
## Interleukin 20 Family Signaling Interleukin 20 Family Signaling
## Signaling By Erbb2 In Cancer Signaling By Erbb2 In Cancer
## Wnt Ligand Biogenesis And Trafficking Wnt Ligand Biogenesis And Trafficking
## Rhoa Gtpase Cycle Rhoa Gtpase Cycle
## Bmal1 Clock Npas2 Activates Circadian Gene Expression Bmal1 Clock Npas2 Activates Circadian Gene Expression
## G0 And Early G1 G0 And Early G1
## Interleukin Receptor Shc Signaling Interleukin Receptor Shc Signaling
## Vegfr2 Mediated Vascular Permeability Vegfr2 Mediated Vascular Permeability
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling
## Er To Golgi Anterograde Transport Er To Golgi Anterograde Transport
## Dap12 Signaling Dap12 Signaling
## Downregulation Of Erbb2 Signaling Downregulation Of Erbb2 Signaling
## Downstream Signal Transduction Downstream Signal Transduction
## G1 S Specific Transcription G1 S Specific Transcription
## Ripk1 Mediated Regulated Necrosis Ripk1 Mediated Regulated Necrosis
## Cdc42 Gtpase Cycle Cdc42 Gtpase Cycle
## Cellular Response To Chemical Stress Cellular Response To Chemical Stress
## Signaling By Csf3 G Csf Signaling By Csf3 G Csf
## Tnfr1 Induced Nfkappab Signaling Pathway Tnfr1 Induced Nfkappab Signaling Pathway
## Hcmv Infection Hcmv Infection
## Egfr Downregulation Egfr Downregulation
## Fgfr1 Mutant Receptor Activation Fgfr1 Mutant Receptor Activation
## Runx2 Regulates Bone Development Runx2 Regulates Bone Development
## Transcriptional Regulation Of Pluripotent Stem Cells Transcriptional Regulation Of Pluripotent Stem Cells
## Regulation Of Mecp2 Expression And Activity Regulation Of Mecp2 Expression And Activity
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex
## Cargo Concentration In The Er Cargo Concentration In The Er
## Plasma Lipoprotein Clearance Plasma Lipoprotein Clearance
## Sialic Acid Metabolism Sialic Acid Metabolism
## Signaling By Notch2 Signaling By Notch2
## Gpvi Mediated Activation Cascade Gpvi Mediated Activation Cascade
## Regulation Of Tnfr1 Signaling Regulation Of Tnfr1 Signaling
## Transcriptional Regulation By Tp53 Transcriptional Regulation By Tp53
## Apoptosis Apoptosis
## Association Of Tric Cct With Target Proteins During Biosynthesis Association Of Tric Cct With Target Proteins During Biosynthesis
## Ca Dependent Events Ca Dependent Events
## Class I Mhc Mediated Antigen Processing Presentation Class I Mhc Mediated Antigen Processing Presentation
## Fc Epsilon Receptor Fceri Signaling Fc Epsilon Receptor Fceri Signaling
## Generation Of Second Messenger Molecules Generation Of Second Messenger Molecules
## Interleukin 7 Signaling Interleukin 7 Signaling
## Metalloprotease Dubs Metalloprotease Dubs
## Nervous System Development Nervous System Development
## Nuclear Pore Complex Npc Disassembly Nuclear Pore Complex Npc Disassembly
## Ovarian Tumor Domain Proteases Ovarian Tumor Domain Proteases
## Rac1 Gtpase Cycle Rac1 Gtpase Cycle
## Regulation Of Tp53 Expression And Degradation Regulation Of Tp53 Expression And Degradation
## Rhoh Gtpase Cycle Rhoh Gtpase Cycle
## Signaling By Fgfr1 In Disease Signaling By Fgfr1 In Disease
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors
## Transport To The Golgi And Subsequent Modification Transport To The Golgi And Subsequent Modification
## Beta Defensins Beta Defensins
## Dag And Ip3 Signaling Dag And Ip3 Signaling
## Rhof Gtpase Cycle Rhof Gtpase Cycle
## Sumoylation Sumoylation
## Transcriptional Regulation By Ventx Transcriptional Regulation By Ventx
## Sumoylation Of Transcription Cofactors Sumoylation Of Transcription Cofactors
## Tnf Signaling Tnf Signaling
## Tp53 Regulates Transcription Of Cell Death Genes Tp53 Regulates Transcription Of Cell Death Genes
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer
## Heme Signaling Heme Signaling
## Interleukin 3 Interleukin 5 And Gm Csf Signaling Interleukin 3 Interleukin 5 And Gm Csf Signaling
## Irs Mediated Signalling Irs Mediated Signalling
## Retrograde Transport At The Trans Golgi Network Retrograde Transport At The Trans Golgi Network
## Signaling By Egfr Signaling By Egfr
## Signaling By Erbb2 Signaling By Erbb2
## Signaling By Notch3 Signaling By Notch3
## Tp53 Regulates Transcription Of Cell Cycle Genes Tp53 Regulates Transcription Of Cell Cycle Genes
## Apoptotic Execution Phase Apoptotic Execution Phase
## Defensins Defensins
## Nuclear Envelope Breakdown Nuclear Envelope Breakdown
## Rhod Gtpase Cycle Rhod Gtpase Cycle
## Ub Specific Processing Proteases Ub Specific Processing Proteases
## G Protein Mediated Events G Protein Mediated Events
## Insulin Receptor Signalling Cascade Insulin Receptor Signalling Cascade
## Intrinsic Pathway For Apoptosis Intrinsic Pathway For Apoptosis
## Rhoj Gtpase Cycle Rhoj Gtpase Cycle
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r
## Transcriptional Activation Of Mitochondrial Biogenesis Transcriptional Activation Of Mitochondrial Biogenesis
## Nrage Signals Death Through Jnk Nrage Signals Death Through Jnk
## Rhoq Gtpase Cycle Rhoq Gtpase Cycle
## Signaling By Erbb4 Signaling By Erbb4
## Signaling By Pdgf Signaling By Pdgf
## Transcriptional Regulation By Runx1 Transcriptional Regulation By Runx1
## Asymmetric Localization Of Pcp Proteins Asymmetric Localization Of Pcp Proteins
## Ca2 Pathway Ca2 Pathway
## Dna Methylation Dna Methylation
## Ncam Signaling For Neurite Out Growth Ncam Signaling For Neurite Out Growth
## O Linked Glycosylation Of Mucins O Linked Glycosylation Of Mucins
## Signaling By Fgfr In Disease Signaling By Fgfr In Disease
## Signaling By Notch Signaling By Notch
## Synthesis Of Substrates In N Glycan Biosythesis Synthesis Of Substrates In N Glycan Biosythesis
## Tp53 Regulates Transcription Of Dna Repair Genes Tp53 Regulates Transcription Of Dna Repair Genes
## Transcriptional Regulation By Mecp2 Transcriptional Regulation By Mecp2
## Copii Mediated Vesicle Transport Copii Mediated Vesicle Transport
## Diseases Associated With O Glycosylation Of Proteins Diseases Associated With O Glycosylation Of Proteins
## Aurka Activation By Tpx2 Aurka Activation By Tpx2
## Interferon Alpha Beta Signaling Interferon Alpha Beta Signaling
## Plasma Lipoprotein Assembly Remodeling And Clearance Plasma Lipoprotein Assembly Remodeling And Clearance
## Prc2 Methylates Histones And Dna Prc2 Methylates Histones And Dna
## Regulation Of Runx2 Expression And Activity Regulation Of Runx2 Expression And Activity
## Signaling By Tgf Beta Receptor Complex Signaling By Tgf Beta Receptor Complex
## Cell Death Signalling Via Nrage Nrif And Nade Cell Death Signalling Via Nrage Nrif And Nade
## Condensation Of Prophase Chromosomes Condensation Of Prophase Chromosomes
## Ecm Proteoglycans Ecm Proteoglycans
## Nuclear Envelope Ne Reassembly Nuclear Envelope Ne Reassembly
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta
## G Alpha 12 13 Signalling Events G Alpha 12 13 Signalling Events
## Initial Triggering Of Complement Initial Triggering Of Complement
## Potential Therapeutics For Sars Potential Therapeutics For Sars
## Recruitment Of Mitotic Centrosome Proteins And Complexes Recruitment Of Mitotic Centrosome Proteins And Complexes
## Rmts Methylate Histone Arginines Rmts Methylate Histone Arginines
## Signaling By Insulin Receptor Signaling By Insulin Receptor
## Signaling By Met Signaling By Met
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint The Role Of Gtse1 In G2 M Progression After G2 Checkpoint
## Integrin Cell Surface Interactions Integrin Cell Surface Interactions
## Organelle Biogenesis And Maintenance Organelle Biogenesis And Maintenance
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers
## Apc C Mediated Degradation Of Cell Cycle Proteins Apc C Mediated Degradation Of Cell Cycle Proteins
## Fceri Mediated Ca 2 Mobilization Fceri Mediated Ca 2 Mobilization
## Opioid Signalling Opioid Signalling
## Regulation Of Plk1 Activity At G2 M Transition Regulation Of Plk1 Activity At G2 M Transition
## Activation Of Nmda Receptors And Postsynaptic Events Activation Of Nmda Receptors And Postsynaptic Events
## Mapk6 Mapk4 Signaling Mapk6 Mapk4 Signaling
## Mitochondrial Biogenesis Mitochondrial Biogenesis
## Pcp Ce Pathway Pcp Ce Pathway
## Anchoring Of The Basal Body To The Plasma Membrane Anchoring Of The Basal Body To The Plasma Membrane
## Antimicrobial Peptides Antimicrobial Peptides
## G2 M Dna Damage Checkpoint G2 M Dna Damage Checkpoint
## Protein Folding Protein Folding
## Recruitment Of Numa To Mitotic Centrosomes Recruitment Of Numa To Mitotic Centrosomes
## Clec7a Dectin 1 Signaling Clec7a Dectin 1 Signaling
## Diseases Of Programmed Cell Death Diseases Of Programmed Cell Death
## Signaling By Tgfb Family Members Signaling By Tgfb Family Members
## Developmental Biology Developmental Biology
## Potassium Channels Potassium Channels
## Signaling By Vegf Signaling By Vegf
## Stimuli Sensing Channels Stimuli Sensing Channels
## Amyloid Fiber Formation Amyloid Fiber Formation
## O Linked Glycosylation O Linked Glycosylation
## Parasite Infection Parasite Infection
## Tcr Signaling Tcr Signaling
## Cardiac Conduction Cardiac Conduction
## Mhc Class Ii Antigen Presentation Mhc Class Ii Antigen Presentation
## Oxidative Stress Induced Senescence Oxidative Stress Induced Senescence
## Resolution Of Sister Chromatid Cohesion Resolution Of Sister Chromatid Cohesion
## Diseases Of Glycosylation Diseases Of Glycosylation
## Fcgamma Receptor Fcgr Dependent Phagocytosis Fcgamma Receptor Fcgr Dependent Phagocytosis
## Mitotic Prophase Mitotic Prophase
## Beta Catenin Independent Wnt Signaling Beta Catenin Independent Wnt Signaling
## Epigenetic Regulation Of Gene Expression Epigenetic Regulation Of Gene Expression
## Estrogen Dependent Gene Expression Estrogen Dependent Gene Expression
## Mitotic G1 Phase And G1 S Transition Mitotic G1 Phase And G1 S Transition
## Neuronal System Neuronal System
## Sars Cov Infections Sars Cov Infections
## Regulation Of Tp53 Activity Regulation Of Tp53 Activity
## Rho Gtpase Cycle Rho Gtpase Cycle
## Signaling By The B Cell Receptor Bcr Signaling By The B Cell Receptor Bcr
## G2 M Checkpoints G2 M Checkpoints
## Ion Channel Transport Ion Channel Transport
## Muscle Contraction Muscle Contraction
## Cilium Assembly Cilium Assembly
## Intra Golgi And Retrograde Golgi To Er Traffic Intra Golgi And Retrograde Golgi To Er Traffic
## Mitotic G2 G2 M Phases Mitotic G2 G2 M Phases
## Mitotic Prometaphase Mitotic Prometaphase
## Neurotransmitter Receptors And Postsynaptic Signal Transmission Neurotransmitter Receptors And Postsynaptic Signal Transmission
## Mitotic Metaphase And Anaphase Mitotic Metaphase And Anaphase
## Tcf Dependent Signaling In Response To Wnt Tcf Dependent Signaling In Response To Wnt
## Diseases Of Metabolism Diseases Of Metabolism
## Transmission Across Chemical Synapses Transmission Across Chemical Synapses
## Chromatin Modifying Enzymes Chromatin Modifying Enzymes
## Cell Cycle Checkpoints Cell Cycle Checkpoints
## Signaling By Wnt Signaling By Wnt
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 Signaling By Rho Gtpases Miro Gtpases And Rhobtb3
## Transport Of Small Molecules Transport Of Small Molecules
## M Phase M Phase
## Cell Cycle Mitotic Cell Cycle Mitotic
## Cell Cycle Cell Cycle
## 2 Ltr Circle Formation 2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism Abacavir Metabolism
## Abacavir Transmembrane Transport Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism Abacavir Transport And Metabolism
## Abc Family Proteins Mediated Transport Abc Family Proteins Mediated Transport
## Abc Transporter Disorders Abc Transporter Disorders
## Abc Transporters In Lipid Homeostasis Abc Transporters In Lipid Homeostasis
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5 Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3 Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Fyn Activated Ntrk2 Signals Through Fyn
## Activated Ntrk2 Signals Through Pi3k Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Pi3k Activated Ntrk3 Signals Through Pi3k
## Activated Ntrk3 Signals Through Ras Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activated Tak1 Mediates P38 Mapk Activation Activated Tak1 Mediates P38 Mapk Activation
## Activation Of Ampk Downstream Of Nmdars Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria Activation Of Bad And Translocation To Mitochondria
## Activation Of Bh3 Only Proteins Activation Of Bh3 Only Proteins
## Activation Of Caspases Through Apoptosome Mediated Cleavage Activation Of Caspases Through Apoptosome Mediated Cleavage
## Activation Of Gene Expression By Srebf Srebp Activation Of Gene Expression By Srebf Srebp
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon
## Activation Of Kainate Receptors Upon Glutamate Binding Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Noxa And Translocation To Mitochondria Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1 Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells Activation Of Ras In B Cells
## Activation Of Smo Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps Acyl Chain Remodelling Of Ps
## Adenylate Cyclase Activating Pathway Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions Adherens Junctions Interactions
## Adp Signalling Through P2y Purinoceptor 1 Adp Signalling Through P2y Purinoceptor 1
## Adp Signalling Through P2y Purinoceptor 12 Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors Adrenoceptors
## Aflatoxin Activation And Detoxification Aflatoxin Activation And Detoxification
## Aggrephagy Aggrephagy
## Akt Phosphorylates Targets In The Cytosol Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway Alpha Protein Kinase 1 Signaling Pathway
## Alternative Complement Activation Alternative Complement Activation
## Amine Ligand Binding Receptors Amine Ligand Binding Receptors
## Amino Acid Conjugation Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1 Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity Ampk Inhibits Chrebp Transcriptional Activation Activity
## Anchoring Fibril Formation Anchoring Fibril Formation
## Androgen Biosynthesis Androgen Biosynthesis
## Antigen Processing Ubiquitination Proteasome Degradation Antigen Processing Ubiquitination Proteasome Degradation
## Antiviral Mechanism By Ifn Stimulated Genes Antiviral Mechanism By Ifn Stimulated Genes
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc Cdc20 Mediated Degradation Of Nek2a Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection Apobec3g Mediated Resistance To Hiv 1 Infection
## Apoptotic Cleavage Of Cell Adhesion Proteins Apoptotic Cleavage Of Cell Adhesion Proteins
## Apoptotic Cleavage Of Cellular Proteins Apoptotic Cleavage Of Cellular Proteins
## Apoptotic Factor Mediated Response Apoptotic Factor Mediated Response
## Aquaporin Mediated Transport Aquaporin Mediated Transport
## Arachidonate Production From Dag Arachidonate Production From Dag
## Arachidonic Acid Metabolism Arachidonic Acid Metabolism
## Arms Mediated Activation Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling Aryl Hydrocarbon Receptor Signalling
## Aspartate And Asparagine Metabolism Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of The Hiv Virion Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex Assembly Of The Pre Replicative Complex
## Atf6 Atf6 Alpha Activates Chaperone Genes Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry Attachment And Entry
## Attachment Of Gpi Anchor To Upar Attachment Of Gpi Anchor To Upar
## Attenuation Phase Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## Autophagy Autophagy
## B Wich Complex Positively Regulates Rrna Expression B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair Base Excision Repair
## Base Excision Repair Ap Site Formation Base Excision Repair Ap Site Formation
## Basigin Interactions Basigin Interactions
## Bbsome Mediated Cargo Targeting To Cilium Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Phosphorylation Cascade Beta Catenin Phosphorylation Cascade
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids Beta Oxidation Of Very Long Chain Fatty Acids
## Bicarbonate Transporters Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism Bile Acid And Bile Salt Metabolism
## Binding And Uptake Of Ligands By Scavenger Receptors Binding And Uptake Of Ligands By Scavenger Receptors
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters
## Biological Oxidations Biological Oxidations
## Biosynthesis Of Epa Derived Spms Biosynthesis Of Epa Derived Spms
## Biosynthesis Of Maresin Like Spms Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins Biosynthesis Of Maresins
## Biosynthesis Of Specialized Proresolving Mediators Spms Biosynthesis Of Specialized Proresolving Mediators Spms
## Biotin Transport And Metabolism Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis Blood Group Systems Biosynthesis
## Branched Chain Amino Acid Catabolism Branched Chain Amino Acid Catabolism
## Budding And Maturation Of Hiv Virion Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions Butyrophilin Btn Family Interactions
## Ca2 Activated K Channels Ca2 Activated K Channels
## Calcineurin Activates Nfat Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin Carboxyterminal Post Translational Modifications Of Tubulin
## Cargo Trafficking To The Periciliary Membrane Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism Carnitine Metabolism
## Caspase Activation Via Death Receptors In The Presence Of Ligand Caspase Activation Via Death Receptors In The Presence Of Ligand
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand Caspase Activation Via Dependence Receptors In The Absence Of Ligand
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway Caspase Activation Via Extrinsic Apoptotic Signalling Pathway
## Caspase Mediated Cleavage Of Cytoskeletal Proteins Caspase Mediated Cleavage Of Cytoskeletal Proteins
## Cation Coupled Chloride Cotransporters Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation Cd22 Mediated Bcr Regulation
## Cdc6 Association With The Orc Origin Complex Cdc6 Association With The Orc Origin Complex
## Cell Cell Communication Cell Cell Communication
## Cell Cell Junction Organization Cell Cell Junction Organization
## Cell Extracellular Matrix Interactions Cell Extracellular Matrix Interactions
## Cell Junction Organization Cell Junction Organization
## Cellular Hexose Transport Cellular Hexose Transport
## Cellular Response To Heat Stress Cellular Response To Heat Stress
## Cellular Response To Hypoxia Cellular Response To Hypoxia
## Cellular Response To Starvation Cellular Response To Starvation
## Cgmp Effects Cgmp Effects
## Chaperone Mediated Autophagy Chaperone Mediated Autophagy
## Chl1 Interactions Chl1 Interactions
## Cholesterol Biosynthesis Cholesterol Biosynthesis
## Choline Catabolism Choline Catabolism
## Chondroitin Sulfate Biosynthesis Chondroitin Sulfate Biosynthesis
## Chondroitin Sulfate Dermatan Sulfate Metabolism Chondroitin Sulfate Dermatan Sulfate Metabolism
## Chrebp Activates Metabolic Gene Expression Chrebp Activates Metabolic Gene Expression
## Chromosome Maintenance Chromosome Maintenance
## Chylomicron Assembly Chylomicron Assembly
## Chylomicron Clearance Chylomicron Clearance
## Chylomicron Remodeling Chylomicron Remodeling
## Citric Acid Cycle Tca Cycle Citric Acid Cycle Tca Cycle
## Class C 3 Metabotropic Glutamate Pheromone Receptors Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Peroxisomal Membrane Protein Import Class I Peroxisomal Membrane Protein Import
## Clec7a Dectin 1 Induces Nfat Activation Clec7a Dectin 1 Induces Nfat Activation
## Cobalamin Cbl Vitamin B12 Transport And Metabolism Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization Collagen Chain Trimerization
## Common Pathway Of Fibrin Clot Formation Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complex I Biogenesis Complex I Biogenesis
## Conjugation Of Benzoate With Glycine Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Overexpressed Erbb2 Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic Copi Independent Golgi To Er Retrograde Traffic
## Creatine Metabolism Creatine Metabolism
## Creation Of C4 And C2 Activators Creation Of C4 And C2 Activators
## Creb3 Factors Activate Genes Creb3 Factors Activate Genes
## Cristae Formation Cristae Formation
## Crmps In Sema3a Signaling Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Crosslinking Of Collagen Fibrils Crosslinking Of Collagen Fibrils
## Cs Ds Degradation Cs Ds Degradation
## Cyclin A Cdk2 Associated Events At S Phase Entry Cyclin A Cdk2 Associated Events At S Phase Entry
## Cyclin D Associated Events In G1 Cyclin D Associated Events In G1
## Cyp2e1 Reactions Cyp2e1 Reactions
## Cytochrome C Mediated Apoptotic Response Cytochrome C Mediated Apoptotic Response
## Cytochrome P450 Arranged By Substrate Type Cytochrome P450 Arranged By Substrate Type
## Cytosolic Iron Sulfur Cluster Assembly Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation Cytosolic Trna Aminoacylation
## Darpp 32 Events Darpp 32 Events
## Dcc Mediated Attractive Signaling Dcc Mediated Attractive Signaling
## Deactivation Of The Beta Catenin Transactivating Complex Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna Deadenylation Of Mrna
## Dectin 1 Mediated Noncanonical Nf Kb Signaling Dectin 1 Mediated Noncanonical Nf Kb Signaling
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type Defective B4galt7 Causes Eds Progeroid Type
## Defective Cftr Causes Cystic Fibrosis Defective Cftr Causes Cystic Fibrosis
## Defective Chst14 Causes Eds Musculocontractural Type Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1 Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5 Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2 Defective Ext2 Causes Exostoses 2
## Defective F9 Activation Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B Defective Factor Ix Causes Hemophilia B
## Defective Factor Viii Causes Hemophilia A Defective Factor Viii Causes Hemophilia A
## Defective Lfng Causes Scdo3 Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15 Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism Defects In Vitamin And Cofactor Metabolism
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks
## Degradation Of Axin Degradation Of Axin
## Degradation Of Beta Catenin By The Destruction Complex Degradation Of Beta Catenin By The Destruction Complex
## Degradation Of Cysteine And Homocysteine Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome Degradation Of Gli1 By The Proteasome
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models
## Dermatan Sulfate Biosynthesis Dermatan Sulfate Biosynthesis
## Detoxification Of Reactive Oxygen Species Detoxification Of Reactive Oxygen Species
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production
## Digestion Digestion
## Digestion And Absorption Digestion And Absorption
## Digestion Of Dietary Carbohydrate Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid Digestion Of Dietary Lipid
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane
## Diseases Associated With Glycosaminoglycan Metabolism Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With Glycosylation Precursor Biosynthesis Diseases Associated With Glycosylation Precursor Biosynthesis
## Diseases Associated With N Glycosylation Of Proteins Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair Diseases Of Dna Repair
## Diseases Of Mismatch Repair Mmr Diseases Of Mismatch Repair Mmr
## Diseases Of Mitotic Cell Cycle Diseases Of Mitotic Cell Cycle
## Disinhibition Of Snare Formation Disinhibition Of Snare Formation
## Disorders Of Transmembrane Transporters Disorders Of Transmembrane Transporters
## Displacement Of Dna Glycosylase By Apex1 Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass Dna Damage Bypass
## Dna Damage Recognition In Gg Ner Dna Damage Recognition In Gg Ner
## Dna Damage Reversal Dna Damage Reversal
## Dna Damage Telomere Stress Induced Senescence Dna Damage Telomere Stress Induced Senescence
## Dna Double Strand Break Repair Dna Double Strand Break Repair
## Dna Double Strand Break Response Dna Double Strand Break Response
## Dna Repair Dna Repair
## Dna Replication Dna Replication
## Dna Replication Initiation Dna Replication Initiation
## Dna Replication Pre Initiation Dna Replication Pre Initiation
## Dna Strand Elongation Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Erbb4 Signaling Downregulation Of Erbb4 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signaling Events Of B Cell Receptor Bcr Downstream Signaling Events Of B Cell Receptor Bcr
## Downstream Signaling Of Activated Fgfr1 Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2 Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3 Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4 Downstream Signaling Of Activated Fgfr4
## Dscam Interactions Dscam Interactions
## Dual Incision In Gg Ner Dual Incision In Gg Ner
## Dual Incision In Tc Ner Dual Incision In Tc Ner
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Early Phase Of Hiv Life Cycle Early Phase Of Hiv Life Cycle
## Effects Of Pip2 Hydrolysis Effects Of Pip2 Hydrolysis
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors Eicosanoid Ligand Binding Receptors
## Eicosanoids Eicosanoids
## Elastic Fibre Formation Elastic Fibre Formation
## Electric Transmission Across Gap Junctions Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt Endosomal Sorting Complex Required For Transport Escrt
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Enos Activation Enos Activation
## Epha Mediated Growth Cone Collapse Epha Mediated Growth Cone Collapse
## Ephb Mediated Forward Signaling Ephb Mediated Forward Signaling
## Ephrin Signaling Ephrin Signaling
## Er Quality Control Compartment Erqc Er Quality Control Compartment Erqc
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets Erk Mapk Targets
## Erks Are Inactivated Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras Erythropoietin Activates Ras
## Erythropoietin Activates Stat5 Erythropoietin Activates Stat5
## Establishment Of Sister Chromatid Cohesion Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis Estrogen Biosynthesis
## Estrogen Stimulated Signaling Through Prkcz Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation Ethanol Oxidation
## Eukaryotic Translation Elongation Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus Export Of Viral Ribonucleoproteins From Nucleus
## Extension Of Telomeres Extension Of Telomeres
## Extrinsic Pathway Of Fibrin Clot Formation Extrinsic Pathway Of Fibrin Clot Formation
## Factors Involved In Megakaryocyte Development And Platelet Production Factors Involved In Megakaryocyte Development And Platelet Production
## Fanconi Anemia Pathway Fanconi Anemia Pathway
## Fasl Cd95l Signaling Fasl Cd95l Signaling
## Fatty Acid Metabolism Fatty Acid Metabolism
## Fatty Acids Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer Fbxw7 Mutants And Notch1 In Cancer
## Fceri Mediated Nf Kb Activation Fceri Mediated Nf Kb Activation
## Fcgr Activation Fcgr Activation
## Fertilization Fertilization
## Fgfr1 Ligand Binding And Activation Fgfr1 Ligand Binding And Activation
## Fgfr1b Ligand Binding And Activation Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling Flt3 Signaling
## Flt3 Signaling By Cbl Mutants Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric Folding Of Actin By Cct Tric
## Formation Of Apoptosome Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling Formation Of Atp By Chemiosmotic Coupling
## Formation Of Fibrin Clot Clotting Cascade Formation Of Fibrin Clot Clotting Cascade
## Formation Of Incision Complex In Gg Ner Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex Formation Of Tc Ner Pre Incision Complex
## Formation Of The Beta Catenin Tcf Transactivating Complex Formation Of The Beta Catenin Tcf Transactivating Complex
## Formation Of The Cornified Envelope Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription Foxo Mediated Transcription
## Foxo Mediated Transcription Of Cell Cycle Genes Foxo Mediated Transcription Of Cell Cycle Genes
## Foxo Mediated Transcription Of Cell Death Genes Foxo Mediated Transcription Of Cell Death Genes
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling Frs Mediated Fgfr4 Signaling
## Fructose Catabolism Fructose Catabolism
## Fructose Metabolism Fructose Metabolism
## G Alpha S Signalling Events G Alpha S Signalling Events
## G Alpha Z Signalling Events G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Cdc42 G Beta Gamma Signalling Through Cdc42
## G Beta Gamma Signalling Through Pi3kgamma G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation G Protein Activation
## G Protein Beta Gamma Signalling G Protein Beta Gamma Signalling
## G1 S Dna Damage Checkpoints G1 S Dna Damage Checkpoints
## G2 Phase G2 Phase
## Gaba B Receptor Activation Gaba B Receptor Activation
## Gaba Receptor Activation Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation Gaba Synthesis Release Reuptake And Degradation
## Galactose Catabolism Galactose Catabolism
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly Gap Junction Assembly
## Gap Junction Degradation Gap Junction Degradation
## Gap Junction Trafficking And Regulation Gap Junction Trafficking And Regulation
## Gdp Fucose Biosynthesis Gdp Fucose Biosynthesis
## Gene Silencing By Rna Gene Silencing By Rna
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis Glucocorticoid Biosynthesis
## Gluconeogenesis Gluconeogenesis
## Glucose Metabolism Glucose Metabolism
## Glucuronidation Glucuronidation
## Glutamate And Glutamine Metabolism Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation Glutathione Conjugation
## Glutathione Synthesis And Recycling Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism Glycogen Metabolism
## Glycogen Storage Diseases Glycogen Storage Diseases
## Glycogen Synthesis Glycogen Synthesis
## Glycolysis Glycolysis
## Glycosaminoglycan Metabolism Glycosaminoglycan Metabolism
## Glycosphingolipid Metabolism Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis Golgi Associated Vesicle Biogenesis
## Golgi To Er Retrograde Transport Golgi To Er Retrograde Transport
## Gp1b Ix V Activation Signalling Gp1b Ix V Activation Signalling
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins Grb2 Sos Provides Linkage To Mapk Signaling For Integrins
## Grb7 Events In Erbb2 Signaling Grb7 Events In Erbb2 Signaling
## Hats Acetylate Histones Hats Acetylate Histones
## Hcmv Late Events Hcmv Late Events
## Hdacs Deacetylate Histones Hdacs Deacetylate Histones
## Hdl Assembly Hdl Assembly
## Hdl Clearance Hdl Clearance
## Hdl Remodeling Hdl Remodeling
## Hdms Demethylate Histones Hdms Demethylate Histones
## Hdr Through Homologous Recombination Hrr Hdr Through Homologous Recombination Hrr
## Hdr Through Mmej Alt Nhej Hdr Through Mmej Alt Nhej
## Hdr Through Single Strand Annealing Ssa Hdr Through Single Strand Annealing Ssa
## Hedgehog Ligand Biogenesis Hedgehog Ligand Biogenesis
## Hedgehog Off State Hedgehog Off State
## Hedgehog On State Hedgehog On State
## Heme Biosynthesis Heme Biosynthesis
## Heme Degradation Heme Degradation
## Heparan Sulfate Heparin Hs Gag Metabolism Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism Histidine Catabolism
## Hiv Elongation Arrest And Recovery Hiv Elongation Arrest And Recovery
## Hiv Infection Hiv Infection
## Hiv Life Cycle Hiv Life Cycle
## Hiv Transcription Elongation Hiv Transcription Elongation
## Hiv Transcription Initiation Hiv Transcription Initiation
## Homologous Dna Pairing And Strand Exchange Homologous Dna Pairing And Strand Exchange
## Homology Directed Repair Homology Directed Repair
## Hormone Ligand Binding Receptors Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis Hs Gag Biosynthesis
## Hs Gag Degradation Hs Gag Degradation
## Hsf1 Activation Hsf1 Activation
## Hsf1 Dependent Transactivation Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc Hydrolysis Of Lpc
## Ikba Variant Leads To Eda Id Ikba Variant Leads To Eda Id
## Il 6 Type Cytokine Receptor Ligand Interactions Il 6 Type Cytokine Receptor Ligand Interactions
## Inactivation Of Cdc42 And Rac1 Inactivation Of Cdc42 And Rac1
## Incretin Synthesis Secretion And Inactivation Incretin Synthesis Secretion And Inactivation
## Infection With Mycobacterium Tuberculosis Infection With Mycobacterium Tuberculosis
## Influenza Infection Influenza Infection
## Inhibition Of Dna Recombination At Telomere Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Inositol Phosphate Metabolism Inositol Phosphate Metabolism
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane
## Insulin Processing Insulin Processing
## Insulin Receptor Recycling Insulin Receptor Recycling
## Integration Of Energy Metabolism Integration Of Energy Metabolism
## Integration Of Provirus Integration Of Provirus
## Integrin Signaling Integrin Signaling
## Interaction Between L1 And Ankyrins Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates Interconversion Of Nucleotide Di And Triphosphates
## Interleukin 2 Signaling Interleukin 2 Signaling
## Interleukin 36 Pathway Interleukin 36 Pathway
## Intestinal Absorption Intestinal Absorption
## Intra Golgi Traffic Intra Golgi Traffic
## Intraflagellar Transport Intraflagellar Transport
## Intrinsic Pathway Of Fibrin Clot Formation Intrinsic Pathway Of Fibrin Clot Formation
## Inwardly Rectifying K Channels Inwardly Rectifying K Channels
## Ion Homeostasis Ion Homeostasis
## Ion Transport By P Type Atpases Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors Ionotropic Activity Of Kainate Receptors
## Irak1 Recruits Ikk Complex Irak1 Recruits Ikk Complex
## Irak2 Mediated Activation Of Tak1 Complex Irak2 Mediated Activation Of Tak1 Complex
## Ire1alpha Activates Chaperones Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn Irf3 Mediated Activation Of Type 1 Ifn
## Iron Uptake And Transport Iron Uptake And Transport
## Irs Activation Irs Activation
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1
## Josephin Domain Dubs Josephin Domain Dubs
## Keratan Sulfate Biosynthesis Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism Keratan Sulfate Keratin Metabolism
## Keratinization Keratinization
## Ketone Body Metabolism Ketone Body Metabolism
## Kinesins Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna Ksrp Khsrp Binds And Destabilizes Mrna
## Lagging Strand Synthesis Lagging Strand Synthesis
## Laminin Interactions Laminin Interactions
## Late Endosomal Microautophagy Late Endosomal Microautophagy
## Lectin Pathway Of Complement Activation Lectin Pathway Of Complement Activation
## Leukotriene Receptors Leukotriene Receptors
## Lgi Adam Interactions Lgi Adam Interactions
## Ligand Receptor Interactions Ligand Receptor Interactions
## Linoleic Acid La Metabolism Linoleic Acid La Metabolism
## Lipid Particle Organization Lipid Particle Organization
## Lipophagy Lipophagy
## Listeria Monocytogenes Entry Into Host Cells Listeria Monocytogenes Entry Into Host Cells
## Long Term Potentiation Long Term Potentiation
## Loss Of Function Of Mecp2 In Rett Syndrome Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism Lysine Catabolism
## Lysosome Vesicle Biogenesis Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors Lysosphingolipid And Lpa Receptors
## Map2k And Mapk Activation Map2k And Mapk Activation
## Map3k8 Tpl2 Dependent Mapk1 3 Activation Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Maturation Of Nucleoprotein Maturation Of Nucleoprotein
## Maturation Of Protein 3a Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein Maturation Of Sars Cov 2 Spike Protein
## Meiosis Meiosis
## Meiotic Recombination Meiotic Recombination
## Meiotic Synapsis Meiotic Synapsis
## Melanin Biosynthesis Melanin Biosynthesis
## Met Activates Pi3k Akt Signaling Met Activates Pi3k Akt Signaling
## Met Activates Ptk2 Signaling Met Activates Ptk2 Signaling
## Met Activates Ptpn11 Met Activates Ptpn11
## Met Activates Rap1 And Rac1 Met Activates Rap1 And Rac1
## Met Activates Ras Signaling Met Activates Ras Signaling
## Met Interacts With Tns Proteins Met Interacts With Tns Proteins
## Met Promotes Cell Motility Met Promotes Cell Motility
## Met Receptor Activation Met Receptor Activation
## Met Receptor Recycling Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones Metabolism Of Amine Derived Hormones
## Metabolism Of Amino Acids And Derivatives Metabolism Of Amino Acids And Derivatives
## Metabolism Of Angiotensinogen To Angiotensins Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Carbohydrates Metabolism Of Carbohydrates
## Metabolism Of Cofactors Metabolism Of Cofactors
## Metabolism Of Fat Soluble Vitamins Metabolism Of Fat Soluble Vitamins
## Metabolism Of Folate And Pterines Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Lipids Metabolism Of Lipids
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation Metabolism Of Nitric Oxide Nos3 Activation And Regulation
## Metabolism Of Nucleotides Metabolism Of Nucleotides
## Metabolism Of Polyamines Metabolism Of Polyamines
## Metabolism Of Porphyrins Metabolism Of Porphyrins
## Metabolism Of Rna Metabolism Of Rna
## Metabolism Of Steroid Hormones Metabolism Of Steroid Hormones
## Metabolism Of Steroids Metabolism Of Steroids
## Metabolism Of Vitamins And Cofactors Metabolism Of Vitamins And Cofactors
## Metabolism Of Water Soluble Vitamins And Cofactors Metabolism Of Water Soluble Vitamins And Cofactors
## Metal Ion Slc Transporters Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins Metal Sequestration By Antimicrobial Proteins
## Metallothioneins Bind Metals Metallothioneins Bind Metals
## Methionine Salvage Pathway Methionine Salvage Pathway
## Methylation Methylation
## Microrna Mirna Biogenesis Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle Miro Gtpase Cycle
## Miscellaneous Substrates Miscellaneous Substrates
## Miscellaneous Transport And Binding Events Miscellaneous Transport And Binding Events
## Mismatch Repair Mismatch Repair
## Mitochondrial Calcium Ion Transport Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import Mitochondrial Protein Import
## Mitochondrial Translation Mitochondrial Translation
## Mitochondrial Trna Aminoacylation Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling Mitochondrial Uncoupling
## Mitophagy Mitophagy
## Mitotic Spindle Checkpoint Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis Mitotic Telophase Cytokinesis
## Modulation By Mtb Of Host Immune System Modulation By Mtb Of Host Immune System
## Molecules Associated With Elastic Fibres Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis Molybdenum Cofactor Biosynthesis
## Mrna Capping Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing Mrna Editing
## Mrna Editing C To U Conversion Mrna Editing C To U Conversion
## Mrna Splicing Mrna Splicing
## Mrna Splicing Minor Pathway Mrna Splicing Minor Pathway
## Mtor Signalling Mtor Signalling
## Mtorc1 Mediated Signalling Mtorc1 Mediated Signalling
## Mucopolysaccharidoses Mucopolysaccharidoses
## Multifunctional Anion Exchangers Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors Muscarinic Acetylcholine Receptors
## Myoclonic Epilepsy Of Lafora Myoclonic Epilepsy Of Lafora
## Myogenesis Myogenesis
## N Glycan Antennae Elongation N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters Na Cl Dependent Neurotransmitter Transporters
## Nade Modulates Death Signalling Nade Modulates Death Signalling
## Ncam1 Interactions Ncam1 Interactions
## Nectin Necl Trans Heterodimerization Nectin Necl Trans Heterodimerization
## Neddylation Neddylation
## Nef And Signal Transduction Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Epigenetic Regulation Of Rrna Expression Negative Epigenetic Regulation Of Rrna Expression
## Negative Feedback Regulation Of Mapk Pathway Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Fgfr1 Signaling Negative Regulation Of Fgfr1 Signaling
## Negative Regulation Of Fgfr2 Signaling Negative Regulation Of Fgfr2 Signaling
## Negative Regulation Of Fgfr3 Signaling Negative Regulation Of Fgfr3 Signaling
## Negative Regulation Of Fgfr4 Signaling Negative Regulation Of Fgfr4 Signaling
## Negative Regulation Of Flt3 Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Negative Regulators Of Ddx58 Ifih1 Signaling Negative Regulators Of Ddx58 Ifih1 Signaling
## Nephrin Family Interactions Nephrin Family Interactions
## Netrin 1 Signaling Netrin 1 Signaling
## Netrin Mediated Repulsion Signals Netrin Mediated Repulsion Signals
## Neurexins And Neuroligins Neurexins And Neuroligins
## Neurofascin Interactions Neurofascin Interactions
## Neurotoxicity Of Clostridium Toxins Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance Neurotransmitter Clearance
## Neurotransmitter Release Cycle Neurotransmitter Release Cycle
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10
## Nf Kb Is Activated And Signals Survival Nf Kb Is Activated And Signals Survival
## Ngf Independant Trka Activation Ngf Independant Trka Activation
## Nicotinamide Salvaging Nicotinamide Salvaging
## Nicotinate Metabolism Nicotinate Metabolism
## Nitric Oxide Stimulates Guanylate Cyclase Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3 Noncanonical Activation Of Notch3
## Nonhomologous End Joining Nhej Nonhomologous End Joining Nhej
## Nonsense Mediated Decay Nmd Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle Norepinephrine Neurotransmitter Release Cycle
## Nostrin Mediated Enos Trafficking Nostrin Mediated Enos Trafficking
## Notch Hlh Transcription Pathway Notch Hlh Transcription Pathway
## Notch1 Intracellular Domain Regulates Transcription Notch1 Intracellular Domain Regulates Transcription
## Notch2 Activation And Transmission Of Signal To The Nucleus Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch3 Intracellular Domain Regulates Transcription Notch3 Intracellular Domain Regulates Transcription
## Notch4 Activation And Transmission Of Signal To The Nucleus Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrcam Interactions Nrcam Interactions
## Nrif Signals Cell Death From The Nucleus Nrif Signals Cell Death From The Nucleus
## Ns1 Mediated Effects On Host Pathways Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1 Ntrk2 Activates Rac1
## Nuclear Import Of Rev Protein Nuclear Import Of Rev Protein
## Nuclear Receptor Transcription Pathway Nuclear Receptor Transcription Pathway
## Nuclear Signaling By Erbb4 Nuclear Signaling By Erbb4
## Nucleobase Biosynthesis Nucleobase Biosynthesis
## Nucleobase Catabolism Nucleobase Catabolism
## Nucleotide Excision Repair Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors Nucleotide Like Purinergic Receptors
## Nucleotide Salvage Nucleotide Salvage
## O Glycosylation Of Tsr Domain Containing Proteins O Glycosylation Of Tsr Domain Containing Proteins
## Oas Antiviral Response Oas Antiviral Response
## Olfactory Signaling Pathway Olfactory Signaling Pathway
## Oncogene Induced Senescence Oncogene Induced Senescence
## Oncogenic Mapk Signaling Oncogenic Mapk Signaling
## Opsins Opsins
## Orc1 Removal From Chromatin Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organic Anion Transport Organic Anion Transport
## Organic Anion Transporters Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport Organic Cation Anion Zwitterion Transport
## Organic Cation Transport Organic Cation Transport
## Other Interleukin Signaling Other Interleukin Signaling
## Other Semaphorin Interactions Other Semaphorin Interactions
## P130cas Linkage To Mapk Signaling For Integrins P130cas Linkage To Mapk Signaling For Integrins
## P2y Receptors P2y Receptors
## P38mapk Events P38mapk Events
## P75ntr Negatively Regulates Cell Cycle Via Sc1 P75ntr Negatively Regulates Cell Cycle Via Sc1
## P75ntr Recruits Signalling Complexes P75ntr Recruits Signalling Complexes
## P75ntr Signals Via Nf Kb P75ntr Signals Via Nf Kb
## Passive Transport By Aquaporins Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair Pcna Dependent Long Patch Base Excision Repair
## Pecam1 Interactions Pecam1 Interactions
## Pentose Phosphate Pathway Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis Peptide Hormone Biosynthesis
## Peptide Hormone Metabolism Peptide Hormone Metabolism
## Peroxisomal Lipid Metabolism Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import Peroxisomal Protein Import
## Pexophagy Pexophagy
## Phase 0 Rapid Depolarisation Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation Phase 3 Rapid Repolarisation
## Phase I Functionalization Of Compounds Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2 Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4 Phospholipase C Mediated Cascade Fgfr4
## Phospholipid Metabolism Phospholipid Metabolism
## Physiological Factors Physiological Factors
## Pi 3k Cascade Fgfr1 Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2 Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3 Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4 Pi 3k Cascade Fgfr4
## Pi Metabolism Pi Metabolism
## Pi3k Akt Activation Pi3k Akt Activation
## Pi3k Events In Erbb4 Signaling Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation Pi5p Regulates Tp53 Acetylation
## Pink1 Prkn Mediated Mitophagy Pink1 Prkn Mediated Mitophagy
## Piwi Interacting Rna Pirna Biogenesis Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines Pkmts Methylate Histone Lysines
## Plasma Lipoprotein Assembly Plasma Lipoprotein Assembly
## Plasma Lipoprotein Remodeling Plasma Lipoprotein Remodeling
## Platelet Adhesion To Exposed Collagen Platelet Adhesion To Exposed Collagen
## Platelet Aggregation Plug Formation Platelet Aggregation Plug Formation
## Platelet Calcium Homeostasis Platelet Calcium Homeostasis
## Platelet Homeostasis Platelet Homeostasis
## Platelet Sensitization By Ldl Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events Polo Like Kinase Mediated Events
## Polymerase Switching Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway Post Chaperonin Tubulin Folding Pathway
## Post Translational Modification Synthesis Of Gpi Anchored Proteins Post Translational Modification Synthesis Of Gpi Anchored Proteins
## Postmitotic Nuclear Pore Complex Npc Reformation Postmitotic Nuclear Pore Complex Npc Reformation
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Pre Notch Expression And Processing Pre Notch Expression And Processing
## Pre Notch Processing In Golgi Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna Processing Of Capped Intronless Pre Mrna
## Processing Of Dna Double Strand Break Ends Processing Of Dna Double Strand Break Ends
## Processing Of Intronless Pre Mrnas Processing Of Intronless Pre Mrnas
## Processing Of Smdt1 Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand Processive Synthesis On The Lagging Strand
## Prolactin Receptor Signaling Prolactin Receptor Signaling
## Prolonged Erk Activation Events Prolonged Erk Activation Events
## Propionyl Coa Catabolism Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors Prostanoid Ligand Receptors
## Protein Localization Protein Localization
## Protein Methylation Protein Methylation
## Protein Protein Interactions At Synapses Protein Protein Interactions At Synapses
## Protein Repair Protein Repair
## Protein Ubiquitination Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport Proton Coupled Monocarboxylate Transport
## Pten Regulation Pten Regulation
## Ptk6 Expression Ptk6 Expression
## Ptk6 Regulates Cell Cycle Ptk6 Regulates Cell Cycle
## Ptk6 Regulates Proteins Involved In Rna Processing Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis Purine Ribonucleoside Monophosphate Biosynthesis
## Purine Salvage Purine Salvage
## Pyrimidine Catabolism Pyrimidine Catabolism
## Pyrimidine Salvage Pyrimidine Salvage
## Pyruvate Metabolism Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway Ra Biosynthesis Pathway
## Rab Gefs Exchange Gtp For Gdp On Rabs Rab Gefs Exchange Gtp For Gdp On Rabs
## Rab Geranylgeranylation Rab Geranylgeranylation
## Rab Regulation Of Trafficking Rab Regulation Of Trafficking
## Raf Activation Raf Activation
## Rap1 Signalling Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Mediated Mitophagy Receptor Mediated Mitophagy
## Receptor Type Tyrosine Protein Phosphatases Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recycling Of Bile Acids And Salts Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp Recycling Of Eif2 Gdp
## Recycling Pathway Of L1 Recycling Pathway Of L1
## Reduction Of Cytosolic Ca Levels Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr Regulated Proteolysis Of P75ntr
## Regulation By C Flip Regulation By C Flip
## Regulation Of Bach1 Activity Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Commissural Axon Pathfinding By Slit And Robo Regulation Of Commissural Axon Pathfinding By Slit And Robo
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos Regulation Of Expression Of Slits And Robos
## Regulation Of Foxo Transcriptional Activity By Acetylation Regulation Of Foxo Transcriptional Activity By Acetylation
## Regulation Of Fzd By Ubiquitination Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Hmox1 Expression And Activity Regulation Of Hmox1 Expression And Activity
## Regulation Of Hsf1 Mediated Heat Shock Response Regulation Of Hsf1 Mediated Heat Shock Response
## Regulation Of Ifna Signaling Regulation Of Ifna Signaling
## Regulation Of Ifng Signaling Regulation Of Ifng Signaling
## Regulation Of Innate Immune Responses To Cytosolic Dna Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Secretion Regulation Of Insulin Secretion
## Regulation Of Kit Signaling Regulation Of Kit Signaling
## Regulation Of Lipid Metabolism By Pparalpha Regulation Of Lipid Metabolism By Pparalpha
## Regulation Of Localization Of Foxo Transcription Factors Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Pten Gene Transcription Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps Regulation Of Ras By Gaps
## Regulation Of Runx1 Expression And Activity Regulation Of Runx1 Expression And Activity
## Regulation Of Runx3 Expression And Activity Regulation Of Runx3 Expression And Activity
## Regulation Of Signaling By Cbl Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal Regulation Of Signaling By Nodal
## Regulation Of Tp53 Activity Through Acetylation Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors Regulation Of Tp53 Activity Through Association With Co Factors
## Regulation Of Tp53 Activity Through Methylation Regulation Of Tp53 Activity Through Methylation
## Regulation Of Tp53 Activity Through Phosphorylation Regulation Of Tp53 Activity Through Phosphorylation
## Relaxin Receptors Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Repression Of Wnt Target Genes Repression Of Wnt Target Genes
## Reproduction Reproduction
## Resolution Of Abasic Sites Ap Sites Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Resolution Of D Loop Structures Resolution Of D Loop Structures
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa
## Respiratory Electron Transport Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis Response Of Mtb To Phagocytosis
## Response To Metal Ions Response To Metal Ions
## Ret Signaling Ret Signaling
## Retinoid Cycle Disease Events Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling Retrograde Neurotrophin Signalling
## Reversible Hydration Of Carbon Dioxide Reversible Hydration Of Carbon Dioxide
## Rho Gtpase Effectors Rho Gtpase Effectors
## Rho Gtpases Activate Cit Rho Gtpases Activate Cit
## Rho Gtpases Activate Formins Rho Gtpases Activate Formins
## Rho Gtpases Activate Iqgaps Rho Gtpases Activate Iqgaps
## Rho Gtpases Activate Ktn1 Rho Gtpases Activate Ktn1
## Rho Gtpases Activate Nadph Oxidases Rho Gtpases Activate Nadph Oxidases
## Rho Gtpases Activate Paks Rho Gtpases Activate Paks
## Rho Gtpases Activate Pkns Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks Rho Gtpases Activate Rocks
## Rho Gtpases Activate Wasps And Waves Rho Gtpases Activate Wasps And Waves
## Rhobtb Gtpase Cycle Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle Rhobtb3 Atpase Cycle
## Rhot1 Gtpase Cycle Rhot1 Gtpase Cycle
## Rhou Gtpase Cycle Rhou Gtpase Cycle
## Rhov Gtpase Cycle Rhov Gtpase Cycle
## Rna Polymerase I Promoter Escape Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination Rna Polymerase Iii Transcription Termination
## Rnd1 Gtpase Cycle Rnd1 Gtpase Cycle
## Rnd2 Gtpase Cycle Rnd2 Gtpase Cycle
## Rnd3 Gtpase Cycle Rnd3 Gtpase Cycle
## Robo Receptors Bind Akap5 Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression Rora Activates Gene Expression
## Ros And Rns Production In Phagocytes Ros And Rns Production In Phagocytes
## Rrna Modification In The Mitochondrion Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol Rrna Modification In The Nucleus And Cytosol
## Rrna Processing Rrna Processing
## Rrna Processing In The Mitochondrion Rrna Processing In The Mitochondrion
## Rsk Activation Rsk Activation
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Expression Of Components Of Tight Junctions Runx1 Regulates Expression Of Components Of Tight Junctions
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx3 Regulates Bcl2l11 Bim Transcription Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf Runx3 Regulates P14 Arf
## Runx3 Regulates Wnt Signaling Runx3 Regulates Wnt Signaling
## Runx3 Regulates Yap1 Mediated Transcription Runx3 Regulates Yap1 Mediated Transcription
## S Phase S Phase
## Sars Cov 1 Genome Replication And Transcription Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection Sars Cov 1 Infection
## Sars Cov 2 Infection Sars Cov 2 Infection
## Scavenging By Class A Receptors Scavenging By Class A Receptors
## Scavenging By Class B Receptors Scavenging By Class B Receptors
## Scavenging By Class F Receptors Scavenging By Class F Receptors
## Scavenging Of Heme From Plasma Scavenging Of Heme From Plasma
## Scf Skp2 Mediated Degradation Of P27 P21 Scf Skp2 Mediated Degradation Of P27 P21
## Sealing Of The Nuclear Envelope Ne By Escrt Iii Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selective Autophagy Selective Autophagy
## Selenoamino Acid Metabolism Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Semaphorin Interactions Semaphorin Interactions
## Sensing Of Dna Double Strand Breaks Sensing Of Dna Double Strand Breaks
## Sensory Perception Sensory Perception
## Sensory Processing Of Sound Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids Separation Of Sister Chromatids
## Serine Biosynthesis Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors Serotonin Receptors
## Shc Mediated Cascade Fgfr1 Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3 Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4 Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r Shc Related Events Triggered By Igf1r
## Shc1 Events In Erbb4 Signaling Shc1 Events In Erbb4 Signaling
## Signal Amplification Signal Amplification
## Signal Attenuation Signal Attenuation
## Signal Regulatory Protein Family Interactions Signal Regulatory Protein Family Interactions
## Signaling By Activin Signaling By Activin
## Signaling By Bmp Signaling By Bmp
## Signaling By Braf And Raf Fusions Signaling By Braf And Raf Fusions
## Signaling By Ctnnb1 Phospho Site Mutants Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Erythropoietin Signaling By Erythropoietin
## Signaling By Fgfr Signaling By Fgfr
## Signaling By Fgfr1 Signaling By Fgfr1
## Signaling By Fgfr2 Signaling By Fgfr2
## Signaling By Fgfr2 Iiia Tm Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease Signaling By Fgfr2 In Disease
## Signaling By Fgfr3 Signaling By Fgfr3
## Signaling By Fgfr3 Fusions In Cancer Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4 Signaling By Fgfr4
## Signaling By Fgfr4 In Disease Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Hedgehog Signaling By Hedgehog
## Signaling By Hippo Signaling By Hippo
## Signaling By Lrp5 Mutants Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Moderate Kinase Activity Braf Mutants Signaling By Moderate Kinase Activity Braf Mutants
## Signaling By Mras Complex Mutants Signaling By Mras Complex Mutants
## Signaling By Mst1 Signaling By Mst1
## Signaling By Nodal Signaling By Nodal
## Signaling By Notch1 Signaling By Notch1
## Signaling By Notch1 Hd Domain Mutants In Cancer Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 Pest Domain Mutants In Cancer Signaling By Notch1 Pest Domain Mutants In Cancer
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch4 Signaling By Notch4
## Signaling By Ntrk2 Trkb Signaling By Ntrk2 Trkb
## Signaling By Ntrk3 Trkc Signaling By Ntrk3 Trkc
## Signaling By Retinoic Acid Signaling By Retinoic Acid
## Signaling By Rnf43 Mutants Signaling By Rnf43 Mutants
## Signaling By Robo Receptors Signaling By Robo Receptors
## Signaling By Tgf Beta Receptor Complex In Cancer Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By Wnt In Cancer Signaling By Wnt In Cancer
## Signalling To Erks Signalling To Erks
## Signalling To P38 Via Rit And Rin Signalling To P38 Via Rit And Rin
## Signalling To Ras Signalling To Ras
## Sirt1 Negatively Regulates Rrna Expression Sirt1 Negatively Regulates Rrna Expression
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport Slc Mediated Transmembrane Transport
## Slc Transporter Disorders Slc Transporter Disorders
## Smac Xiap Regulated Apoptotic Response Smac Xiap Regulated Apoptotic Response
## Small Interfering Rna Sirna Biogenesis Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction Smooth Muscle Contraction
## Snrnp Assembly Snrnp Assembly
## Sodium Calcium Exchangers Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers Sodium Proton Exchangers
## Sos Mediated Signalling Sos Mediated Signalling
## Sperm Motility And Taxes Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism Sphingolipid Metabolism
## Spry Regulation Of Fgf Signaling Spry Regulation Of Fgf Signaling
## Srp Dependent Cotranslational Protein Targeting To Membrane Srp Dependent Cotranslational Protein Targeting To Membrane
## Stabilization Of P53 Stabilization Of P53
## Stat5 Activation Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants Stat5 Activation Downstream Of Flt3 Itd Mutants
## Striated Muscle Contraction Striated Muscle Contraction
## Sulfide Oxidation To Sulfate Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1 Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation Of Chromatin Organization Proteins Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins Sumoylation Of Dna Replication Proteins
## Sumoylation Of Immune Response Proteins Sumoylation Of Immune Response Proteins
## Sumoylation Of Intracellular Receptors Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Factors Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation Suppression Of Phagosomal Maturation
## Surfactant Metabolism Surfactant Metabolism
## Switching Of Origins To A Post Replicative State Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules Synaptic Adhesion Like Molecules
## Syndecan Interactions Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives Synthesis Of 15 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2 Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx Synthesis Of Lipoxins Lx
## Synthesis Of Pa Synthesis Of Pa
## Synthesis Of Pc Synthesis Of Pc
## Synthesis Of Pe Synthesis Of Pe
## Synthesis Of Pg Synthesis Of Pg
## Synthesis Of Pi Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pips At The Plasma Membrane Synthesis Of Pips At The Plasma Membrane
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx Synthesis Of Prostaglandins Pg And Thromboxanes Tx
## Synthesis Of Pyrophosphates In The Cytosol Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Udp N Acetyl Glucosamine Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin Synthesis Secretion And Deacylation Of Ghrelin
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip
## Tachykinin Receptors Bind Tachykinins Tachykinin Receptors Bind Tachykinins
## Tbc Rabgaps Tbc Rabgaps
## Telomere C Strand Lagging Strand Synthesis Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation Telomere C Strand Synthesis Initiation
## Telomere Extension By Telomerase Telomere Extension By Telomerase
## Telomere Maintenance Telomere Maintenance
## Terminal Pathway Of Complement Terminal Pathway Of Complement
## Termination Of Translesion Dna Synthesis Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model The Fatty Acid Cycling Model
## The Phototransduction Cascade The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision The Retinoid Cycle In Cones Daylight Vision
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thrombin Signalling Through Proteinase Activated Receptors Pars Thrombin Signalling Through Proteinase Activated Receptors Pars
## Thromboxane Signalling Through Tp Receptor Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis Thyroxine Biosynthesis
## Tie2 Signaling Tie2 Signaling
## Tight Junction Interactions Tight Junction Interactions
## Tnfr1 Induced Proapoptotic Signaling Tnfr1 Induced Proapoptotic Signaling
## Tnfr1 Mediated Ceramide Production Tnfr1 Mediated Ceramide Production
## Toxicity Of Botulinum Toxin Type D Botd Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Death Receptors And Ligands Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Traf3 Dependent Irf Activation Pathway Traf3 Dependent Irf Activation Pathway
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex
## Traf6 Mediated Irf7 Activation Traf6 Mediated Irf7 Activation
## Trafficking Of Ampa Receptors Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling Trail Signaling
## Trans Golgi Network Vesicle Budding Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of E2f Targets Under Negative Control By Dream Complex Transcription Of E2f Targets Under Negative Control By Dream Complex
## Transcription Of The Hiv Genome Transcription Of The Hiv Genome
## Transcriptional Regulation By E2f6 Transcriptional Regulation By E2f6
## Transcriptional Regulation By Runx3 Transcriptional Regulation By Runx3
## Transcriptional Regulation By Small Rnas Transcriptional Regulation By Small Rnas
## Transcriptional Regulation Of Testis Differentiation Transcriptional Regulation Of Testis Differentiation
## Transcriptional Regulation Of White Adipocyte Differentiation Transcriptional Regulation Of White Adipocyte Differentiation
## Transferrin Endocytosis And Recycling Transferrin Endocytosis And Recycling
## Translation Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh Translesion Synthesis By Polh
## Translesion Synthesis By Polk Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane Translocation Of Slc2a4 Glut4 To The Plasma Membrane
## Transport And Synthesis Of Paps Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars Transport Of Nucleotide Sugars
## Transport Of Organic Anions Transport Of Organic Anions
## Transport Of The Slbp Dependant Mature Mrna Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules Transport Of Vitamins Nucleosides And Related Molecules
## Trif Mediated Programmed Cell Death Trif Mediated Programmed Cell Death
## Triglyceride Biosynthesis Triglyceride Biosynthesis
## Triglyceride Catabolism Triglyceride Catabolism
## Triglyceride Metabolism Triglyceride Metabolism
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation Trna Aminoacylation
## Trna Modification In The Mitochondrion Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol Trna Modification In The Nucleus And Cytosol
## Trna Processing Trna Processing
## Trna Processing In The Mitochondrion Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus Trna Processing In The Nucleus
## Trp Channels Trp Channels
## Tryptophan Catabolism Tryptophan Catabolism
## Type I Hemidesmosome Assembly Type I Hemidesmosome Assembly
## Tyrosine Catabolism Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins Tysnd1 Cleaves Peroxisomal Proteins
## Ubiquinol Biosynthesis Ubiquinol Biosynthesis
## Uch Proteinases Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unwinding Of Dna Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin Uptake And Function Of Diphtheria Toxin
## Urea Cycle Urea Cycle
## Vasopressin Like Receptors Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions Vegf Ligand Receptor Interactions
## Vegfr2 Mediated Cell Proliferation Vegfr2 Mediated Cell Proliferation
## Viral Messenger Rna Synthesis Viral Messenger Rna Synthesis
## Visual Phototransduction Visual Phototransduction
## Vitamin B1 Thiamin Metabolism Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism Vitamin D Calciferol Metabolism
## Vitamins Vitamins
## Vldl Assembly Vldl Assembly
## Vldl Clearance Vldl Clearance
## Voltage Gated Potassium Channels Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl Wnt Mediated Activation Of Dvl
## Xenobiotics Xenobiotics
## Zinc Efflux And Compartmentalization By The Slc30 Family Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters Zinc Transporters
## pval
## Cytokine Signaling In Immune System 3.9e-25
## Interleukin 10 Signaling 7.7e-23
## Signaling By Interleukins 1.9e-20
## Innate Immune System 1.3e-17
## Interleukin 4 And Interleukin 13 Signaling 9.8e-16
## Chemokine Receptors Bind Chemokines 1.0e-11
## Signaling By Gpcr 2.7e-08
## Peptide Ligand Binding Receptors 1.9e-07
## Neutrophil Degranulation 2.6e-07
## Leishmania Infection 4.8e-07
## Regulated Necrosis 8.6e-07
## Purinergic Signaling In Leishmaniasis Infection 1.2e-06
## Pyroptosis 1.4e-06
## Gpcr Ligand Binding 1.7e-06
## Interleukin 1 Processing 2.4e-06
## Extra Nuclear Estrogen Signaling 3.7e-06
## Interleukin 1 Family Signaling 5.0e-06
## G Alpha I Signalling Events 5.9e-06
## Adaptive Immune System 8.4e-06
## Class A 1 Rhodopsin Like Receptors 8.7e-06
## Toll Like Receptor Cascades 8.9e-06
## Tnfr2 Non Canonical Nf Kb Pathway 1.6e-05
## Pi3k Akt Signaling In Cancer 1.9e-05
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 1.9e-05
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 2.3e-05
## Negative Regulation Of The Pi3k Akt Network 2.7e-05
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 2.8e-05
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 2.9e-05
## Inflammasomes 3.7e-05
## Programmed Cell Death 4.7e-05
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 5.6e-05
## Costimulation By The Cd28 Family 8.4e-05
## Constitutive Signaling By Aberrant Pi3k In Cancer 1.0e-04
## Tnfs Bind Their Physiological Receptors 1.0e-04
## Infectious Disease 1.3e-04
## Activation Of Matrix Metalloproteinases 1.5e-04
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 2.0e-04
## Toll Like Receptor 9 Tlr9 Cascade 2.1e-04
## Myd88 Independent Tlr4 Cascade 2.4e-04
## Cd163 Mediating An Anti Inflammatory Response 3.4e-04
## Egfr Transactivation By Gastrin 3.4e-04
## Extracellular Matrix Organization 3.5e-04
## Dap12 Interactions 3.7e-04
## Intracellular Signaling By Second Messengers 3.9e-04
## Mapk3 Erk1 Activation 4.2e-04
## Senescence Associated Secretory Phenotype Sasp 4.2e-04
## Post Translational Protein Modification 4.4e-04
## Complement Cascade 4.6e-04
## Interleukin 6 Signaling 5.2e-04
## Cd28 Dependent Vav1 Pathway 6.2e-04
## Esr Mediated Signaling 6.3e-04
## Trafficking And Processing Of Endosomal Tlr 7.3e-04
## Interleukin 12 Family Signaling 7.5e-04
## Signaling By Receptor Tyrosine Kinases 9.7e-04
## Collagen Degradation 1.1e-03
## The Nlrp3 Inflammasome 1.1e-03
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 1.4e-03
## Interleukin 17 Signaling 1.4e-03
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 1.6e-03
## Ctla4 Inhibitory Signaling 1.9e-03
## Interleukin 37 Signaling 1.9e-03
## Signal Transduction By L1 1.9e-03
## Cd28 Dependent Pi3k Akt Signaling 2.1e-03
## Raf Independent Mapk1 3 Activation 2.3e-03
## Signaling By Nuclear Receptors 2.3e-03
## Interleukin 6 Family Signaling 2.5e-03
## Interferon Gamma Signaling 3.1e-03
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 3.2e-03
## Cellular Senescence 3.4e-03
## Pd 1 Signaling 3.4e-03
## Toll Like Receptor Tlr1 Tlr2 Cascade 4.1e-03
## Diseases Of Immune System 4.2e-03
## Mapk Targets Nuclear Events Mediated By Map Kinases 4.2e-03
## Cargo Recognition For Clathrin Mediated Endocytosis 4.3e-03
## Antigen Processing Cross Presentation 4.4e-03
## Perk Regulates Gene Expression 4.5e-03
## Cd28 Co Stimulation 4.7e-03
## Nod1 2 Signaling Pathway 5.6e-03
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 6.2e-03
## Ngf Stimulated Transcription 6.6e-03
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 6.8e-03
## Signaling By Scf Kit 7.9e-03
## Interleukin 2 Family Signaling 8.3e-03
## Signaling By Ntrks 8.5e-03
## Interleukin 12 Signaling 9.4e-03
## Degradation Of The Extracellular Matrix 9.5e-03
## Death Receptor Signalling 9.7e-03
## Clathrin Mediated Endocytosis 1.0e-02
## Eph Ephrin Mediated Repulsion Of Cells 1.1e-02
## Signaling By Ptk6 1.2e-02
## Deubiquitination 1.4e-02
## G2 M Dna Replication Checkpoint 1.5e-02
## Mecp2 Regulates Transcription Factors 1.5e-02
## Runx2 Regulates Chondrocyte Maturation 1.5e-02
## Assembly Of Collagen Fibrils And Other Multimeric Structures 1.6e-02
## Cytosolic Sensors Of Pathogen Associated Dna 1.6e-02
## Nuclear Events Kinase And Transcription Factor Activation 1.6e-02
## Clec7a Inflammasome Pathway 1.9e-02
## Fibronectin Matrix Formation 1.9e-02
## Hemostasis 1.9e-02
## Mapk Family Signaling Cascades 1.9e-02
## Phosphorylation Of Emi1 1.9e-02
## Ptk6 Promotes Hif1a Stabilization 1.9e-02
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 1.9e-02
## Circadian Clock 2.0e-02
## Rhob Gtpase Cycle 2.0e-02
## Activation Of Nima Kinases Nek9 Nek6 Nek7 2.2e-02
## Creb Phosphorylation 2.2e-02
## Rhoc Gtpase Cycle 2.2e-02
## Rhog Gtpase Cycle 2.2e-02
## Cell Surface Interactions At The Vascular Wall 2.3e-02
## Cellular Responses To External Stimuli 2.3e-02
## Activation Of C3 And C5 2.5e-02
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 2.5e-02
## Interferon Signaling 2.5e-02
## Interleukin 18 Signaling 2.5e-02
## Mecp2 Regulates Transcription Of Neuronal Ligands 2.5e-02
## Runx2 Regulates Genes Involved In Cell Migration 2.5e-02
## Rna Polymerase Ii Transcription 2.6e-02
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 2.8e-02
## E2f Enabled Inhibition Of Pre Replication Complex Formation 2.8e-02
## Egfr Interacts With Phospholipase C Gamma 2.8e-02
## Interleukin 23 Signaling 2.8e-02
## Interleukin 9 Signaling 2.8e-02
## Mapk1 Erk2 Activation 2.8e-02
## Fceri Mediated Mapk Activation 3.0e-02
## G Alpha Q Signalling Events 3.0e-02
## Activation Of The Ap 1 Family Of Transcription Factors 3.1e-02
## Akt Phosphorylates Targets In The Nucleus 3.1e-02
## Camk Iv Mediated Phosphorylation Of Creb 3.1e-02
## Interleukin 21 Signaling 3.1e-02
## Mastl Facilitates Mitotic Progression 3.1e-02
## P75ntr Regulates Axonogenesis 3.1e-02
## Rac2 Gtpase Cycle 3.1e-02
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 3.2e-02
## Collagen Formation 3.2e-02
## Transcriptional Regulation Of Granulopoiesis 3.2e-02
## Eph Ephrin Signaling 3.3e-02
## Unfolded Protein Response Upr 3.3e-02
## Condensation Of Prometaphase Chromosomes 3.4e-02
## Endosomal Vacuolar Pathway 3.4e-02
## Interleukin 27 Signaling 3.4e-02
## Signaling By Leptin 3.4e-02
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 3.4e-02
## Class B 2 Secretin Family Receptors 3.5e-02
## Fcgr3a Mediated Il10 Synthesis 3.5e-02
## Rac3 Gtpase Cycle 3.5e-02
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 3.7e-02
## Interleukin 35 Signalling 3.7e-02
## Killing Mechanisms 3.7e-02
## Notch2 Intracellular Domain Regulates Transcription 3.7e-02
## P75 Ntr Receptor Mediated Signalling 3.7e-02
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 3.7e-02
## Tandem Pore Domain Potassium Channels 3.7e-02
## Ticam1 Dependent Activation Of Irf3 Irf7 3.7e-02
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 3.7e-02
## Vldlr Internalisation And Degradation 3.7e-02
## Advanced Glycosylation Endproduct Receptor Signaling 4.0e-02
## Apoptosis Induced Dna Fragmentation 4.0e-02
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 4.0e-02
## Copi Mediated Anterograde Transport 4.0e-02
## Dissolution Of Fibrin Clot 4.0e-02
## Erbb2 Activates Ptk6 Signaling 4.0e-02
## Interleukin 1 Signaling 4.0e-02
## Irf3 Mediated Induction Of Type I Ifn 4.0e-02
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 4.0e-02
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 4.0e-02
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 4.0e-02
## Golgi Cisternae Pericentriolar Stack Reorganization 4.3e-02
## Interleukin 15 Signaling 4.3e-02
## Shc1 Events In Egfr Signaling 4.3e-02
## Constitutive Signaling By Egfrviii 4.6e-02
## Depolymerisation Of The Nuclear Lamina 4.6e-02
## Erbb2 Regulates Cell Motility 4.6e-02
## Membrane Trafficking 4.6e-02
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 4.6e-02
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 4.6e-02
## Wnt5a Dependent Internalization Of Fzd4 4.6e-02
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 4.6e-02
## Platelet Activation Signaling And Aggregation 4.8e-02
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 4.9e-02
## Grb2 Events In Erbb2 Signaling 4.9e-02
## Pi3k Events In Erbb2 Signaling 4.9e-02
## Signaling By Erbb2 Ecd Mutants 4.9e-02
## Sting Mediated Induction Of Host Immune Responses 4.9e-02
## Sumoylation Of Dna Methylation Proteins 4.9e-02
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 4.9e-02
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 5.2e-02
## Gab1 Signalosome 5.2e-02
## Rip Mediated Nfkb Activation Via Zbp1 5.2e-02
## Transcriptional Regulation By Runx2 5.4e-02
## Irak4 Deficiency Tlr2 4 5.5e-02
## L1cam Interactions 5.5e-02
## Mecp2 Regulates Neuronal Receptors And Channels 5.5e-02
## Signaling By Cytosolic Fgfr1 Fusion Mutants 5.5e-02
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 5.5e-02
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 5.7e-02
## Cytoprotection By Hmox1 5.7e-02
## Initiation Of Nuclear Envelope Ne Reformation 5.7e-02
## Ldl Clearance 5.7e-02
## Phase 4 Resting Membrane Potential 5.7e-02
## Phosphorylation Of The Apc C 6.0e-02
## Pka Mediated Phosphorylation Of Creb 6.0e-02
## Signaling By Kit In Disease 6.0e-02
## Signaling By Pdgfr In Disease 6.0e-02
## Regulation Of Tlr By Endogenous Ligand 6.3e-02
## Zbp1 Dai Mediated Induction Of Type I Ifns 6.3e-02
## Response To Elevated Platelet Cytosolic Ca2 6.4e-02
## Adora2b Mediated Anti Inflammatory Cytokines Production 6.5e-02
## E2f Mediated Regulation Of Dna Replication 6.6e-02
## Shc1 Events In Erbb2 Signaling 6.6e-02
## Hcmv Early Events 6.9e-02
## Ikk Complex Recruitment Mediated By Rip1 6.9e-02
## Termination Of O Glycan Biosynthesis 6.9e-02
## Asparagine N Linked Glycosylation 7.0e-02
## C Type Lectin Receptors Clrs 7.1e-02
## Apc C Cdc20 Mediated Degradation Of Cyclin B 7.2e-02
## Growth Hormone Receptor Signaling 7.2e-02
## Runx2 Regulates Osteoblast Differentiation 7.2e-02
## Traf6 Mediated Nf Kb Activation 7.2e-02
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 7.5e-02
## Cyclin A B1 B2 Associated Events During G2 M Transition 7.5e-02
## Inactivation Of Csf3 G Csf Signaling 7.5e-02
## Notch3 Activation And Transmission Of Signal To The Nucleus 7.5e-02
## Signaling By Egfr In Cancer 7.5e-02
## Vesicle Mediated Transport 7.5e-02
## Constitutive Signaling By Akt1 E17k In Cancer 7.8e-02
## Dectin 2 Family 7.8e-02
## Interleukin 20 Family Signaling 7.8e-02
## Signaling By Erbb2 In Cancer 7.8e-02
## Wnt Ligand Biogenesis And Trafficking 7.8e-02
## Rhoa Gtpase Cycle 7.9e-02
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 8.1e-02
## G0 And Early G1 8.1e-02
## Interleukin Receptor Shc Signaling 8.1e-02
## Vegfr2 Mediated Vascular Permeability 8.1e-02
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 8.4e-02
## Er To Golgi Anterograde Transport 8.4e-02
## Dap12 Signaling 8.6e-02
## Downregulation Of Erbb2 Signaling 8.6e-02
## Downstream Signal Transduction 8.6e-02
## G1 S Specific Transcription 8.6e-02
## Ripk1 Mediated Regulated Necrosis 8.6e-02
## Cdc42 Gtpase Cycle 8.8e-02
## Cellular Response To Chemical Stress 8.9e-02
## Signaling By Csf3 G Csf 8.9e-02
## Tnfr1 Induced Nfkappab Signaling Pathway 8.9e-02
## Hcmv Infection 9.1e-02
## Egfr Downregulation 9.2e-02
## Fgfr1 Mutant Receptor Activation 9.2e-02
## Runx2 Regulates Bone Development 9.2e-02
## Transcriptional Regulation Of Pluripotent Stem Cells 9.2e-02
## Regulation Of Mecp2 Expression And Activity 9.5e-02
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 9.5e-02
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 9.5e-02
## Cargo Concentration In The Er 9.8e-02
## Plasma Lipoprotein Clearance 9.8e-02
## Sialic Acid Metabolism 9.8e-02
## Signaling By Notch2 9.8e-02
## Gpvi Mediated Activation Cascade 1.0e-01
## Regulation Of Tnfr1 Signaling 1.0e-01
## Transcriptional Regulation By Tp53 1.0e-01
## Apoptosis 1.1e-01
## Association Of Tric Cct With Target Proteins During Biosynthesis 1.1e-01
## Ca Dependent Events 1.1e-01
## Class I Mhc Mediated Antigen Processing Presentation 1.1e-01
## Fc Epsilon Receptor Fceri Signaling 1.1e-01
## Generation Of Second Messenger Molecules 1.1e-01
## Interleukin 7 Signaling 1.1e-01
## Metalloprotease Dubs 1.1e-01
## Nervous System Development 1.1e-01
## Nuclear Pore Complex Npc Disassembly 1.1e-01
## Ovarian Tumor Domain Proteases 1.1e-01
## Rac1 Gtpase Cycle 1.1e-01
## Regulation Of Tp53 Expression And Degradation 1.1e-01
## Rhoh Gtpase Cycle 1.1e-01
## Signaling By Fgfr1 In Disease 1.1e-01
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 1.1e-01
## Transport To The Golgi And Subsequent Modification 1.1e-01
## Beta Defensins 1.2e-01
## Dag And Ip3 Signaling 1.2e-01
## Rhof Gtpase Cycle 1.2e-01
## Sumoylation 1.2e-01
## Transcriptional Regulation By Ventx 1.2e-01
## Sumoylation Of Transcription Cofactors 1.3e-01
## Tnf Signaling 1.3e-01
## Tp53 Regulates Transcription Of Cell Death Genes 1.3e-01
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 1.3e-01
## Heme Signaling 1.4e-01
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 1.4e-01
## Irs Mediated Signalling 1.4e-01
## Retrograde Transport At The Trans Golgi Network 1.4e-01
## Signaling By Egfr 1.4e-01
## Signaling By Erbb2 1.4e-01
## Signaling By Notch3 1.4e-01
## Tp53 Regulates Transcription Of Cell Cycle Genes 1.4e-01
## Apoptotic Execution Phase 1.5e-01
## Defensins 1.5e-01
## Nuclear Envelope Breakdown 1.5e-01
## Rhod Gtpase Cycle 1.5e-01
## Ub Specific Processing Proteases 1.5e-01
## G Protein Mediated Events 1.6e-01
## Insulin Receptor Signalling Cascade 1.6e-01
## Intrinsic Pathway For Apoptosis 1.6e-01
## Rhoj Gtpase Cycle 1.6e-01
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 1.6e-01
## Transcriptional Activation Of Mitochondrial Biogenesis 1.6e-01
## Nrage Signals Death Through Jnk 1.7e-01
## Rhoq Gtpase Cycle 1.7e-01
## Signaling By Erbb4 1.7e-01
## Signaling By Pdgf 1.7e-01
## Transcriptional Regulation By Runx1 1.7e-01
## Asymmetric Localization Of Pcp Proteins 1.8e-01
## Ca2 Pathway 1.8e-01
## Dna Methylation 1.8e-01
## Ncam Signaling For Neurite Out Growth 1.8e-01
## O Linked Glycosylation Of Mucins 1.8e-01
## Signaling By Fgfr In Disease 1.8e-01
## Signaling By Notch 1.8e-01
## Synthesis Of Substrates In N Glycan Biosythesis 1.8e-01
## Tp53 Regulates Transcription Of Dna Repair Genes 1.8e-01
## Transcriptional Regulation By Mecp2 1.8e-01
## Copii Mediated Vesicle Transport 1.9e-01
## Diseases Associated With O Glycosylation Of Proteins 1.9e-01
## Aurka Activation By Tpx2 2.0e-01
## Interferon Alpha Beta Signaling 2.0e-01
## Plasma Lipoprotein Assembly Remodeling And Clearance 2.0e-01
## Prc2 Methylates Histones And Dna 2.0e-01
## Regulation Of Runx2 Expression And Activity 2.0e-01
## Signaling By Tgf Beta Receptor Complex 2.0e-01
## Cell Death Signalling Via Nrage Nrif And Nade 2.1e-01
## Condensation Of Prophase Chromosomes 2.1e-01
## Ecm Proteoglycans 2.1e-01
## Nuclear Envelope Ne Reassembly 2.1e-01
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 2.2e-01
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 2.2e-01
## G Alpha 12 13 Signalling Events 2.2e-01
## Initial Triggering Of Complement 2.2e-01
## Potential Therapeutics For Sars 2.2e-01
## Recruitment Of Mitotic Centrosome Proteins And Complexes 2.2e-01
## Rmts Methylate Histone Arginines 2.2e-01
## Signaling By Insulin Receptor 2.2e-01
## Signaling By Met 2.2e-01
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 2.2e-01
## Integrin Cell Surface Interactions 2.3e-01
## Organelle Biogenesis And Maintenance 2.3e-01
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 2.4e-01
## Apc C Mediated Degradation Of Cell Cycle Proteins 2.4e-01
## Fceri Mediated Ca 2 Mobilization 2.4e-01
## Opioid Signalling 2.4e-01
## Regulation Of Plk1 Activity At G2 M Transition 2.4e-01
## Activation Of Nmda Receptors And Postsynaptic Events 2.5e-01
## Mapk6 Mapk4 Signaling 2.5e-01
## Mitochondrial Biogenesis 2.5e-01
## Pcp Ce Pathway 2.5e-01
## Anchoring Of The Basal Body To The Plasma Membrane 2.6e-01
## Antimicrobial Peptides 2.6e-01
## G2 M Dna Damage Checkpoint 2.6e-01
## Protein Folding 2.6e-01
## Recruitment Of Numa To Mitotic Centrosomes 2.6e-01
## Clec7a Dectin 1 Signaling 2.7e-01
## Diseases Of Programmed Cell Death 2.7e-01
## Signaling By Tgfb Family Members 2.7e-01
## Developmental Biology 2.8e-01
## Potassium Channels 2.8e-01
## Signaling By Vegf 2.8e-01
## Stimuli Sensing Channels 2.8e-01
## Amyloid Fiber Formation 2.9e-01
## O Linked Glycosylation 2.9e-01
## Parasite Infection 3.0e-01
## Tcr Signaling 3.2e-01
## Cardiac Conduction 3.3e-01
## Mhc Class Ii Antigen Presentation 3.3e-01
## Oxidative Stress Induced Senescence 3.3e-01
## Resolution Of Sister Chromatid Cohesion 3.3e-01
## Diseases Of Glycosylation 3.6e-01
## Fcgamma Receptor Fcgr Dependent Phagocytosis 3.6e-01
## Mitotic Prophase 3.6e-01
## Beta Catenin Independent Wnt Signaling 3.7e-01
## Epigenetic Regulation Of Gene Expression 3.7e-01
## Estrogen Dependent Gene Expression 3.7e-01
## Mitotic G1 Phase And G1 S Transition 3.7e-01
## Neuronal System 3.7e-01
## Sars Cov Infections 3.7e-01
## Regulation Of Tp53 Activity 3.9e-01
## Rho Gtpase Cycle 4.0e-01
## Signaling By The B Cell Receptor Bcr 4.0e-01
## G2 M Checkpoints 4.1e-01
## Ion Channel Transport 4.4e-01
## Muscle Contraction 4.6e-01
## Cilium Assembly 4.7e-01
## Intra Golgi And Retrograde Golgi To Er Traffic 4.7e-01
## Mitotic G2 G2 M Phases 4.7e-01
## Mitotic Prometaphase 4.7e-01
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 4.7e-01
## Mitotic Metaphase And Anaphase 5.2e-01
## Tcf Dependent Signaling In Response To Wnt 5.2e-01
## Diseases Of Metabolism 5.4e-01
## Transmission Across Chemical Synapses 5.7e-01
## Chromatin Modifying Enzymes 5.8e-01
## Cell Cycle Checkpoints 6.0e-01
## Signaling By Wnt 6.5e-01
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 6.6e-01
## Transport Of Small Molecules 6.7e-01
## M Phase 7.3e-01
## Cell Cycle Mitotic 8.3e-01
## Cell Cycle 8.9e-01
## 2 Ltr Circle Formation 1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 1.0e+00
## Abacavir Metabolism 1.0e+00
## Abacavir Transmembrane Transport 1.0e+00
## Abacavir Transport And Metabolism 1.0e+00
## Abc Family Proteins Mediated Transport 1.0e+00
## Abc Transporter Disorders 1.0e+00
## Abc Transporters In Lipid Homeostasis 1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 1.0e+00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 1.0e+00
## Acetylcholine Binding And Downstream Events 1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 1.0e+00
## Acetylcholine Neurotransmitter Release Cycle 1.0e+00
## Acetylcholine Regulates Insulin Secretion 1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding 1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus 1.0e+00
## Activated Ntrk2 Signals Through Cdk5 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3 1.0e+00
## Activated Ntrk2 Signals Through Fyn 1.0e+00
## Activated Ntrk2 Signals Through Pi3k 1.0e+00
## Activated Ntrk2 Signals Through Ras 1.0e+00
## Activated Ntrk3 Signals Through Pi3k 1.0e+00
## Activated Ntrk3 Signals Through Ras 1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 1.0e+00
## Activated Tak1 Mediates P38 Mapk Activation 1.0e+00
## Activation Of Ampk Downstream Of Nmdars 1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 1.0e+00
## Activation Of Atr In Response To Replication Stress 1.0e+00
## Activation Of Bad And Translocation To Mitochondria 1.0e+00
## Activation Of Bh3 Only Proteins 1.0e+00
## Activation Of Caspases Through Apoptosome Mediated Cleavage 1.0e+00
## Activation Of Gene Expression By Srebf Srebp 1.0e+00
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding 1.0e+00
## Activation Of Noxa And Translocation To Mitochondria 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 1.0e+00
## Activation Of Puma And Translocation To Mitochondria 1.0e+00
## Activation Of Rac1 1.0e+00
## Activation Of Rac1 Downstream Of Nmdars 1.0e+00
## Activation Of Ras In B Cells 1.0e+00
## Activation Of Smo 1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 1.0e+00
## Activation Of The Phototransduction Cascade 1.0e+00
## Activation Of The Pre Replicative Complex 1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 1.0e+00
## Activation Of Trka Receptors 1.0e+00
## Acyl Chain Remodeling Of Cl 1.0e+00
## Acyl Chain Remodeling Of Dag And Tag 1.0e+00
## Acyl Chain Remodelling Of Pc 1.0e+00
## Acyl Chain Remodelling Of Pe 1.0e+00
## Acyl Chain Remodelling Of Pg 1.0e+00
## Acyl Chain Remodelling Of Pi 1.0e+00
## Acyl Chain Remodelling Of Ps 1.0e+00
## Adenylate Cyclase Activating Pathway 1.0e+00
## Adenylate Cyclase Inhibitory Pathway 1.0e+00
## Adherens Junctions Interactions 1.0e+00
## Adp Signalling Through P2y Purinoceptor 1 1.0e+00
## Adp Signalling Through P2y Purinoceptor 12 1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion 1.0e+00
## Adrenoceptors 1.0e+00
## Aflatoxin Activation And Detoxification 1.0e+00
## Aggrephagy 1.0e+00
## Akt Phosphorylates Targets In The Cytosol 1.0e+00
## Alpha Defensins 1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 1.0e+00
## Alpha Oxidation Of Phytanate 1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway 1.0e+00
## Alternative Complement Activation 1.0e+00
## Amine Ligand Binding Receptors 1.0e+00
## Amino Acid Conjugation 1.0e+00
## Amino Acid Transport Across The Plasma Membrane 1.0e+00
## Amino Acids Regulate Mtorc1 1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity 1.0e+00
## Anchoring Fibril Formation 1.0e+00
## Androgen Biosynthesis 1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation 1.0e+00
## Antiviral Mechanism By Ifn Stimulated Genes 1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a 1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection 1.0e+00
## Apoptotic Cleavage Of Cell Adhesion Proteins 1.0e+00
## Apoptotic Cleavage Of Cellular Proteins 1.0e+00
## Apoptotic Factor Mediated Response 1.0e+00
## Aquaporin Mediated Transport 1.0e+00
## Arachidonate Production From Dag 1.0e+00
## Arachidonic Acid Metabolism 1.0e+00
## Arms Mediated Activation 1.0e+00
## Aryl Hydrocarbon Receptor Signalling 1.0e+00
## Aspartate And Asparagine Metabolism 1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors 1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes 1.0e+00
## Assembly Of The Hiv Virion 1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication 1.0e+00
## Assembly Of The Pre Replicative Complex 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones 1.0e+00
## Attachment And Entry 1.0e+00
## Attachment Of Gpi Anchor To Upar 1.0e+00
## Attenuation Phase 1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 1.0e+00
## Autophagy 1.0e+00
## B Wich Complex Positively Regulates Rrna Expression 1.0e+00
## Base Excision Repair 1.0e+00
## Base Excision Repair Ap Site Formation 1.0e+00
## Basigin Interactions 1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium 1.0e+00
## Beta Catenin Phosphorylation Cascade 1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 1.0e+00
## Beta Oxidation Of Pristanoyl Coa 1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids 1.0e+00
## Bicarbonate Transporters 1.0e+00
## Bile Acid And Bile Salt Metabolism 1.0e+00
## Binding And Uptake Of Ligands By Scavenger Receptors 1.0e+00
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 1.0e+00
## Biological Oxidations 1.0e+00
## Biosynthesis Of Epa Derived Spms 1.0e+00
## Biosynthesis Of Maresin Like Spms 1.0e+00
## Biosynthesis Of Maresins 1.0e+00
## Biosynthesis Of Specialized Proresolving Mediators Spms 1.0e+00
## Biotin Transport And Metabolism 1.0e+00
## Blood Group Systems Biosynthesis 1.0e+00
## Branched Chain Amino Acid Catabolism 1.0e+00
## Budding And Maturation Of Hiv Virion 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 1.0e+00
## Butyrophilin Btn Family Interactions 1.0e+00
## Ca2 Activated K Channels 1.0e+00
## Calcineurin Activates Nfat 1.0e+00
## Calcitonin Like Ligand Receptors 1.0e+00
## Calnexin Calreticulin Cycle 1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin 1.0e+00
## Cargo Trafficking To The Periciliary Membrane 1.0e+00
## Carnitine Metabolism 1.0e+00
## Caspase Activation Via Death Receptors In The Presence Of Ligand 1.0e+00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 1.0e+00
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 1.0e+00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 1.0e+00
## Cation Coupled Chloride Cotransporters 1.0e+00
## Cd209 Dc Sign Signaling 1.0e+00
## Cd22 Mediated Bcr Regulation 1.0e+00
## Cdc6 Association With The Orc Origin Complex 1.0e+00
## Cell Cell Communication 1.0e+00
## Cell Cell Junction Organization 1.0e+00
## Cell Extracellular Matrix Interactions 1.0e+00
## Cell Junction Organization 1.0e+00
## Cellular Hexose Transport 1.0e+00
## Cellular Response To Heat Stress 1.0e+00
## Cellular Response To Hypoxia 1.0e+00
## Cellular Response To Starvation 1.0e+00
## Cgmp Effects 1.0e+00
## Chaperone Mediated Autophagy 1.0e+00
## Chl1 Interactions 1.0e+00
## Cholesterol Biosynthesis 1.0e+00
## Choline Catabolism 1.0e+00
## Chondroitin Sulfate Biosynthesis 1.0e+00
## Chondroitin Sulfate Dermatan Sulfate Metabolism 1.0e+00
## Chrebp Activates Metabolic Gene Expression 1.0e+00
## Chromosome Maintenance 1.0e+00
## Chylomicron Assembly 1.0e+00
## Chylomicron Clearance 1.0e+00
## Chylomicron Remodeling 1.0e+00
## Citric Acid Cycle Tca Cycle 1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors 1.0e+00
## Class I Peroxisomal Membrane Protein Import 1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation 1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 1.0e+00
## Coenzyme A Biosynthesis 1.0e+00
## Cohesin Loading Onto Chromatin 1.0e+00
## Collagen Biosynthesis And Modifying Enzymes 1.0e+00
## Collagen Chain Trimerization 1.0e+00
## Common Pathway Of Fibrin Clot Formation 1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation 1.0e+00
## Complex I Biogenesis 1.0e+00
## Conjugation Of Benzoate With Glycine 1.0e+00
## Constitutive Signaling By Overexpressed Erbb2 1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic 1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic 1.0e+00
## Creatine Metabolism 1.0e+00
## Creation Of C4 And C2 Activators 1.0e+00
## Creb3 Factors Activate Genes 1.0e+00
## Cristae Formation 1.0e+00
## Crmps In Sema3a Signaling 1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 1.0e+00
## Crosslinking Of Collagen Fibrils 1.0e+00
## Cs Ds Degradation 1.0e+00
## Cyclin A Cdk2 Associated Events At S Phase Entry 1.0e+00
## Cyclin D Associated Events In G1 1.0e+00
## Cyp2e1 Reactions 1.0e+00
## Cytochrome C Mediated Apoptotic Response 1.0e+00
## Cytochrome P450 Arranged By Substrate Type 1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly 1.0e+00
## Cytosolic Sulfonation Of Small Molecules 1.0e+00
## Cytosolic Trna Aminoacylation 1.0e+00
## Darpp 32 Events 1.0e+00
## Dcc Mediated Attractive Signaling 1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex 1.0e+00
## Deadenylation Dependent Mrna Decay 1.0e+00
## Deadenylation Of Mrna 1.0e+00
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type 1.0e+00
## Defective Cftr Causes Cystic Fibrosis 1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type 1.0e+00
## Defective Chst3 Causes Sedcjd 1.0e+00
## Defective Chst6 Causes Mcdc1 1.0e+00
## Defective Chsy1 Causes Tpbs 1.0e+00
## Defective Csf2rb Causes Smdp5 1.0e+00
## Defective Ext2 Causes Exostoses 2 1.0e+00
## Defective F9 Activation 1.0e+00
## Defective Factor Ix Causes Hemophilia B 1.0e+00
## Defective Factor Viii Causes Hemophilia A 1.0e+00
## Defective Lfng Causes Scdo3 1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis 1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15 1.0e+00
## Defects In Biotin Btn Metabolism 1.0e+00
## Defects In Cobalamin B12 Metabolism 1.0e+00
## Defects In Vitamin And Cofactor Metabolism 1.0e+00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 1.0e+00
## Degradation Of Axin 1.0e+00
## Degradation Of Beta Catenin By The Destruction Complex 1.0e+00
## Degradation Of Cysteine And Homocysteine 1.0e+00
## Degradation Of Dvl 1.0e+00
## Degradation Of Gli1 By The Proteasome 1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 1.0e+00
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 1.0e+00
## Dermatan Sulfate Biosynthesis 1.0e+00
## Detoxification Of Reactive Oxygen Species 1.0e+00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 1.0e+00
## Digestion 1.0e+00
## Digestion And Absorption 1.0e+00
## Digestion Of Dietary Carbohydrate 1.0e+00
## Digestion Of Dietary Lipid 1.0e+00
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism 1.0e+00
## Diseases Associated With Glycosylation Precursor Biosynthesis 1.0e+00
## Diseases Associated With N Glycosylation Of Proteins 1.0e+00
## Diseases Associated With Surfactant Metabolism 1.0e+00
## Diseases Of Base Excision Repair 1.0e+00
## Diseases Of Carbohydrate Metabolism 1.0e+00
## Diseases Of Dna Repair 1.0e+00
## Diseases Of Mismatch Repair Mmr 1.0e+00
## Diseases Of Mitotic Cell Cycle 1.0e+00
## Disinhibition Of Snare Formation 1.0e+00
## Disorders Of Transmembrane Transporters 1.0e+00
## Displacement Of Dna Glycosylase By Apex1 1.0e+00
## Dna Damage Bypass 1.0e+00
## Dna Damage Recognition In Gg Ner 1.0e+00
## Dna Damage Reversal 1.0e+00
## Dna Damage Telomere Stress Induced Senescence 1.0e+00
## Dna Double Strand Break Repair 1.0e+00
## Dna Double Strand Break Response 1.0e+00
## Dna Repair 1.0e+00
## Dna Replication 1.0e+00
## Dna Replication Initiation 1.0e+00
## Dna Replication Pre Initiation 1.0e+00
## Dna Strand Elongation 1.0e+00
## Dopamine Neurotransmitter Release Cycle 1.0e+00
## Dopamine Receptors 1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling 1.0e+00
## Downregulation Of Erbb4 Signaling 1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling 1.0e+00
## Downstream Signaling Events Of B Cell Receptor Bcr 1.0e+00
## Downstream Signaling Of Activated Fgfr1 1.0e+00
## Downstream Signaling Of Activated Fgfr2 1.0e+00
## Downstream Signaling Of Activated Fgfr3 1.0e+00
## Downstream Signaling Of Activated Fgfr4 1.0e+00
## Dscam Interactions 1.0e+00
## Dual Incision In Gg Ner 1.0e+00
## Dual Incision In Tc Ner 1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 1.0e+00
## Early Phase Of Hiv Life Cycle 1.0e+00
## Effects Of Pip2 Hydrolysis 1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 1.0e+00
## Eicosanoid Ligand Binding Receptors 1.0e+00
## Eicosanoids 1.0e+00
## Elastic Fibre Formation 1.0e+00
## Electric Transmission Across Gap Junctions 1.0e+00
## Elevation Of Cytosolic Ca2 Levels 1.0e+00
## Endogenous Sterols 1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt 1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 1.0e+00
## Enos Activation 1.0e+00
## Epha Mediated Growth Cone Collapse 1.0e+00
## Ephb Mediated Forward Signaling 1.0e+00
## Ephrin Signaling 1.0e+00
## Er Quality Control Compartment Erqc 1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 1.0e+00
## Erk Mapk Targets 1.0e+00
## Erks Are Inactivated 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg 1.0e+00
## Erythropoietin Activates Ras 1.0e+00
## Erythropoietin Activates Stat5 1.0e+00
## Establishment Of Sister Chromatid Cohesion 1.0e+00
## Estrogen Biosynthesis 1.0e+00
## Estrogen Stimulated Signaling Through Prkcz 1.0e+00
## Ethanol Oxidation 1.0e+00
## Eukaryotic Translation Elongation 1.0e+00
## Eukaryotic Translation Initiation 1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus 1.0e+00
## Extension Of Telomeres 1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Factors Involved In Megakaryocyte Development And Platelet Production 1.0e+00
## Fanconi Anemia Pathway 1.0e+00
## Fasl Cd95l Signaling 1.0e+00
## Fatty Acid Metabolism 1.0e+00
## Fatty Acids 1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 1.0e+00
## Fatty Acyl Coa Biosynthesis 1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer 1.0e+00
## Fceri Mediated Nf Kb Activation 1.0e+00
## Fcgr Activation 1.0e+00
## Fertilization 1.0e+00
## Fgfr1 Ligand Binding And Activation 1.0e+00
## Fgfr1b Ligand Binding And Activation 1.0e+00
## Fgfr1c Ligand Binding And Activation 1.0e+00
## Fgfr2 Alternative Splicing 1.0e+00
## Fgfr2 Ligand Binding And Activation 1.0e+00
## Fgfr2 Mutant Receptor Activation 1.0e+00
## Fgfr2b Ligand Binding And Activation 1.0e+00
## Fgfr2c Ligand Binding And Activation 1.0e+00
## Fgfr3 Ligand Binding And Activation 1.0e+00
## Fgfr3b Ligand Binding And Activation 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 1.0e+00
## Flt3 Signaling 1.0e+00
## Flt3 Signaling By Cbl Mutants 1.0e+00
## Flt3 Signaling In Disease 1.0e+00
## Flt3 Signaling Through Src Family Kinases 1.0e+00
## Folding Of Actin By Cct Tric 1.0e+00
## Formation Of Apoptosome 1.0e+00
## Formation Of Atp By Chemiosmotic Coupling 1.0e+00
## Formation Of Fibrin Clot Clotting Cascade 1.0e+00
## Formation Of Incision Complex In Gg Ner 1.0e+00
## Formation Of Rna Pol Ii Elongation Complex 1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf 1.0e+00
## Formation Of Tc Ner Pre Incision Complex 1.0e+00
## Formation Of The Beta Catenin Tcf Transactivating Complex 1.0e+00
## Formation Of The Cornified Envelope 1.0e+00
## Formation Of The Early Elongation Complex 1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric 1.0e+00
## Formation Of Xylulose 5 Phosphate 1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 1.0e+00
## Foxo Mediated Transcription 1.0e+00
## Foxo Mediated Transcription Of Cell Cycle Genes 1.0e+00
## Foxo Mediated Transcription Of Cell Death Genes 1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 1.0e+00
## Free Fatty Acid Receptors 1.0e+00
## Free Fatty Acids Regulate Insulin Secretion 1.0e+00
## Frs Mediated Fgfr1 Signaling 1.0e+00
## Frs Mediated Fgfr2 Signaling 1.0e+00
## Frs Mediated Fgfr3 Signaling 1.0e+00
## Frs Mediated Fgfr4 Signaling 1.0e+00
## Fructose Catabolism 1.0e+00
## Fructose Metabolism 1.0e+00
## G Alpha S Signalling Events 1.0e+00
## G Alpha Z Signalling Events 1.0e+00
## G Beta Gamma Signalling Through Cdc42 1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma 1.0e+00
## G Protein Activation 1.0e+00
## G Protein Beta Gamma Signalling 1.0e+00
## G1 S Dna Damage Checkpoints 1.0e+00
## G2 Phase 1.0e+00
## Gaba B Receptor Activation 1.0e+00
## Gaba Receptor Activation 1.0e+00
## Gaba Synthesis Release Reuptake And Degradation 1.0e+00
## Galactose Catabolism 1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 1.0e+00
## Gap Junction Assembly 1.0e+00
## Gap Junction Degradation 1.0e+00
## Gap Junction Trafficking And Regulation 1.0e+00
## Gdp Fucose Biosynthesis 1.0e+00
## Gene Silencing By Rna 1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner 1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 1.0e+00
## Glucagon Signaling In Metabolic Regulation 1.0e+00
## Glucagon Type Ligand Receptors 1.0e+00
## Glucocorticoid Biosynthesis 1.0e+00
## Gluconeogenesis 1.0e+00
## Glucose Metabolism 1.0e+00
## Glucuronidation 1.0e+00
## Glutamate And Glutamine Metabolism 1.0e+00
## Glutamate Neurotransmitter Release Cycle 1.0e+00
## Glutathione Conjugation 1.0e+00
## Glutathione Synthesis And Recycling 1.0e+00
## Glycerophospholipid Biosynthesis 1.0e+00
## Glycerophospholipid Catabolism 1.0e+00
## Glycogen Breakdown Glycogenolysis 1.0e+00
## Glycogen Metabolism 1.0e+00
## Glycogen Storage Diseases 1.0e+00
## Glycogen Synthesis 1.0e+00
## Glycolysis 1.0e+00
## Glycosaminoglycan Metabolism 1.0e+00
## Glycosphingolipid Metabolism 1.0e+00
## Glyoxylate Metabolism And Glycine Degradation 1.0e+00
## Golgi Associated Vesicle Biogenesis 1.0e+00
## Golgi To Er Retrograde Transport 1.0e+00
## Gp1b Ix V Activation Signalling 1.0e+00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 1.0e+00
## Grb7 Events In Erbb2 Signaling 1.0e+00
## Hats Acetylate Histones 1.0e+00
## Hcmv Late Events 1.0e+00
## Hdacs Deacetylate Histones 1.0e+00
## Hdl Assembly 1.0e+00
## Hdl Clearance 1.0e+00
## Hdl Remodeling 1.0e+00
## Hdms Demethylate Histones 1.0e+00
## Hdr Through Homologous Recombination Hrr 1.0e+00
## Hdr Through Mmej Alt Nhej 1.0e+00
## Hdr Through Single Strand Annealing Ssa 1.0e+00
## Hedgehog Ligand Biogenesis 1.0e+00
## Hedgehog Off State 1.0e+00
## Hedgehog On State 1.0e+00
## Heme Biosynthesis 1.0e+00
## Heme Degradation 1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism 1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 1.0e+00
## Histidine Catabolism 1.0e+00
## Hiv Elongation Arrest And Recovery 1.0e+00
## Hiv Infection 1.0e+00
## Hiv Life Cycle 1.0e+00
## Hiv Transcription Elongation 1.0e+00
## Hiv Transcription Initiation 1.0e+00
## Homologous Dna Pairing And Strand Exchange 1.0e+00
## Homology Directed Repair 1.0e+00
## Hormone Ligand Binding Receptors 1.0e+00
## Host Interactions Of Hiv Factors 1.0e+00
## Hs Gag Biosynthesis 1.0e+00
## Hs Gag Degradation 1.0e+00
## Hsf1 Activation 1.0e+00
## Hsf1 Dependent Transactivation 1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna 1.0e+00
## Hyaluronan Biosynthesis And Export 1.0e+00
## Hyaluronan Metabolism 1.0e+00
## Hyaluronan Uptake And Degradation 1.0e+00
## Hydrolysis Of Lpc 1.0e+00
## Ikba Variant Leads To Eda Id 1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions 1.0e+00
## Inactivation Of Cdc42 And Rac1 1.0e+00
## Incretin Synthesis Secretion And Inactivation 1.0e+00
## Infection With Mycobacterium Tuberculosis 1.0e+00
## Influenza Infection 1.0e+00
## Inhibition Of Dna Recombination At Telomere 1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 1.0e+00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 1.0e+00
## Inositol Phosphate Metabolism 1.0e+00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 1.0e+00
## Insulin Processing 1.0e+00
## Insulin Receptor Recycling 1.0e+00
## Integration Of Energy Metabolism 1.0e+00
## Integration Of Provirus 1.0e+00
## Integrin Signaling 1.0e+00
## Interaction Between L1 And Ankyrins 1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida 1.0e+00
## Interactions Of Rev With Host Cellular Proteins 1.0e+00
## Interactions Of Vpr With Host Cellular Proteins 1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates 1.0e+00
## Interleukin 2 Signaling 1.0e+00
## Interleukin 36 Pathway 1.0e+00
## Intestinal Absorption 1.0e+00
## Intra Golgi Traffic 1.0e+00
## Intraflagellar Transport 1.0e+00
## Intrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Inwardly Rectifying K Channels 1.0e+00
## Ion Homeostasis 1.0e+00
## Ion Transport By P Type Atpases 1.0e+00
## Ionotropic Activity Of Kainate Receptors 1.0e+00
## Irak1 Recruits Ikk Complex 1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex 1.0e+00
## Ire1alpha Activates Chaperones 1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn 1.0e+00
## Iron Uptake And Transport 1.0e+00
## Irs Activation 1.0e+00
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 1.0e+00
## Josephin Domain Dubs 1.0e+00
## Keratan Sulfate Biosynthesis 1.0e+00
## Keratan Sulfate Degradation 1.0e+00
## Keratan Sulfate Keratin Metabolism 1.0e+00
## Keratinization 1.0e+00
## Ketone Body Metabolism 1.0e+00
## Kinesins 1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna 1.0e+00
## Lagging Strand Synthesis 1.0e+00
## Laminin Interactions 1.0e+00
## Late Endosomal Microautophagy 1.0e+00
## Lectin Pathway Of Complement Activation 1.0e+00
## Leukotriene Receptors 1.0e+00
## Lgi Adam Interactions 1.0e+00
## Ligand Receptor Interactions 1.0e+00
## Linoleic Acid La Metabolism 1.0e+00
## Lipid Particle Organization 1.0e+00
## Lipophagy 1.0e+00
## Listeria Monocytogenes Entry Into Host Cells 1.0e+00
## Long Term Potentiation 1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome 1.0e+00
## Loss Of Function Of Smad2 3 In Cancer 1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 1.0e+00
## Ltc4 Cysltr Mediated Il4 Production 1.0e+00
## Lysine Catabolism 1.0e+00
## Lysosome Vesicle Biogenesis 1.0e+00
## Lysosphingolipid And Lpa Receptors 1.0e+00
## Map2k And Mapk Activation 1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 1.0e+00
## Maturation Of Nucleoprotein 1.0e+00
## Maturation Of Protein 3a 1.0e+00
## Maturation Of Sars Cov 1 Spike Protein 1.0e+00
## Maturation Of Sars Cov 2 Spike Protein 1.0e+00
## Meiosis 1.0e+00
## Meiotic Recombination 1.0e+00
## Meiotic Synapsis 1.0e+00
## Melanin Biosynthesis 1.0e+00
## Met Activates Pi3k Akt Signaling 1.0e+00
## Met Activates Ptk2 Signaling 1.0e+00
## Met Activates Ptpn11 1.0e+00
## Met Activates Rap1 And Rac1 1.0e+00
## Met Activates Ras Signaling 1.0e+00
## Met Interacts With Tns Proteins 1.0e+00
## Met Promotes Cell Motility 1.0e+00
## Met Receptor Activation 1.0e+00
## Met Receptor Recycling 1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes 1.0e+00
## Metabolism Of Amine Derived Hormones 1.0e+00
## Metabolism Of Amino Acids And Derivatives 1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins 1.0e+00
## Metabolism Of Carbohydrates 1.0e+00
## Metabolism Of Cofactors 1.0e+00
## Metabolism Of Fat Soluble Vitamins 1.0e+00
## Metabolism Of Folate And Pterines 1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se 1.0e+00
## Metabolism Of Lipids 1.0e+00
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 1.0e+00
## Metabolism Of Nucleotides 1.0e+00
## Metabolism Of Polyamines 1.0e+00
## Metabolism Of Porphyrins 1.0e+00
## Metabolism Of Rna 1.0e+00
## Metabolism Of Steroid Hormones 1.0e+00
## Metabolism Of Steroids 1.0e+00
## Metabolism Of Vitamins And Cofactors 1.0e+00
## Metabolism Of Water Soluble Vitamins And Cofactors 1.0e+00
## Metal Ion Slc Transporters 1.0e+00
## Metal Sequestration By Antimicrobial Proteins 1.0e+00
## Metallothioneins Bind Metals 1.0e+00
## Methionine Salvage Pathway 1.0e+00
## Methylation 1.0e+00
## Microrna Mirna Biogenesis 1.0e+00
## Mineralocorticoid Biosynthesis 1.0e+00
## Miro Gtpase Cycle 1.0e+00
## Miscellaneous Substrates 1.0e+00
## Miscellaneous Transport And Binding Events 1.0e+00
## Mismatch Repair 1.0e+00
## Mitochondrial Calcium Ion Transport 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis 1.0e+00
## Mitochondrial Protein Import 1.0e+00
## Mitochondrial Translation 1.0e+00
## Mitochondrial Trna Aminoacylation 1.0e+00
## Mitochondrial Uncoupling 1.0e+00
## Mitophagy 1.0e+00
## Mitotic Spindle Checkpoint 1.0e+00
## Mitotic Telophase Cytokinesis 1.0e+00
## Modulation By Mtb Of Host Immune System 1.0e+00
## Molecules Associated With Elastic Fibres 1.0e+00
## Molybdenum Cofactor Biosynthesis 1.0e+00
## Mrna Capping 1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease 1.0e+00
## Mrna Editing 1.0e+00
## Mrna Editing C To U Conversion 1.0e+00
## Mrna Splicing 1.0e+00
## Mrna Splicing Minor Pathway 1.0e+00
## Mtor Signalling 1.0e+00
## Mtorc1 Mediated Signalling 1.0e+00
## Mucopolysaccharidoses 1.0e+00
## Multifunctional Anion Exchangers 1.0e+00
## Muscarinic Acetylcholine Receptors 1.0e+00
## Myoclonic Epilepsy Of Lafora 1.0e+00
## Myogenesis 1.0e+00
## N Glycan Antennae Elongation 1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi 1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi 1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 1.0e+00
## Na Cl Dependent Neurotransmitter Transporters 1.0e+00
## Nade Modulates Death Signalling 1.0e+00
## Ncam1 Interactions 1.0e+00
## Nectin Necl Trans Heterodimerization 1.0e+00
## Neddylation 1.0e+00
## Nef And Signal Transduction 1.0e+00
## Nef Mediated Cd4 Down Regulation 1.0e+00
## Nef Mediated Cd8 Down Regulation 1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 1.0e+00
## Negative Epigenetic Regulation Of Rrna Expression 1.0e+00
## Negative Feedback Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 1.0e+00
## Negative Regulation Of Fgfr1 Signaling 1.0e+00
## Negative Regulation Of Fgfr2 Signaling 1.0e+00
## Negative Regulation Of Fgfr3 Signaling 1.0e+00
## Negative Regulation Of Fgfr4 Signaling 1.0e+00
## Negative Regulation Of Flt3 1.0e+00
## Negative Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Met Activity 1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 1.0e+00
## Negative Regulation Of Notch4 Signaling 1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 1.0e+00
## Negative Regulators Of Ddx58 Ifih1 Signaling 1.0e+00
## Nephrin Family Interactions 1.0e+00
## Netrin 1 Signaling 1.0e+00
## Netrin Mediated Repulsion Signals 1.0e+00
## Neurexins And Neuroligins 1.0e+00
## Neurofascin Interactions 1.0e+00
## Neurotoxicity Of Clostridium Toxins 1.0e+00
## Neurotransmitter Clearance 1.0e+00
## Neurotransmitter Release Cycle 1.0e+00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 1.0e+00
## Nf Kb Is Activated And Signals Survival 1.0e+00
## Ngf Independant Trka Activation 1.0e+00
## Nicotinamide Salvaging 1.0e+00
## Nicotinate Metabolism 1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase 1.0e+00
## Non Integrin Membrane Ecm Interactions 1.0e+00
## Noncanonical Activation Of Notch3 1.0e+00
## Nonhomologous End Joining Nhej 1.0e+00
## Nonsense Mediated Decay Nmd 1.0e+00
## Norepinephrine Neurotransmitter Release Cycle 1.0e+00
## Nostrin Mediated Enos Trafficking 1.0e+00
## Notch Hlh Transcription Pathway 1.0e+00
## Notch1 Intracellular Domain Regulates Transcription 1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch3 Intracellular Domain Regulates Transcription 1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Intracellular Domain Regulates Transcription 1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 1.0e+00
## Nrcam Interactions 1.0e+00
## Nrif Signals Cell Death From The Nucleus 1.0e+00
## Ns1 Mediated Effects On Host Pathways 1.0e+00
## Ntrk2 Activates Rac1 1.0e+00
## Nuclear Import Of Rev Protein 1.0e+00
## Nuclear Receptor Transcription Pathway 1.0e+00
## Nuclear Signaling By Erbb4 1.0e+00
## Nucleobase Biosynthesis 1.0e+00
## Nucleobase Catabolism 1.0e+00
## Nucleotide Excision Repair 1.0e+00
## Nucleotide Like Purinergic Receptors 1.0e+00
## Nucleotide Salvage 1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins 1.0e+00
## Oas Antiviral Response 1.0e+00
## Olfactory Signaling Pathway 1.0e+00
## Oncogene Induced Senescence 1.0e+00
## Oncogenic Mapk Signaling 1.0e+00
## Opsins 1.0e+00
## Orc1 Removal From Chromatin 1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 1.0e+00
## Organic Anion Transport 1.0e+00
## Organic Anion Transporters 1.0e+00
## Organic Cation Anion Zwitterion Transport 1.0e+00
## Organic Cation Transport 1.0e+00
## Other Interleukin Signaling 1.0e+00
## Other Semaphorin Interactions 1.0e+00
## P130cas Linkage To Mapk Signaling For Integrins 1.0e+00
## P2y Receptors 1.0e+00
## P38mapk Events 1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1 1.0e+00
## P75ntr Recruits Signalling Complexes 1.0e+00
## P75ntr Signals Via Nf Kb 1.0e+00
## Passive Transport By Aquaporins 1.0e+00
## Pcna Dependent Long Patch Base Excision Repair 1.0e+00
## Pecam1 Interactions 1.0e+00
## Pentose Phosphate Pathway 1.0e+00
## Peptide Hormone Biosynthesis 1.0e+00
## Peptide Hormone Metabolism 1.0e+00
## Peroxisomal Lipid Metabolism 1.0e+00
## Peroxisomal Protein Import 1.0e+00
## Pexophagy 1.0e+00
## Phase 0 Rapid Depolarisation 1.0e+00
## Phase 1 Inactivation Of Fast Na Channels 1.0e+00
## Phase 2 Plateau Phase 1.0e+00
## Phase 3 Rapid Repolarisation 1.0e+00
## Phase I Functionalization Of Compounds 1.0e+00
## Phase Ii Conjugation Of Compounds 1.0e+00
## Phenylalanine And Tyrosine Metabolism 1.0e+00
## Phenylalanine Metabolism 1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins 1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins 1.0e+00
## Phospholipase C Mediated Cascade Fgfr2 1.0e+00
## Phospholipase C Mediated Cascade Fgfr4 1.0e+00
## Phospholipid Metabolism 1.0e+00
## Physiological Factors 1.0e+00
## Pi 3k Cascade Fgfr1 1.0e+00
## Pi 3k Cascade Fgfr2 1.0e+00
## Pi 3k Cascade Fgfr3 1.0e+00
## Pi 3k Cascade Fgfr4 1.0e+00
## Pi Metabolism 1.0e+00
## Pi3k Akt Activation 1.0e+00
## Pi3k Events In Erbb4 Signaling 1.0e+00
## Pi5p Regulates Tp53 Acetylation 1.0e+00
## Pink1 Prkn Mediated Mitophagy 1.0e+00
## Piwi Interacting Rna Pirna Biogenesis 1.0e+00
## Pka Activation In Glucagon Signalling 1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors 1.0e+00
## Pkmts Methylate Histone Lysines 1.0e+00
## Plasma Lipoprotein Assembly 1.0e+00
## Plasma Lipoprotein Remodeling 1.0e+00
## Platelet Adhesion To Exposed Collagen 1.0e+00
## Platelet Aggregation Plug Formation 1.0e+00
## Platelet Calcium Homeostasis 1.0e+00
## Platelet Homeostasis 1.0e+00
## Platelet Sensitization By Ldl 1.0e+00
## Polb Dependent Long Patch Base Excision Repair 1.0e+00
## Polo Like Kinase Mediated Events 1.0e+00
## Polymerase Switching 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression 1.0e+00
## Post Chaperonin Tubulin Folding Pathway 1.0e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation 1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 1.0e+00
## Pre Notch Expression And Processing 1.0e+00
## Pre Notch Processing In Golgi 1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum 1.0e+00
## Pregnenolone Biosynthesis 1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening 1.0e+00
## Presynaptic Function Of Kainate Receptors 1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion 1.0e+00
## Processing And Activation Of Sumo 1.0e+00
## Processing Of Capped Intron Containing Pre Mrna 1.0e+00
## Processing Of Capped Intronless Pre Mrna 1.0e+00
## Processing Of Dna Double Strand Break Ends 1.0e+00
## Processing Of Intronless Pre Mrnas 1.0e+00
## Processing Of Smdt1 1.0e+00
## Processive Synthesis On The C Strand Of The Telomere 1.0e+00
## Processive Synthesis On The Lagging Strand 1.0e+00
## Prolactin Receptor Signaling 1.0e+00
## Prolonged Erk Activation Events 1.0e+00
## Propionyl Coa Catabolism 1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor 1.0e+00
## Prostanoid Ligand Receptors 1.0e+00
## Protein Localization 1.0e+00
## Protein Methylation 1.0e+00
## Protein Protein Interactions At Synapses 1.0e+00
## Protein Repair 1.0e+00
## Protein Ubiquitination 1.0e+00
## Proton Coupled Monocarboxylate Transport 1.0e+00
## Pten Regulation 1.0e+00
## Ptk6 Expression 1.0e+00
## Ptk6 Regulates Cell Cycle 1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing 1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 1.0e+00
## Purine Catabolism 1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis 1.0e+00
## Purine Salvage 1.0e+00
## Pyrimidine Catabolism 1.0e+00
## Pyrimidine Salvage 1.0e+00
## Pyruvate Metabolism 1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle 1.0e+00
## Ra Biosynthesis Pathway 1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs 1.0e+00
## Rab Geranylgeranylation 1.0e+00
## Rab Regulation Of Trafficking 1.0e+00
## Raf Activation 1.0e+00
## Rap1 Signalling 1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 1.0e+00
## Ras Processing 1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway 1.0e+00
## Receptor Mediated Mitophagy 1.0e+00
## Receptor Type Tyrosine Protein Phosphatases 1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex 1.0e+00
## Recycling Of Bile Acids And Salts 1.0e+00
## Recycling Of Eif2 Gdp 1.0e+00
## Recycling Pathway Of L1 1.0e+00
## Reduction Of Cytosolic Ca Levels 1.0e+00
## Reelin Signalling Pathway 1.0e+00
## Regulated Proteolysis Of P75ntr 1.0e+00
## Regulation By C Flip 1.0e+00
## Regulation Of Bach1 Activity 1.0e+00
## Regulation Of Beta Cell Development 1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 1.0e+00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 1.0e+00
## Regulation Of Expression Of Slits And Robos 1.0e+00
## Regulation Of Foxo Transcriptional Activity By Acetylation 1.0e+00
## Regulation Of Fzd By Ubiquitination 1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor 1.0e+00
## Regulation Of Gene Expression In Beta Cells 1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 1.0e+00
## Regulation Of Hmox1 Expression And Activity 1.0e+00
## Regulation Of Hsf1 Mediated Heat Shock Response 1.0e+00
## Regulation Of Ifna Signaling 1.0e+00
## Regulation Of Ifng Signaling 1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna 1.0e+00
## Regulation Of Insulin Secretion 1.0e+00
## Regulation Of Kit Signaling 1.0e+00
## Regulation Of Lipid Metabolism By Pparalpha 1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors 1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 1.0e+00
## Regulation Of Pten Gene Transcription 1.0e+00
## Regulation Of Pten Localization 1.0e+00
## Regulation Of Pten Mrna Translation 1.0e+00
## Regulation Of Pten Stability And Activity 1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 1.0e+00
## Regulation Of Ras By Gaps 1.0e+00
## Regulation Of Runx1 Expression And Activity 1.0e+00
## Regulation Of Runx3 Expression And Activity 1.0e+00
## Regulation Of Signaling By Cbl 1.0e+00
## Regulation Of Signaling By Nodal 1.0e+00
## Regulation Of Tp53 Activity Through Acetylation 1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors 1.0e+00
## Regulation Of Tp53 Activity Through Methylation 1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation 1.0e+00
## Relaxin Receptors 1.0e+00
## Release Of Apoptotic Factors From The Mitochondria 1.0e+00
## Release Of Hh Np From The Secreting Cell 1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 1.0e+00
## Repression Of Wnt Target Genes 1.0e+00
## Reproduction 1.0e+00
## Resolution Of Abasic Sites Ap Sites 1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 1.0e+00
## Resolution Of D Loop Structures 1.0e+00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 1.0e+00
## Respiratory Electron Transport 1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency 1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 1.0e+00
## Response Of Mtb To Phagocytosis 1.0e+00
## Response To Metal Ions 1.0e+00
## Ret Signaling 1.0e+00
## Retinoid Cycle Disease Events 1.0e+00
## Retrograde Neurotrophin Signalling 1.0e+00
## Reversible Hydration Of Carbon Dioxide 1.0e+00
## Rho Gtpase Effectors 1.0e+00
## Rho Gtpases Activate Cit 1.0e+00
## Rho Gtpases Activate Formins 1.0e+00
## Rho Gtpases Activate Iqgaps 1.0e+00
## Rho Gtpases Activate Ktn1 1.0e+00
## Rho Gtpases Activate Nadph Oxidases 1.0e+00
## Rho Gtpases Activate Paks 1.0e+00
## Rho Gtpases Activate Pkns 1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins 1.0e+00
## Rho Gtpases Activate Rocks 1.0e+00
## Rho Gtpases Activate Wasps And Waves 1.0e+00
## Rhobtb Gtpase Cycle 1.0e+00
## Rhobtb1 Gtpase Cycle 1.0e+00
## Rhobtb2 Gtpase Cycle 1.0e+00
## Rhobtb3 Atpase Cycle 1.0e+00
## Rhot1 Gtpase Cycle 1.0e+00
## Rhou Gtpase Cycle 1.0e+00
## Rhov Gtpase Cycle 1.0e+00
## Rna Polymerase I Promoter Escape 1.0e+00
## Rna Polymerase I Transcription 1.0e+00
## Rna Polymerase I Transcription Initiation 1.0e+00
## Rna Polymerase I Transcription Termination 1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes 1.0e+00
## Rna Polymerase Ii Transcription Termination 1.0e+00
## Rna Polymerase Iii Chain Elongation 1.0e+00
## Rna Polymerase Iii Transcription 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Termination 1.0e+00
## Rnd1 Gtpase Cycle 1.0e+00
## Rnd2 Gtpase Cycle 1.0e+00
## Rnd3 Gtpase Cycle 1.0e+00
## Robo Receptors Bind Akap5 1.0e+00
## Role Of Abl In Robo Slit Signaling 1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization 1.0e+00
## Role Of Phospholipids In Phagocytosis 1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling 1.0e+00
## Rora Activates Gene Expression 1.0e+00
## Ros And Rns Production In Phagocytes 1.0e+00
## Rrna Modification In The Mitochondrion 1.0e+00
## Rrna Modification In The Nucleus And Cytosol 1.0e+00
## Rrna Processing 1.0e+00
## Rrna Processing In The Mitochondrion 1.0e+00
## Rsk Activation 1.0e+00
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription 1.0e+00
## Runx1 Regulates Expression Of Components Of Tight Junctions 1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription 1.0e+00
## Runx3 Regulates Cdkn1a Transcription 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration 1.0e+00
## Runx3 Regulates Notch Signaling 1.0e+00
## Runx3 Regulates P14 Arf 1.0e+00
## Runx3 Regulates Wnt Signaling 1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription 1.0e+00
## S Phase 1.0e+00
## Sars Cov 1 Genome Replication And Transcription 1.0e+00
## Sars Cov 1 Infection 1.0e+00
## Sars Cov 2 Infection 1.0e+00
## Scavenging By Class A Receptors 1.0e+00
## Scavenging By Class B Receptors 1.0e+00
## Scavenging By Class F Receptors 1.0e+00
## Scavenging Of Heme From Plasma 1.0e+00
## Scf Skp2 Mediated Degradation Of P27 P21 1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 1.0e+00
## Selective Autophagy 1.0e+00
## Selenoamino Acid Metabolism 1.0e+00
## Sema3a Pak Dependent Axon Repulsion 1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 1.0e+00
## Sema4d In Semaphorin Signaling 1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse 1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 1.0e+00
## Semaphorin Interactions 1.0e+00
## Sensing Of Dna Double Strand Breaks 1.0e+00
## Sensory Perception 1.0e+00
## Sensory Processing Of Sound 1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 1.0e+00
## Separation Of Sister Chromatids 1.0e+00
## Serine Biosynthesis 1.0e+00
## Serotonin And Melatonin Biosynthesis 1.0e+00
## Serotonin Neurotransmitter Release Cycle 1.0e+00
## Serotonin Receptors 1.0e+00
## Shc Mediated Cascade Fgfr1 1.0e+00
## Shc Mediated Cascade Fgfr3 1.0e+00
## Shc Mediated Cascade Fgfr4 1.0e+00
## Shc Related Events Triggered By Igf1r 1.0e+00
## Shc1 Events In Erbb4 Signaling 1.0e+00
## Signal Amplification 1.0e+00
## Signal Attenuation 1.0e+00
## Signal Regulatory Protein Family Interactions 1.0e+00
## Signaling By Activin 1.0e+00
## Signaling By Bmp 1.0e+00
## Signaling By Braf And Raf Fusions 1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants 1.0e+00
## Signaling By Erythropoietin 1.0e+00
## Signaling By Fgfr 1.0e+00
## Signaling By Fgfr1 1.0e+00
## Signaling By Fgfr2 1.0e+00
## Signaling By Fgfr2 Iiia Tm 1.0e+00
## Signaling By Fgfr2 In Disease 1.0e+00
## Signaling By Fgfr3 1.0e+00
## Signaling By Fgfr3 Fusions In Cancer 1.0e+00
## Signaling By Fgfr4 1.0e+00
## Signaling By Fgfr4 In Disease 1.0e+00
## Signaling By Flt3 Fusion Proteins 1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants 1.0e+00
## Signaling By Hedgehog 1.0e+00
## Signaling By Hippo 1.0e+00
## Signaling By Lrp5 Mutants 1.0e+00
## Signaling By Mapk Mutants 1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 1.0e+00
## Signaling By Moderate Kinase Activity Braf Mutants 1.0e+00
## Signaling By Mras Complex Mutants 1.0e+00
## Signaling By Mst1 1.0e+00
## Signaling By Nodal 1.0e+00
## Signaling By Notch1 1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 Pest Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 1.0e+00
## Signaling By Notch4 1.0e+00
## Signaling By Ntrk2 Trkb 1.0e+00
## Signaling By Ntrk3 Trkc 1.0e+00
## Signaling By Retinoic Acid 1.0e+00
## Signaling By Rnf43 Mutants 1.0e+00
## Signaling By Robo Receptors 1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer 1.0e+00
## Signaling By Wnt In Cancer 1.0e+00
## Signalling To Erks 1.0e+00
## Signalling To P38 Via Rit And Rin 1.0e+00
## Signalling To Ras 1.0e+00
## Sirt1 Negatively Regulates Rrna Expression 1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 1.0e+00
## Slc Mediated Transmembrane Transport 1.0e+00
## Slc Transporter Disorders 1.0e+00
## Smac Xiap Regulated Apoptotic Response 1.0e+00
## Small Interfering Rna Sirna Biogenesis 1.0e+00
## Smooth Muscle Contraction 1.0e+00
## Snrnp Assembly 1.0e+00
## Sodium Calcium Exchangers 1.0e+00
## Sodium Coupled Phosphate Cotransporters 1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 1.0e+00
## Sodium Proton Exchangers 1.0e+00
## Sos Mediated Signalling 1.0e+00
## Sperm Motility And Taxes 1.0e+00
## Sphingolipid De Novo Biosynthesis 1.0e+00
## Sphingolipid Metabolism 1.0e+00
## Spry Regulation Of Fgf Signaling 1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane 1.0e+00
## Stabilization Of P53 1.0e+00
## Stat5 Activation 1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants 1.0e+00
## Striated Muscle Contraction 1.0e+00
## Sulfide Oxidation To Sulfate 1.0e+00
## Sulfur Amino Acid Metabolism 1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1 1.0e+00
## Sumo Is Proteolytically Processed 1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 1.0e+00
## Sumoylation Of Chromatin Organization Proteins 1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins 1.0e+00
## Sumoylation Of Dna Replication Proteins 1.0e+00
## Sumoylation Of Immune Response Proteins 1.0e+00
## Sumoylation Of Intracellular Receptors 1.0e+00
## Sumoylation Of Rna Binding Proteins 1.0e+00
## Sumoylation Of Sumoylation Proteins 1.0e+00
## Sumoylation Of Transcription Factors 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins 1.0e+00
## Suppression Of Apoptosis 1.0e+00
## Suppression Of Phagosomal Maturation 1.0e+00
## Surfactant Metabolism 1.0e+00
## Switching Of Origins To A Post Replicative State 1.0e+00
## Synaptic Adhesion Like Molecules 1.0e+00
## Syndecan Interactions 1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 1.0e+00
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids 1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 1.0e+00
## Synthesis Of Bile Acids And Bile Salts 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 1.0e+00
## Synthesis Of Diphthamide Eef2 1.0e+00
## Synthesis Of Dolichyl Phosphate 1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 1.0e+00
## Synthesis Of Gdp Mannose 1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi 1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol 1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol 1.0e+00
## Synthesis Of Ketone Bodies 1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex 1.0e+00
## Synthesis Of Lipoxins Lx 1.0e+00
## Synthesis Of Pa 1.0e+00
## Synthesis Of Pc 1.0e+00
## Synthesis Of Pe 1.0e+00
## Synthesis Of Pg 1.0e+00
## Synthesis Of Pi 1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Er Membrane 1.0e+00
## Synthesis Of Pips At The Golgi Membrane 1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Plasma Membrane 1.0e+00
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol 1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine 1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas 1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe 1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin 1.0e+00
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 1.0e+00
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 1.0e+00
## Tachykinin Receptors Bind Tachykinins 1.0e+00
## Tbc Rabgaps 1.0e+00
## Telomere C Strand Lagging Strand Synthesis 1.0e+00
## Telomere C Strand Synthesis Initiation 1.0e+00
## Telomere Extension By Telomerase 1.0e+00
## Telomere Maintenance 1.0e+00
## Terminal Pathway Of Complement 1.0e+00
## Termination Of Translesion Dna Synthesis 1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 1.0e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 1.0e+00
## Tgf Beta Receptor Signaling Activates Smads 1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 1.0e+00
## The Activation Of Arylsulfatases 1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport 1.0e+00
## The Fatty Acid Cycling Model 1.0e+00
## The Phototransduction Cascade 1.0e+00
## The Retinoid Cycle In Cones Daylight Vision 1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 1.0e+00
## Thrombin Signalling Through Proteinase Activated Receptors Pars 1.0e+00
## Thromboxane Signalling Through Tp Receptor 1.0e+00
## Thyroxine Biosynthesis 1.0e+00
## Tie2 Signaling 1.0e+00
## Tight Junction Interactions 1.0e+00
## Tnfr1 Induced Proapoptotic Signaling 1.0e+00
## Tnfr1 Mediated Ceramide Production 1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd 1.0e+00
## Tp53 Regulates Metabolic Genes 1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Traf3 Dependent Irf Activation Pathway 1.0e+00
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 1.0e+00
## Traf6 Mediated Irf7 Activation 1.0e+00
## Trafficking Of Ampa Receptors 1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors 1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium 1.0e+00
## Trail Signaling 1.0e+00
## Trans Golgi Network Vesicle Budding 1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner 1.0e+00
## Transcription Of E2f Targets Under Negative Control By Dream Complex 1.0e+00
## Transcription Of The Hiv Genome 1.0e+00
## Transcriptional Regulation By E2f6 1.0e+00
## Transcriptional Regulation By Runx3 1.0e+00
## Transcriptional Regulation By Small Rnas 1.0e+00
## Transcriptional Regulation Of Testis Differentiation 1.0e+00
## Transcriptional Regulation Of White Adipocyte Differentiation 1.0e+00
## Transferrin Endocytosis And Recycling 1.0e+00
## Translation 1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 1.0e+00
## Translation Of Sars Cov 1 Structural Proteins 1.0e+00
## Translation Of Sars Cov 2 Structural Proteins 1.0e+00
## Translesion Synthesis By Polh 1.0e+00
## Translesion Synthesis By Polk 1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1.0e+00
## Transport And Synthesis Of Paps 1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 1.0e+00
## Transport Of Connexons To The Plasma Membrane 1.0e+00
## Transport Of Fatty Acids 1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts 1.0e+00
## Transport Of Mature Transcript To Cytoplasm 1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 1.0e+00
## Transport Of Nucleotide Sugars 1.0e+00
## Transport Of Organic Anions 1.0e+00
## Transport Of The Slbp Dependant Mature Mrna 1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules 1.0e+00
## Trif Mediated Programmed Cell Death 1.0e+00
## Triglyceride Biosynthesis 1.0e+00
## Triglyceride Catabolism 1.0e+00
## Triglyceride Metabolism 1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 1.0e+00
## Trna Aminoacylation 1.0e+00
## Trna Modification In The Mitochondrion 1.0e+00
## Trna Modification In The Nucleus And Cytosol 1.0e+00
## Trna Processing 1.0e+00
## Trna Processing In The Mitochondrion 1.0e+00
## Trna Processing In The Nucleus 1.0e+00
## Trp Channels 1.0e+00
## Tryptophan Catabolism 1.0e+00
## Type I Hemidesmosome Assembly 1.0e+00
## Tyrosine Catabolism 1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins 1.0e+00
## Ubiquinol Biosynthesis 1.0e+00
## Uch Proteinases 1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 1.0e+00
## Unwinding Of Dna 1.0e+00
## Uptake And Actions Of Bacterial Toxins 1.0e+00
## Uptake And Function Of Anthrax Toxins 1.0e+00
## Uptake And Function Of Diphtheria Toxin 1.0e+00
## Urea Cycle 1.0e+00
## Vasopressin Like Receptors 1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 1.0e+00
## Vegf Ligand Receptor Interactions 1.0e+00
## Vegfr2 Mediated Cell Proliferation 1.0e+00
## Viral Messenger Rna Synthesis 1.0e+00
## Visual Phototransduction 1.0e+00
## Vitamin B1 Thiamin Metabolism 1.0e+00
## Vitamin B2 Riboflavin Metabolism 1.0e+00
## Vitamin B5 Pantothenate Metabolism 1.0e+00
## Vitamin C Ascorbate Metabolism 1.0e+00
## Vitamin D Calciferol Metabolism 1.0e+00
## Vitamins 1.0e+00
## Vldl Assembly 1.0e+00
## Vldl Clearance 1.0e+00
## Voltage Gated Potassium Channels 1.0e+00
## Vxpx Cargo Targeting To Cilium 1.0e+00
## Wax And Plasmalogen Biosynthesis 1.0e+00
## Wnt Mediated Activation Of Dvl 1.0e+00
## Xenobiotics 1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family 1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family 1.0e+00
## Zinc Transporters 1.0e+00
## fdr
## Cytokine Signaling In Immune System 6.2e-22
## Interleukin 10 Signaling 6.2e-20
## Signaling By Interleukins 1.0e-17
## Innate Immune System 5.3e-15
## Interleukin 4 And Interleukin 13 Signaling 3.2e-13
## Chemokine Receptors Bind Chemokines 2.7e-09
## Signaling By Gpcr 6.2e-06
## Peptide Ligand Binding Receptors 3.8e-05
## Neutrophil Degranulation 4.6e-05
## Leishmania Infection 7.7e-05
## Regulated Necrosis 1.2e-04
## Purinergic Signaling In Leishmaniasis Infection 1.6e-04
## Pyroptosis 1.8e-04
## Gpcr Ligand Binding 1.9e-04
## Interleukin 1 Processing 2.6e-04
## Extra Nuclear Estrogen Signaling 3.7e-04
## Interleukin 1 Family Signaling 4.7e-04
## G Alpha I Signalling Events 5.3e-04
## Adaptive Immune System 6.8e-04
## Class A 1 Rhodopsin Like Receptors 6.8e-04
## Toll Like Receptor Cascades 6.8e-04
## Tnfr2 Non Canonical Nf Kb Pathway 1.2e-03
## Pi3k Akt Signaling In Cancer 1.3e-03
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 1.3e-03
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 1.5e-03
## Negative Regulation Of The Pi3k Akt Network 1.7e-03
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 1.7e-03
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 1.7e-03
## Inflammasomes 2.0e-03
## Programmed Cell Death 2.5e-03
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 2.9e-03
## Costimulation By The Cd28 Family 4.2e-03
## Constitutive Signaling By Aberrant Pi3k In Cancer 4.9e-03
## Tnfs Bind Their Physiological Receptors 4.8e-03
## Infectious Disease 5.8e-03
## Activation Of Matrix Metalloproteinases 6.6e-03
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 8.6e-03
## Toll Like Receptor 9 Tlr9 Cascade 9.0e-03
## Myd88 Independent Tlr4 Cascade 9.9e-03
## Cd163 Mediating An Anti Inflammatory Response 1.3e-02
## Egfr Transactivation By Gastrin 1.3e-02
## Extracellular Matrix Organization 1.3e-02
## Dap12 Interactions 1.4e-02
## Intracellular Signaling By Second Messengers 1.4e-02
## Mapk3 Erk1 Activation 1.5e-02
## Senescence Associated Secretory Phenotype Sasp 1.5e-02
## Post Translational Protein Modification 1.5e-02
## Complement Cascade 1.5e-02
## Interleukin 6 Signaling 1.7e-02
## Cd28 Dependent Vav1 Pathway 2.0e-02
## Esr Mediated Signaling 2.0e-02
## Trafficking And Processing Of Endosomal Tlr 2.2e-02
## Interleukin 12 Family Signaling 2.3e-02
## Signaling By Receptor Tyrosine Kinases 2.9e-02
## Collagen Degradation 3.1e-02
## The Nlrp3 Inflammasome 3.2e-02
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 3.9e-02
## Interleukin 17 Signaling 3.9e-02
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 4.3e-02
## Ctla4 Inhibitory Signaling 5.0e-02
## Interleukin 37 Signaling 5.0e-02
## Signal Transduction By L1 5.0e-02
## Cd28 Dependent Pi3k Akt Signaling 5.4e-02
## Raf Independent Mapk1 3 Activation 5.8e-02
## Signaling By Nuclear Receptors 5.8e-02
## Interleukin 6 Family Signaling 6.1e-02
## Interferon Gamma Signaling 7.3e-02
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 7.5e-02
## Cellular Senescence 7.8e-02
## Pd 1 Signaling 7.8e-02
## Toll Like Receptor Tlr1 Tlr2 Cascade 9.2e-02
## Diseases Of Immune System 9.2e-02
## Mapk Targets Nuclear Events Mediated By Map Kinases 9.2e-02
## Cargo Recognition For Clathrin Mediated Endocytosis 9.4e-02
## Antigen Processing Cross Presentation 9.4e-02
## Perk Regulates Gene Expression 9.4e-02
## Cd28 Co Stimulation 9.9e-02
## Nod1 2 Signaling Pathway 1.2e-01
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 1.3e-01
## Ngf Stimulated Transcription 1.3e-01
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 1.4e-01
## Signaling By Scf Kit 1.6e-01
## Interleukin 2 Family Signaling 1.6e-01
## Signaling By Ntrks 1.6e-01
## Interleukin 12 Signaling 1.8e-01
## Degradation Of The Extracellular Matrix 1.8e-01
## Death Receptor Signalling 1.8e-01
## Clathrin Mediated Endocytosis 1.9e-01
## Eph Ephrin Mediated Repulsion Of Cells 2.0e-01
## Signaling By Ptk6 2.2e-01
## Deubiquitination 2.5e-01
## G2 M Dna Replication Checkpoint 2.6e-01
## Mecp2 Regulates Transcription Factors 2.6e-01
## Runx2 Regulates Chondrocyte Maturation 2.6e-01
## Assembly Of Collagen Fibrils And Other Multimeric Structures 2.6e-01
## Cytosolic Sensors Of Pathogen Associated Dna 2.7e-01
## Nuclear Events Kinase And Transcription Factor Activation 2.6e-01
## Clec7a Inflammasome Pathway 2.9e-01
## Fibronectin Matrix Formation 2.9e-01
## Hemostasis 2.9e-01
## Mapk Family Signaling Cascades 2.9e-01
## Phosphorylation Of Emi1 2.9e-01
## Ptk6 Promotes Hif1a Stabilization 2.9e-01
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 2.9e-01
## Circadian Clock 3.0e-01
## Rhob Gtpase Cycle 3.0e-01
## Activation Of Nima Kinases Nek9 Nek6 Nek7 3.2e-01
## Creb Phosphorylation 3.2e-01
## Rhoc Gtpase Cycle 3.2e-01
## Rhog Gtpase Cycle 3.2e-01
## Cell Surface Interactions At The Vascular Wall 3.2e-01
## Cellular Responses To External Stimuli 3.2e-01
## Activation Of C3 And C5 3.4e-01
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 3.4e-01
## Interferon Signaling 3.5e-01
## Interleukin 18 Signaling 3.4e-01
## Mecp2 Regulates Transcription Of Neuronal Ligands 3.4e-01
## Runx2 Regulates Genes Involved In Cell Migration 3.4e-01
## Rna Polymerase Ii Transcription 3.5e-01
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 3.5e-01
## E2f Enabled Inhibition Of Pre Replication Complex Formation 3.5e-01
## Egfr Interacts With Phospholipase C Gamma 3.5e-01
## Interleukin 23 Signaling 3.5e-01
## Interleukin 9 Signaling 3.5e-01
## Mapk1 Erk2 Activation 3.5e-01
## Fceri Mediated Mapk Activation 3.7e-01
## G Alpha Q Signalling Events 3.7e-01
## Activation Of The Ap 1 Family Of Transcription Factors 3.7e-01
## Akt Phosphorylates Targets In The Nucleus 3.7e-01
## Camk Iv Mediated Phosphorylation Of Creb 3.7e-01
## Interleukin 21 Signaling 3.7e-01
## Mastl Facilitates Mitotic Progression 3.7e-01
## P75ntr Regulates Axonogenesis 3.7e-01
## Rac2 Gtpase Cycle 3.7e-01
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 3.8e-01
## Collagen Formation 3.8e-01
## Transcriptional Regulation Of Granulopoiesis 3.8e-01
## Eph Ephrin Signaling 3.8e-01
## Unfolded Protein Response Upr 3.8e-01
## Condensation Of Prometaphase Chromosomes 3.8e-01
## Endosomal Vacuolar Pathway 3.8e-01
## Interleukin 27 Signaling 3.8e-01
## Signaling By Leptin 3.8e-01
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 3.8e-01
## Class B 2 Secretin Family Receptors 3.8e-01
## Fcgr3a Mediated Il10 Synthesis 3.8e-01
## Rac3 Gtpase Cycle 3.8e-01
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 3.8e-01
## Interleukin 35 Signalling 3.8e-01
## Killing Mechanisms 3.8e-01
## Notch2 Intracellular Domain Regulates Transcription 3.8e-01
## P75 Ntr Receptor Mediated Signalling 3.8e-01
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 3.8e-01
## Tandem Pore Domain Potassium Channels 3.8e-01
## Ticam1 Dependent Activation Of Irf3 Irf7 3.8e-01
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 3.8e-01
## Vldlr Internalisation And Degradation 3.8e-01
## Advanced Glycosylation Endproduct Receptor Signaling 3.8e-01
## Apoptosis Induced Dna Fragmentation 3.8e-01
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 3.8e-01
## Copi Mediated Anterograde Transport 3.8e-01
## Dissolution Of Fibrin Clot 3.8e-01
## Erbb2 Activates Ptk6 Signaling 3.8e-01
## Interleukin 1 Signaling 3.8e-01
## Irf3 Mediated Induction Of Type I Ifn 3.8e-01
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 3.8e-01
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 3.8e-01
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 3.8e-01
## Golgi Cisternae Pericentriolar Stack Reorganization 4.0e-01
## Interleukin 15 Signaling 4.0e-01
## Shc1 Events In Egfr Signaling 4.0e-01
## Constitutive Signaling By Egfrviii 4.1e-01
## Depolymerisation Of The Nuclear Lamina 4.1e-01
## Erbb2 Regulates Cell Motility 4.1e-01
## Membrane Trafficking 4.1e-01
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 4.1e-01
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 4.1e-01
## Wnt5a Dependent Internalization Of Fzd4 4.1e-01
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 4.1e-01
## Platelet Activation Signaling And Aggregation 4.2e-01
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 4.2e-01
## Grb2 Events In Erbb2 Signaling 4.2e-01
## Pi3k Events In Erbb2 Signaling 4.2e-01
## Signaling By Erbb2 Ecd Mutants 4.2e-01
## Sting Mediated Induction Of Host Immune Responses 4.2e-01
## Sumoylation Of Dna Methylation Proteins 4.2e-01
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 4.2e-01
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 4.4e-01
## Gab1 Signalosome 4.4e-01
## Rip Mediated Nfkb Activation Via Zbp1 4.4e-01
## Transcriptional Regulation By Runx2 4.5e-01
## Irak4 Deficiency Tlr2 4 4.5e-01
## L1cam Interactions 4.5e-01
## Mecp2 Regulates Neuronal Receptors And Channels 4.5e-01
## Signaling By Cytosolic Fgfr1 Fusion Mutants 4.5e-01
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 4.5e-01
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 4.6e-01
## Cytoprotection By Hmox1 4.6e-01
## Initiation Of Nuclear Envelope Ne Reformation 4.6e-01
## Ldl Clearance 4.6e-01
## Phase 4 Resting Membrane Potential 4.6e-01
## Phosphorylation Of The Apc C 4.7e-01
## Pka Mediated Phosphorylation Of Creb 4.7e-01
## Signaling By Kit In Disease 4.7e-01
## Signaling By Pdgfr In Disease 4.7e-01
## Regulation Of Tlr By Endogenous Ligand 4.9e-01
## Zbp1 Dai Mediated Induction Of Type I Ifns 4.9e-01
## Response To Elevated Platelet Cytosolic Ca2 4.9e-01
## Adora2b Mediated Anti Inflammatory Cytokines Production 5.0e-01
## E2f Mediated Regulation Of Dna Replication 5.0e-01
## Shc1 Events In Erbb2 Signaling 5.0e-01
## Hcmv Early Events 5.2e-01
## Ikk Complex Recruitment Mediated By Rip1 5.2e-01
## Termination Of O Glycan Biosynthesis 5.2e-01
## Asparagine N Linked Glycosylation 5.2e-01
## C Type Lectin Receptors Clrs 5.2e-01
## Apc C Cdc20 Mediated Degradation Of Cyclin B 5.3e-01
## Growth Hormone Receptor Signaling 5.3e-01
## Runx2 Regulates Osteoblast Differentiation 5.3e-01
## Traf6 Mediated Nf Kb Activation 5.3e-01
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 5.3e-01
## Cyclin A B1 B2 Associated Events During G2 M Transition 5.3e-01
## Inactivation Of Csf3 G Csf Signaling 5.3e-01
## Notch3 Activation And Transmission Of Signal To The Nucleus 5.3e-01
## Signaling By Egfr In Cancer 5.3e-01
## Vesicle Mediated Transport 5.3e-01
## Constitutive Signaling By Akt1 E17k In Cancer 5.4e-01
## Dectin 2 Family 5.4e-01
## Interleukin 20 Family Signaling 5.4e-01
## Signaling By Erbb2 In Cancer 5.4e-01
## Wnt Ligand Biogenesis And Trafficking 5.4e-01
## Rhoa Gtpase Cycle 5.4e-01
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 5.5e-01
## G0 And Early G1 5.5e-01
## Interleukin Receptor Shc Signaling 5.5e-01
## Vegfr2 Mediated Vascular Permeability 5.5e-01
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 5.7e-01
## Er To Golgi Anterograde Transport 5.7e-01
## Dap12 Signaling 5.7e-01
## Downregulation Of Erbb2 Signaling 5.7e-01
## Downstream Signal Transduction 5.7e-01
## G1 S Specific Transcription 5.7e-01
## Ripk1 Mediated Regulated Necrosis 5.7e-01
## Cdc42 Gtpase Cycle 5.8e-01
## Cellular Response To Chemical Stress 5.8e-01
## Signaling By Csf3 G Csf 5.8e-01
## Tnfr1 Induced Nfkappab Signaling Pathway 5.8e-01
## Hcmv Infection 5.9e-01
## Egfr Downregulation 5.9e-01
## Fgfr1 Mutant Receptor Activation 5.9e-01
## Runx2 Regulates Bone Development 5.9e-01
## Transcriptional Regulation Of Pluripotent Stem Cells 5.9e-01
## Regulation Of Mecp2 Expression And Activity 6.0e-01
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 6.0e-01
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 6.0e-01
## Cargo Concentration In The Er 6.1e-01
## Plasma Lipoprotein Clearance 6.1e-01
## Sialic Acid Metabolism 6.1e-01
## Signaling By Notch2 6.1e-01
## Gpvi Mediated Activation Cascade 6.4e-01
## Regulation Of Tnfr1 Signaling 6.4e-01
## Transcriptional Regulation By Tp53 6.4e-01
## Apoptosis 6.5e-01
## Association Of Tric Cct With Target Proteins During Biosynthesis 6.6e-01
## Ca Dependent Events 6.5e-01
## Class I Mhc Mediated Antigen Processing Presentation 6.6e-01
## Fc Epsilon Receptor Fceri Signaling 6.6e-01
## Generation Of Second Messenger Molecules 6.6e-01
## Interleukin 7 Signaling 6.5e-01
## Metalloprotease Dubs 6.5e-01
## Nervous System Development 6.5e-01
## Nuclear Pore Complex Npc Disassembly 6.5e-01
## Ovarian Tumor Domain Proteases 6.6e-01
## Rac1 Gtpase Cycle 6.6e-01
## Regulation Of Tp53 Expression And Degradation 6.5e-01
## Rhoh Gtpase Cycle 6.5e-01
## Signaling By Fgfr1 In Disease 6.6e-01
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 6.6e-01
## Transport To The Golgi And Subsequent Modification 6.6e-01
## Beta Defensins 6.9e-01
## Dag And Ip3 Signaling 6.8e-01
## Rhof Gtpase Cycle 6.9e-01
## Sumoylation 6.6e-01
## Transcriptional Regulation By Ventx 6.8e-01
## Sumoylation Of Transcription Cofactors 7.1e-01
## Tnf Signaling 7.1e-01
## Tp53 Regulates Transcription Of Cell Death Genes 7.1e-01
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 7.1e-01
## Heme Signaling 7.7e-01
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 7.7e-01
## Irs Mediated Signalling 7.7e-01
## Retrograde Transport At The Trans Golgi Network 7.7e-01
## Signaling By Egfr 7.8e-01
## Signaling By Erbb2 7.8e-01
## Signaling By Notch3 7.7e-01
## Tp53 Regulates Transcription Of Cell Cycle Genes 7.7e-01
## Apoptotic Execution Phase 8.0e-01
## Defensins 8.0e-01
## Nuclear Envelope Breakdown 8.1e-01
## Rhod Gtpase Cycle 7.9e-01
## Ub Specific Processing Proteases 8.1e-01
## G Protein Mediated Events 8.2e-01
## Insulin Receptor Signalling Cascade 8.2e-01
## Intrinsic Pathway For Apoptosis 8.2e-01
## Rhoj Gtpase Cycle 8.2e-01
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 8.2e-01
## Transcriptional Activation Of Mitochondrial Biogenesis 8.2e-01
## Nrage Signals Death Through Jnk 8.7e-01
## Rhoq Gtpase Cycle 8.7e-01
## Signaling By Erbb4 8.6e-01
## Signaling By Pdgf 8.6e-01
## Transcriptional Regulation By Runx1 8.8e-01
## Asymmetric Localization Of Pcp Proteins 9.0e-01
## Ca2 Pathway 9.0e-01
## Dna Methylation 9.1e-01
## Ncam Signaling For Neurite Out Growth 9.0e-01
## O Linked Glycosylation Of Mucins 9.0e-01
## Signaling By Fgfr In Disease 9.0e-01
## Signaling By Notch 9.0e-01
## Synthesis Of Substrates In N Glycan Biosythesis 9.0e-01
## Tp53 Regulates Transcription Of Dna Repair Genes 9.0e-01
## Transcriptional Regulation By Mecp2 9.0e-01
## Copii Mediated Vesicle Transport 9.5e-01
## Diseases Associated With O Glycosylation Of Proteins 9.5e-01
## Aurka Activation By Tpx2 9.9e-01
## Interferon Alpha Beta Signaling 9.9e-01
## Plasma Lipoprotein Assembly Remodeling And Clearance 9.8e-01
## Prc2 Methylates Histones And Dna 9.9e-01
## Regulation Of Runx2 Expression And Activity 9.9e-01
## Signaling By Tgf Beta Receptor Complex 9.9e-01
## Cell Death Signalling Via Nrage Nrif And Nade 1.0e+00
## Condensation Of Prophase Chromosomes 1.0e+00
## Ecm Proteoglycans 1.0e+00
## Nuclear Envelope Ne Reassembly 1.0e+00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1.0e+00
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 1.0e+00
## G Alpha 12 13 Signalling Events 1.0e+00
## Initial Triggering Of Complement 1.0e+00
## Potential Therapeutics For Sars 1.0e+00
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1.0e+00
## Rmts Methylate Histone Arginines 1.0e+00
## Signaling By Insulin Receptor 1.0e+00
## Signaling By Met 1.0e+00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1.0e+00
## Integrin Cell Surface Interactions 1.0e+00
## Organelle Biogenesis And Maintenance 1.0e+00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1.0e+00
## Apc C Mediated Degradation Of Cell Cycle Proteins 1.0e+00
## Fceri Mediated Ca 2 Mobilization 1.0e+00
## Opioid Signalling 1.0e+00
## Regulation Of Plk1 Activity At G2 M Transition 1.0e+00
## Activation Of Nmda Receptors And Postsynaptic Events 1.0e+00
## Mapk6 Mapk4 Signaling 1.0e+00
## Mitochondrial Biogenesis 1.0e+00
## Pcp Ce Pathway 1.0e+00
## Anchoring Of The Basal Body To The Plasma Membrane 1.0e+00
## Antimicrobial Peptides 1.0e+00
## G2 M Dna Damage Checkpoint 1.0e+00
## Protein Folding 1.0e+00
## Recruitment Of Numa To Mitotic Centrosomes 1.0e+00
## Clec7a Dectin 1 Signaling 1.0e+00
## Diseases Of Programmed Cell Death 1.0e+00
## Signaling By Tgfb Family Members 1.0e+00
## Developmental Biology 1.0e+00
## Potassium Channels 1.0e+00
## Signaling By Vegf 1.0e+00
## Stimuli Sensing Channels 1.0e+00
## Amyloid Fiber Formation 1.0e+00
## O Linked Glycosylation 1.0e+00
## Parasite Infection 1.0e+00
## Tcr Signaling 1.0e+00
## Cardiac Conduction 1.0e+00
## Mhc Class Ii Antigen Presentation 1.0e+00
## Oxidative Stress Induced Senescence 1.0e+00
## Resolution Of Sister Chromatid Cohesion 1.0e+00
## Diseases Of Glycosylation 1.0e+00
## Fcgamma Receptor Fcgr Dependent Phagocytosis 1.0e+00
## Mitotic Prophase 1.0e+00
## Beta Catenin Independent Wnt Signaling 1.0e+00
## Epigenetic Regulation Of Gene Expression 1.0e+00
## Estrogen Dependent Gene Expression 1.0e+00
## Mitotic G1 Phase And G1 S Transition 1.0e+00
## Neuronal System 1.0e+00
## Sars Cov Infections 1.0e+00
## Regulation Of Tp53 Activity 1.0e+00
## Rho Gtpase Cycle 1.0e+00
## Signaling By The B Cell Receptor Bcr 1.0e+00
## G2 M Checkpoints 1.0e+00
## Ion Channel Transport 1.0e+00
## Muscle Contraction 1.0e+00
## Cilium Assembly 1.0e+00
## Intra Golgi And Retrograde Golgi To Er Traffic 1.0e+00
## Mitotic G2 G2 M Phases 1.0e+00
## Mitotic Prometaphase 1.0e+00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 1.0e+00
## Mitotic Metaphase And Anaphase 1.0e+00
## Tcf Dependent Signaling In Response To Wnt 1.0e+00
## Diseases Of Metabolism 1.0e+00
## Transmission Across Chemical Synapses 1.0e+00
## Chromatin Modifying Enzymes 1.0e+00
## Cell Cycle Checkpoints 1.0e+00
## Signaling By Wnt 1.0e+00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 1.0e+00
## Transport Of Small Molecules 1.0e+00
## M Phase 1.0e+00
## Cell Cycle Mitotic 1.0e+00
## Cell Cycle 1.0e+00
## 2 Ltr Circle Formation 1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 1.0e+00
## Abacavir Metabolism 1.0e+00
## Abacavir Transmembrane Transport 1.0e+00
## Abacavir Transport And Metabolism 1.0e+00
## Abc Family Proteins Mediated Transport 1.0e+00
## Abc Transporter Disorders 1.0e+00
## Abc Transporters In Lipid Homeostasis 1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 1.0e+00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 1.0e+00
## Acetylcholine Binding And Downstream Events 1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 1.0e+00
## Acetylcholine Neurotransmitter Release Cycle 1.0e+00
## Acetylcholine Regulates Insulin Secretion 1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding 1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus 1.0e+00
## Activated Ntrk2 Signals Through Cdk5 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3 1.0e+00
## Activated Ntrk2 Signals Through Fyn 1.0e+00
## Activated Ntrk2 Signals Through Pi3k 1.0e+00
## Activated Ntrk2 Signals Through Ras 1.0e+00
## Activated Ntrk3 Signals Through Pi3k 1.0e+00
## Activated Ntrk3 Signals Through Ras 1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 1.0e+00
## Activated Tak1 Mediates P38 Mapk Activation 1.0e+00
## Activation Of Ampk Downstream Of Nmdars 1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 1.0e+00
## Activation Of Atr In Response To Replication Stress 1.0e+00
## Activation Of Bad And Translocation To Mitochondria 1.0e+00
## Activation Of Bh3 Only Proteins 1.0e+00
## Activation Of Caspases Through Apoptosome Mediated Cleavage 1.0e+00
## Activation Of Gene Expression By Srebf Srebp 1.0e+00
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding 1.0e+00
## Activation Of Noxa And Translocation To Mitochondria 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 1.0e+00
## Activation Of Puma And Translocation To Mitochondria 1.0e+00
## Activation Of Rac1 1.0e+00
## Activation Of Rac1 Downstream Of Nmdars 1.0e+00
## Activation Of Ras In B Cells 1.0e+00
## Activation Of Smo 1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 1.0e+00
## Activation Of The Phototransduction Cascade 1.0e+00
## Activation Of The Pre Replicative Complex 1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 1.0e+00
## Activation Of Trka Receptors 1.0e+00
## Acyl Chain Remodeling Of Cl 1.0e+00
## Acyl Chain Remodeling Of Dag And Tag 1.0e+00
## Acyl Chain Remodelling Of Pc 1.0e+00
## Acyl Chain Remodelling Of Pe 1.0e+00
## Acyl Chain Remodelling Of Pg 1.0e+00
## Acyl Chain Remodelling Of Pi 1.0e+00
## Acyl Chain Remodelling Of Ps 1.0e+00
## Adenylate Cyclase Activating Pathway 1.0e+00
## Adenylate Cyclase Inhibitory Pathway 1.0e+00
## Adherens Junctions Interactions 1.0e+00
## Adp Signalling Through P2y Purinoceptor 1 1.0e+00
## Adp Signalling Through P2y Purinoceptor 12 1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion 1.0e+00
## Adrenoceptors 1.0e+00
## Aflatoxin Activation And Detoxification 1.0e+00
## Aggrephagy 1.0e+00
## Akt Phosphorylates Targets In The Cytosol 1.0e+00
## Alpha Defensins 1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 1.0e+00
## Alpha Oxidation Of Phytanate 1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway 1.0e+00
## Alternative Complement Activation 1.0e+00
## Amine Ligand Binding Receptors 1.0e+00
## Amino Acid Conjugation 1.0e+00
## Amino Acid Transport Across The Plasma Membrane 1.0e+00
## Amino Acids Regulate Mtorc1 1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity 1.0e+00
## Anchoring Fibril Formation 1.0e+00
## Androgen Biosynthesis 1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation 1.0e+00
## Antiviral Mechanism By Ifn Stimulated Genes 1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a 1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection 1.0e+00
## Apoptotic Cleavage Of Cell Adhesion Proteins 1.0e+00
## Apoptotic Cleavage Of Cellular Proteins 1.0e+00
## Apoptotic Factor Mediated Response 1.0e+00
## Aquaporin Mediated Transport 1.0e+00
## Arachidonate Production From Dag 1.0e+00
## Arachidonic Acid Metabolism 1.0e+00
## Arms Mediated Activation 1.0e+00
## Aryl Hydrocarbon Receptor Signalling 1.0e+00
## Aspartate And Asparagine Metabolism 1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors 1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes 1.0e+00
## Assembly Of The Hiv Virion 1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication 1.0e+00
## Assembly Of The Pre Replicative Complex 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones 1.0e+00
## Attachment And Entry 1.0e+00
## Attachment Of Gpi Anchor To Upar 1.0e+00
## Attenuation Phase 1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 1.0e+00
## Autophagy 1.0e+00
## B Wich Complex Positively Regulates Rrna Expression 1.0e+00
## Base Excision Repair 1.0e+00
## Base Excision Repair Ap Site Formation 1.0e+00
## Basigin Interactions 1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium 1.0e+00
## Beta Catenin Phosphorylation Cascade 1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 1.0e+00
## Beta Oxidation Of Pristanoyl Coa 1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids 1.0e+00
## Bicarbonate Transporters 1.0e+00
## Bile Acid And Bile Salt Metabolism 1.0e+00
## Binding And Uptake Of Ligands By Scavenger Receptors 1.0e+00
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 1.0e+00
## Biological Oxidations 1.0e+00
## Biosynthesis Of Epa Derived Spms 1.0e+00
## Biosynthesis Of Maresin Like Spms 1.0e+00
## Biosynthesis Of Maresins 1.0e+00
## Biosynthesis Of Specialized Proresolving Mediators Spms 1.0e+00
## Biotin Transport And Metabolism 1.0e+00
## Blood Group Systems Biosynthesis 1.0e+00
## Branched Chain Amino Acid Catabolism 1.0e+00
## Budding And Maturation Of Hiv Virion 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 1.0e+00
## Butyrophilin Btn Family Interactions 1.0e+00
## Ca2 Activated K Channels 1.0e+00
## Calcineurin Activates Nfat 1.0e+00
## Calcitonin Like Ligand Receptors 1.0e+00
## Calnexin Calreticulin Cycle 1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin 1.0e+00
## Cargo Trafficking To The Periciliary Membrane 1.0e+00
## Carnitine Metabolism 1.0e+00
## Caspase Activation Via Death Receptors In The Presence Of Ligand 1.0e+00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 1.0e+00
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 1.0e+00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 1.0e+00
## Cation Coupled Chloride Cotransporters 1.0e+00
## Cd209 Dc Sign Signaling 1.0e+00
## Cd22 Mediated Bcr Regulation 1.0e+00
## Cdc6 Association With The Orc Origin Complex 1.0e+00
## Cell Cell Communication 1.0e+00
## Cell Cell Junction Organization 1.0e+00
## Cell Extracellular Matrix Interactions 1.0e+00
## Cell Junction Organization 1.0e+00
## Cellular Hexose Transport 1.0e+00
## Cellular Response To Heat Stress 1.0e+00
## Cellular Response To Hypoxia 1.0e+00
## Cellular Response To Starvation 1.0e+00
## Cgmp Effects 1.0e+00
## Chaperone Mediated Autophagy 1.0e+00
## Chl1 Interactions 1.0e+00
## Cholesterol Biosynthesis 1.0e+00
## Choline Catabolism 1.0e+00
## Chondroitin Sulfate Biosynthesis 1.0e+00
## Chondroitin Sulfate Dermatan Sulfate Metabolism 1.0e+00
## Chrebp Activates Metabolic Gene Expression 1.0e+00
## Chromosome Maintenance 1.0e+00
## Chylomicron Assembly 1.0e+00
## Chylomicron Clearance 1.0e+00
## Chylomicron Remodeling 1.0e+00
## Citric Acid Cycle Tca Cycle 1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors 1.0e+00
## Class I Peroxisomal Membrane Protein Import 1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation 1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 1.0e+00
## Coenzyme A Biosynthesis 1.0e+00
## Cohesin Loading Onto Chromatin 1.0e+00
## Collagen Biosynthesis And Modifying Enzymes 1.0e+00
## Collagen Chain Trimerization 1.0e+00
## Common Pathway Of Fibrin Clot Formation 1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation 1.0e+00
## Complex I Biogenesis 1.0e+00
## Conjugation Of Benzoate With Glycine 1.0e+00
## Constitutive Signaling By Overexpressed Erbb2 1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic 1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic 1.0e+00
## Creatine Metabolism 1.0e+00
## Creation Of C4 And C2 Activators 1.0e+00
## Creb3 Factors Activate Genes 1.0e+00
## Cristae Formation 1.0e+00
## Crmps In Sema3a Signaling 1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 1.0e+00
## Crosslinking Of Collagen Fibrils 1.0e+00
## Cs Ds Degradation 1.0e+00
## Cyclin A Cdk2 Associated Events At S Phase Entry 1.0e+00
## Cyclin D Associated Events In G1 1.0e+00
## Cyp2e1 Reactions 1.0e+00
## Cytochrome C Mediated Apoptotic Response 1.0e+00
## Cytochrome P450 Arranged By Substrate Type 1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly 1.0e+00
## Cytosolic Sulfonation Of Small Molecules 1.0e+00
## Cytosolic Trna Aminoacylation 1.0e+00
## Darpp 32 Events 1.0e+00
## Dcc Mediated Attractive Signaling 1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex 1.0e+00
## Deadenylation Dependent Mrna Decay 1.0e+00
## Deadenylation Of Mrna 1.0e+00
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type 1.0e+00
## Defective Cftr Causes Cystic Fibrosis 1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type 1.0e+00
## Defective Chst3 Causes Sedcjd 1.0e+00
## Defective Chst6 Causes Mcdc1 1.0e+00
## Defective Chsy1 Causes Tpbs 1.0e+00
## Defective Csf2rb Causes Smdp5 1.0e+00
## Defective Ext2 Causes Exostoses 2 1.0e+00
## Defective F9 Activation 1.0e+00
## Defective Factor Ix Causes Hemophilia B 1.0e+00
## Defective Factor Viii Causes Hemophilia A 1.0e+00
## Defective Lfng Causes Scdo3 1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis 1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15 1.0e+00
## Defects In Biotin Btn Metabolism 1.0e+00
## Defects In Cobalamin B12 Metabolism 1.0e+00
## Defects In Vitamin And Cofactor Metabolism 1.0e+00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 1.0e+00
## Degradation Of Axin 1.0e+00
## Degradation Of Beta Catenin By The Destruction Complex 1.0e+00
## Degradation Of Cysteine And Homocysteine 1.0e+00
## Degradation Of Dvl 1.0e+00
## Degradation Of Gli1 By The Proteasome 1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 1.0e+00
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 1.0e+00
## Dermatan Sulfate Biosynthesis 1.0e+00
## Detoxification Of Reactive Oxygen Species 1.0e+00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 1.0e+00
## Digestion 1.0e+00
## Digestion And Absorption 1.0e+00
## Digestion Of Dietary Carbohydrate 1.0e+00
## Digestion Of Dietary Lipid 1.0e+00
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism 1.0e+00
## Diseases Associated With Glycosylation Precursor Biosynthesis 1.0e+00
## Diseases Associated With N Glycosylation Of Proteins 1.0e+00
## Diseases Associated With Surfactant Metabolism 1.0e+00
## Diseases Of Base Excision Repair 1.0e+00
## Diseases Of Carbohydrate Metabolism 1.0e+00
## Diseases Of Dna Repair 1.0e+00
## Diseases Of Mismatch Repair Mmr 1.0e+00
## Diseases Of Mitotic Cell Cycle 1.0e+00
## Disinhibition Of Snare Formation 1.0e+00
## Disorders Of Transmembrane Transporters 1.0e+00
## Displacement Of Dna Glycosylase By Apex1 1.0e+00
## Dna Damage Bypass 1.0e+00
## Dna Damage Recognition In Gg Ner 1.0e+00
## Dna Damage Reversal 1.0e+00
## Dna Damage Telomere Stress Induced Senescence 1.0e+00
## Dna Double Strand Break Repair 1.0e+00
## Dna Double Strand Break Response 1.0e+00
## Dna Repair 1.0e+00
## Dna Replication 1.0e+00
## Dna Replication Initiation 1.0e+00
## Dna Replication Pre Initiation 1.0e+00
## Dna Strand Elongation 1.0e+00
## Dopamine Neurotransmitter Release Cycle 1.0e+00
## Dopamine Receptors 1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling 1.0e+00
## Downregulation Of Erbb4 Signaling 1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling 1.0e+00
## Downstream Signaling Events Of B Cell Receptor Bcr 1.0e+00
## Downstream Signaling Of Activated Fgfr1 1.0e+00
## Downstream Signaling Of Activated Fgfr2 1.0e+00
## Downstream Signaling Of Activated Fgfr3 1.0e+00
## Downstream Signaling Of Activated Fgfr4 1.0e+00
## Dscam Interactions 1.0e+00
## Dual Incision In Gg Ner 1.0e+00
## Dual Incision In Tc Ner 1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 1.0e+00
## Early Phase Of Hiv Life Cycle 1.0e+00
## Effects Of Pip2 Hydrolysis 1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 1.0e+00
## Eicosanoid Ligand Binding Receptors 1.0e+00
## Eicosanoids 1.0e+00
## Elastic Fibre Formation 1.0e+00
## Electric Transmission Across Gap Junctions 1.0e+00
## Elevation Of Cytosolic Ca2 Levels 1.0e+00
## Endogenous Sterols 1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt 1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 1.0e+00
## Enos Activation 1.0e+00
## Epha Mediated Growth Cone Collapse 1.0e+00
## Ephb Mediated Forward Signaling 1.0e+00
## Ephrin Signaling 1.0e+00
## Er Quality Control Compartment Erqc 1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 1.0e+00
## Erk Mapk Targets 1.0e+00
## Erks Are Inactivated 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg 1.0e+00
## Erythropoietin Activates Ras 1.0e+00
## Erythropoietin Activates Stat5 1.0e+00
## Establishment Of Sister Chromatid Cohesion 1.0e+00
## Estrogen Biosynthesis 1.0e+00
## Estrogen Stimulated Signaling Through Prkcz 1.0e+00
## Ethanol Oxidation 1.0e+00
## Eukaryotic Translation Elongation 1.0e+00
## Eukaryotic Translation Initiation 1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus 1.0e+00
## Extension Of Telomeres 1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Factors Involved In Megakaryocyte Development And Platelet Production 1.0e+00
## Fanconi Anemia Pathway 1.0e+00
## Fasl Cd95l Signaling 1.0e+00
## Fatty Acid Metabolism 1.0e+00
## Fatty Acids 1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 1.0e+00
## Fatty Acyl Coa Biosynthesis 1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer 1.0e+00
## Fceri Mediated Nf Kb Activation 1.0e+00
## Fcgr Activation 1.0e+00
## Fertilization 1.0e+00
## Fgfr1 Ligand Binding And Activation 1.0e+00
## Fgfr1b Ligand Binding And Activation 1.0e+00
## Fgfr1c Ligand Binding And Activation 1.0e+00
## Fgfr2 Alternative Splicing 1.0e+00
## Fgfr2 Ligand Binding And Activation 1.0e+00
## Fgfr2 Mutant Receptor Activation 1.0e+00
## Fgfr2b Ligand Binding And Activation 1.0e+00
## Fgfr2c Ligand Binding And Activation 1.0e+00
## Fgfr3 Ligand Binding And Activation 1.0e+00
## Fgfr3b Ligand Binding And Activation 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 1.0e+00
## Flt3 Signaling 1.0e+00
## Flt3 Signaling By Cbl Mutants 1.0e+00
## Flt3 Signaling In Disease 1.0e+00
## Flt3 Signaling Through Src Family Kinases 1.0e+00
## Folding Of Actin By Cct Tric 1.0e+00
## Formation Of Apoptosome 1.0e+00
## Formation Of Atp By Chemiosmotic Coupling 1.0e+00
## Formation Of Fibrin Clot Clotting Cascade 1.0e+00
## Formation Of Incision Complex In Gg Ner 1.0e+00
## Formation Of Rna Pol Ii Elongation Complex 1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf 1.0e+00
## Formation Of Tc Ner Pre Incision Complex 1.0e+00
## Formation Of The Beta Catenin Tcf Transactivating Complex 1.0e+00
## Formation Of The Cornified Envelope 1.0e+00
## Formation Of The Early Elongation Complex 1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric 1.0e+00
## Formation Of Xylulose 5 Phosphate 1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 1.0e+00
## Foxo Mediated Transcription 1.0e+00
## Foxo Mediated Transcription Of Cell Cycle Genes 1.0e+00
## Foxo Mediated Transcription Of Cell Death Genes 1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 1.0e+00
## Free Fatty Acid Receptors 1.0e+00
## Free Fatty Acids Regulate Insulin Secretion 1.0e+00
## Frs Mediated Fgfr1 Signaling 1.0e+00
## Frs Mediated Fgfr2 Signaling 1.0e+00
## Frs Mediated Fgfr3 Signaling 1.0e+00
## Frs Mediated Fgfr4 Signaling 1.0e+00
## Fructose Catabolism 1.0e+00
## Fructose Metabolism 1.0e+00
## G Alpha S Signalling Events 1.0e+00
## G Alpha Z Signalling Events 1.0e+00
## G Beta Gamma Signalling Through Cdc42 1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma 1.0e+00
## G Protein Activation 1.0e+00
## G Protein Beta Gamma Signalling 1.0e+00
## G1 S Dna Damage Checkpoints 1.0e+00
## G2 Phase 1.0e+00
## Gaba B Receptor Activation 1.0e+00
## Gaba Receptor Activation 1.0e+00
## Gaba Synthesis Release Reuptake And Degradation 1.0e+00
## Galactose Catabolism 1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 1.0e+00
## Gap Junction Assembly 1.0e+00
## Gap Junction Degradation 1.0e+00
## Gap Junction Trafficking And Regulation 1.0e+00
## Gdp Fucose Biosynthesis 1.0e+00
## Gene Silencing By Rna 1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner 1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 1.0e+00
## Glucagon Signaling In Metabolic Regulation 1.0e+00
## Glucagon Type Ligand Receptors 1.0e+00
## Glucocorticoid Biosynthesis 1.0e+00
## Gluconeogenesis 1.0e+00
## Glucose Metabolism 1.0e+00
## Glucuronidation 1.0e+00
## Glutamate And Glutamine Metabolism 1.0e+00
## Glutamate Neurotransmitter Release Cycle 1.0e+00
## Glutathione Conjugation 1.0e+00
## Glutathione Synthesis And Recycling 1.0e+00
## Glycerophospholipid Biosynthesis 1.0e+00
## Glycerophospholipid Catabolism 1.0e+00
## Glycogen Breakdown Glycogenolysis 1.0e+00
## Glycogen Metabolism 1.0e+00
## Glycogen Storage Diseases 1.0e+00
## Glycogen Synthesis 1.0e+00
## Glycolysis 1.0e+00
## Glycosaminoglycan Metabolism 1.0e+00
## Glycosphingolipid Metabolism 1.0e+00
## Glyoxylate Metabolism And Glycine Degradation 1.0e+00
## Golgi Associated Vesicle Biogenesis 1.0e+00
## Golgi To Er Retrograde Transport 1.0e+00
## Gp1b Ix V Activation Signalling 1.0e+00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 1.0e+00
## Grb7 Events In Erbb2 Signaling 1.0e+00
## Hats Acetylate Histones 1.0e+00
## Hcmv Late Events 1.0e+00
## Hdacs Deacetylate Histones 1.0e+00
## Hdl Assembly 1.0e+00
## Hdl Clearance 1.0e+00
## Hdl Remodeling 1.0e+00
## Hdms Demethylate Histones 1.0e+00
## Hdr Through Homologous Recombination Hrr 1.0e+00
## Hdr Through Mmej Alt Nhej 1.0e+00
## Hdr Through Single Strand Annealing Ssa 1.0e+00
## Hedgehog Ligand Biogenesis 1.0e+00
## Hedgehog Off State 1.0e+00
## Hedgehog On State 1.0e+00
## Heme Biosynthesis 1.0e+00
## Heme Degradation 1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism 1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 1.0e+00
## Histidine Catabolism 1.0e+00
## Hiv Elongation Arrest And Recovery 1.0e+00
## Hiv Infection 1.0e+00
## Hiv Life Cycle 1.0e+00
## Hiv Transcription Elongation 1.0e+00
## Hiv Transcription Initiation 1.0e+00
## Homologous Dna Pairing And Strand Exchange 1.0e+00
## Homology Directed Repair 1.0e+00
## Hormone Ligand Binding Receptors 1.0e+00
## Host Interactions Of Hiv Factors 1.0e+00
## Hs Gag Biosynthesis 1.0e+00
## Hs Gag Degradation 1.0e+00
## Hsf1 Activation 1.0e+00
## Hsf1 Dependent Transactivation 1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna 1.0e+00
## Hyaluronan Biosynthesis And Export 1.0e+00
## Hyaluronan Metabolism 1.0e+00
## Hyaluronan Uptake And Degradation 1.0e+00
## Hydrolysis Of Lpc 1.0e+00
## Ikba Variant Leads To Eda Id 1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions 1.0e+00
## Inactivation Of Cdc42 And Rac1 1.0e+00
## Incretin Synthesis Secretion And Inactivation 1.0e+00
## Infection With Mycobacterium Tuberculosis 1.0e+00
## Influenza Infection 1.0e+00
## Inhibition Of Dna Recombination At Telomere 1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 1.0e+00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 1.0e+00
## Inositol Phosphate Metabolism 1.0e+00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 1.0e+00
## Insulin Processing 1.0e+00
## Insulin Receptor Recycling 1.0e+00
## Integration Of Energy Metabolism 1.0e+00
## Integration Of Provirus 1.0e+00
## Integrin Signaling 1.0e+00
## Interaction Between L1 And Ankyrins 1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida 1.0e+00
## Interactions Of Rev With Host Cellular Proteins 1.0e+00
## Interactions Of Vpr With Host Cellular Proteins 1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates 1.0e+00
## Interleukin 2 Signaling 1.0e+00
## Interleukin 36 Pathway 1.0e+00
## Intestinal Absorption 1.0e+00
## Intra Golgi Traffic 1.0e+00
## Intraflagellar Transport 1.0e+00
## Intrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Inwardly Rectifying K Channels 1.0e+00
## Ion Homeostasis 1.0e+00
## Ion Transport By P Type Atpases 1.0e+00
## Ionotropic Activity Of Kainate Receptors 1.0e+00
## Irak1 Recruits Ikk Complex 1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex 1.0e+00
## Ire1alpha Activates Chaperones 1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn 1.0e+00
## Iron Uptake And Transport 1.0e+00
## Irs Activation 1.0e+00
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 1.0e+00
## Josephin Domain Dubs 1.0e+00
## Keratan Sulfate Biosynthesis 1.0e+00
## Keratan Sulfate Degradation 1.0e+00
## Keratan Sulfate Keratin Metabolism 1.0e+00
## Keratinization 1.0e+00
## Ketone Body Metabolism 1.0e+00
## Kinesins 1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna 1.0e+00
## Lagging Strand Synthesis 1.0e+00
## Laminin Interactions 1.0e+00
## Late Endosomal Microautophagy 1.0e+00
## Lectin Pathway Of Complement Activation 1.0e+00
## Leukotriene Receptors 1.0e+00
## Lgi Adam Interactions 1.0e+00
## Ligand Receptor Interactions 1.0e+00
## Linoleic Acid La Metabolism 1.0e+00
## Lipid Particle Organization 1.0e+00
## Lipophagy 1.0e+00
## Listeria Monocytogenes Entry Into Host Cells 1.0e+00
## Long Term Potentiation 1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome 1.0e+00
## Loss Of Function Of Smad2 3 In Cancer 1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 1.0e+00
## Ltc4 Cysltr Mediated Il4 Production 1.0e+00
## Lysine Catabolism 1.0e+00
## Lysosome Vesicle Biogenesis 1.0e+00
## Lysosphingolipid And Lpa Receptors 1.0e+00
## Map2k And Mapk Activation 1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 1.0e+00
## Maturation Of Nucleoprotein 1.0e+00
## Maturation Of Protein 3a 1.0e+00
## Maturation Of Sars Cov 1 Spike Protein 1.0e+00
## Maturation Of Sars Cov 2 Spike Protein 1.0e+00
## Meiosis 1.0e+00
## Meiotic Recombination 1.0e+00
## Meiotic Synapsis 1.0e+00
## Melanin Biosynthesis 1.0e+00
## Met Activates Pi3k Akt Signaling 1.0e+00
## Met Activates Ptk2 Signaling 1.0e+00
## Met Activates Ptpn11 1.0e+00
## Met Activates Rap1 And Rac1 1.0e+00
## Met Activates Ras Signaling 1.0e+00
## Met Interacts With Tns Proteins 1.0e+00
## Met Promotes Cell Motility 1.0e+00
## Met Receptor Activation 1.0e+00
## Met Receptor Recycling 1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes 1.0e+00
## Metabolism Of Amine Derived Hormones 1.0e+00
## Metabolism Of Amino Acids And Derivatives 1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins 1.0e+00
## Metabolism Of Carbohydrates 1.0e+00
## Metabolism Of Cofactors 1.0e+00
## Metabolism Of Fat Soluble Vitamins 1.0e+00
## Metabolism Of Folate And Pterines 1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se 1.0e+00
## Metabolism Of Lipids 1.0e+00
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 1.0e+00
## Metabolism Of Nucleotides 1.0e+00
## Metabolism Of Polyamines 1.0e+00
## Metabolism Of Porphyrins 1.0e+00
## Metabolism Of Rna 1.0e+00
## Metabolism Of Steroid Hormones 1.0e+00
## Metabolism Of Steroids 1.0e+00
## Metabolism Of Vitamins And Cofactors 1.0e+00
## Metabolism Of Water Soluble Vitamins And Cofactors 1.0e+00
## Metal Ion Slc Transporters 1.0e+00
## Metal Sequestration By Antimicrobial Proteins 1.0e+00
## Metallothioneins Bind Metals 1.0e+00
## Methionine Salvage Pathway 1.0e+00
## Methylation 1.0e+00
## Microrna Mirna Biogenesis 1.0e+00
## Mineralocorticoid Biosynthesis 1.0e+00
## Miro Gtpase Cycle 1.0e+00
## Miscellaneous Substrates 1.0e+00
## Miscellaneous Transport And Binding Events 1.0e+00
## Mismatch Repair 1.0e+00
## Mitochondrial Calcium Ion Transport 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis 1.0e+00
## Mitochondrial Protein Import 1.0e+00
## Mitochondrial Translation 1.0e+00
## Mitochondrial Trna Aminoacylation 1.0e+00
## Mitochondrial Uncoupling 1.0e+00
## Mitophagy 1.0e+00
## Mitotic Spindle Checkpoint 1.0e+00
## Mitotic Telophase Cytokinesis 1.0e+00
## Modulation By Mtb Of Host Immune System 1.0e+00
## Molecules Associated With Elastic Fibres 1.0e+00
## Molybdenum Cofactor Biosynthesis 1.0e+00
## Mrna Capping 1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease 1.0e+00
## Mrna Editing 1.0e+00
## Mrna Editing C To U Conversion 1.0e+00
## Mrna Splicing 1.0e+00
## Mrna Splicing Minor Pathway 1.0e+00
## Mtor Signalling 1.0e+00
## Mtorc1 Mediated Signalling 1.0e+00
## Mucopolysaccharidoses 1.0e+00
## Multifunctional Anion Exchangers 1.0e+00
## Muscarinic Acetylcholine Receptors 1.0e+00
## Myoclonic Epilepsy Of Lafora 1.0e+00
## Myogenesis 1.0e+00
## N Glycan Antennae Elongation 1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi 1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi 1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 1.0e+00
## Na Cl Dependent Neurotransmitter Transporters 1.0e+00
## Nade Modulates Death Signalling 1.0e+00
## Ncam1 Interactions 1.0e+00
## Nectin Necl Trans Heterodimerization 1.0e+00
## Neddylation 1.0e+00
## Nef And Signal Transduction 1.0e+00
## Nef Mediated Cd4 Down Regulation 1.0e+00
## Nef Mediated Cd8 Down Regulation 1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 1.0e+00
## Negative Epigenetic Regulation Of Rrna Expression 1.0e+00
## Negative Feedback Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 1.0e+00
## Negative Regulation Of Fgfr1 Signaling 1.0e+00
## Negative Regulation Of Fgfr2 Signaling 1.0e+00
## Negative Regulation Of Fgfr3 Signaling 1.0e+00
## Negative Regulation Of Fgfr4 Signaling 1.0e+00
## Negative Regulation Of Flt3 1.0e+00
## Negative Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Met Activity 1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 1.0e+00
## Negative Regulation Of Notch4 Signaling 1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 1.0e+00
## Negative Regulators Of Ddx58 Ifih1 Signaling 1.0e+00
## Nephrin Family Interactions 1.0e+00
## Netrin 1 Signaling 1.0e+00
## Netrin Mediated Repulsion Signals 1.0e+00
## Neurexins And Neuroligins 1.0e+00
## Neurofascin Interactions 1.0e+00
## Neurotoxicity Of Clostridium Toxins 1.0e+00
## Neurotransmitter Clearance 1.0e+00
## Neurotransmitter Release Cycle 1.0e+00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 1.0e+00
## Nf Kb Is Activated And Signals Survival 1.0e+00
## Ngf Independant Trka Activation 1.0e+00
## Nicotinamide Salvaging 1.0e+00
## Nicotinate Metabolism 1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase 1.0e+00
## Non Integrin Membrane Ecm Interactions 1.0e+00
## Noncanonical Activation Of Notch3 1.0e+00
## Nonhomologous End Joining Nhej 1.0e+00
## Nonsense Mediated Decay Nmd 1.0e+00
## Norepinephrine Neurotransmitter Release Cycle 1.0e+00
## Nostrin Mediated Enos Trafficking 1.0e+00
## Notch Hlh Transcription Pathway 1.0e+00
## Notch1 Intracellular Domain Regulates Transcription 1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch3 Intracellular Domain Regulates Transcription 1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Intracellular Domain Regulates Transcription 1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 1.0e+00
## Nrcam Interactions 1.0e+00
## Nrif Signals Cell Death From The Nucleus 1.0e+00
## Ns1 Mediated Effects On Host Pathways 1.0e+00
## Ntrk2 Activates Rac1 1.0e+00
## Nuclear Import Of Rev Protein 1.0e+00
## Nuclear Receptor Transcription Pathway 1.0e+00
## Nuclear Signaling By Erbb4 1.0e+00
## Nucleobase Biosynthesis 1.0e+00
## Nucleobase Catabolism 1.0e+00
## Nucleotide Excision Repair 1.0e+00
## Nucleotide Like Purinergic Receptors 1.0e+00
## Nucleotide Salvage 1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins 1.0e+00
## Oas Antiviral Response 1.0e+00
## Olfactory Signaling Pathway 1.0e+00
## Oncogene Induced Senescence 1.0e+00
## Oncogenic Mapk Signaling 1.0e+00
## Opsins 1.0e+00
## Orc1 Removal From Chromatin 1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 1.0e+00
## Organic Anion Transport 1.0e+00
## Organic Anion Transporters 1.0e+00
## Organic Cation Anion Zwitterion Transport 1.0e+00
## Organic Cation Transport 1.0e+00
## Other Interleukin Signaling 1.0e+00
## Other Semaphorin Interactions 1.0e+00
## P130cas Linkage To Mapk Signaling For Integrins 1.0e+00
## P2y Receptors 1.0e+00
## P38mapk Events 1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1 1.0e+00
## P75ntr Recruits Signalling Complexes 1.0e+00
## P75ntr Signals Via Nf Kb 1.0e+00
## Passive Transport By Aquaporins 1.0e+00
## Pcna Dependent Long Patch Base Excision Repair 1.0e+00
## Pecam1 Interactions 1.0e+00
## Pentose Phosphate Pathway 1.0e+00
## Peptide Hormone Biosynthesis 1.0e+00
## Peptide Hormone Metabolism 1.0e+00
## Peroxisomal Lipid Metabolism 1.0e+00
## Peroxisomal Protein Import 1.0e+00
## Pexophagy 1.0e+00
## Phase 0 Rapid Depolarisation 1.0e+00
## Phase 1 Inactivation Of Fast Na Channels 1.0e+00
## Phase 2 Plateau Phase 1.0e+00
## Phase 3 Rapid Repolarisation 1.0e+00
## Phase I Functionalization Of Compounds 1.0e+00
## Phase Ii Conjugation Of Compounds 1.0e+00
## Phenylalanine And Tyrosine Metabolism 1.0e+00
## Phenylalanine Metabolism 1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins 1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins 1.0e+00
## Phospholipase C Mediated Cascade Fgfr2 1.0e+00
## Phospholipase C Mediated Cascade Fgfr4 1.0e+00
## Phospholipid Metabolism 1.0e+00
## Physiological Factors 1.0e+00
## Pi 3k Cascade Fgfr1 1.0e+00
## Pi 3k Cascade Fgfr2 1.0e+00
## Pi 3k Cascade Fgfr3 1.0e+00
## Pi 3k Cascade Fgfr4 1.0e+00
## Pi Metabolism 1.0e+00
## Pi3k Akt Activation 1.0e+00
## Pi3k Events In Erbb4 Signaling 1.0e+00
## Pi5p Regulates Tp53 Acetylation 1.0e+00
## Pink1 Prkn Mediated Mitophagy 1.0e+00
## Piwi Interacting Rna Pirna Biogenesis 1.0e+00
## Pka Activation In Glucagon Signalling 1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors 1.0e+00
## Pkmts Methylate Histone Lysines 1.0e+00
## Plasma Lipoprotein Assembly 1.0e+00
## Plasma Lipoprotein Remodeling 1.0e+00
## Platelet Adhesion To Exposed Collagen 1.0e+00
## Platelet Aggregation Plug Formation 1.0e+00
## Platelet Calcium Homeostasis 1.0e+00
## Platelet Homeostasis 1.0e+00
## Platelet Sensitization By Ldl 1.0e+00
## Polb Dependent Long Patch Base Excision Repair 1.0e+00
## Polo Like Kinase Mediated Events 1.0e+00
## Polymerase Switching 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression 1.0e+00
## Post Chaperonin Tubulin Folding Pathway 1.0e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation 1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 1.0e+00
## Pre Notch Expression And Processing 1.0e+00
## Pre Notch Processing In Golgi 1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum 1.0e+00
## Pregnenolone Biosynthesis 1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening 1.0e+00
## Presynaptic Function Of Kainate Receptors 1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion 1.0e+00
## Processing And Activation Of Sumo 1.0e+00
## Processing Of Capped Intron Containing Pre Mrna 1.0e+00
## Processing Of Capped Intronless Pre Mrna 1.0e+00
## Processing Of Dna Double Strand Break Ends 1.0e+00
## Processing Of Intronless Pre Mrnas 1.0e+00
## Processing Of Smdt1 1.0e+00
## Processive Synthesis On The C Strand Of The Telomere 1.0e+00
## Processive Synthesis On The Lagging Strand 1.0e+00
## Prolactin Receptor Signaling 1.0e+00
## Prolonged Erk Activation Events 1.0e+00
## Propionyl Coa Catabolism 1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor 1.0e+00
## Prostanoid Ligand Receptors 1.0e+00
## Protein Localization 1.0e+00
## Protein Methylation 1.0e+00
## Protein Protein Interactions At Synapses 1.0e+00
## Protein Repair 1.0e+00
## Protein Ubiquitination 1.0e+00
## Proton Coupled Monocarboxylate Transport 1.0e+00
## Pten Regulation 1.0e+00
## Ptk6 Expression 1.0e+00
## Ptk6 Regulates Cell Cycle 1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing 1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 1.0e+00
## Purine Catabolism 1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis 1.0e+00
## Purine Salvage 1.0e+00
## Pyrimidine Catabolism 1.0e+00
## Pyrimidine Salvage 1.0e+00
## Pyruvate Metabolism 1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle 1.0e+00
## Ra Biosynthesis Pathway 1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs 1.0e+00
## Rab Geranylgeranylation 1.0e+00
## Rab Regulation Of Trafficking 1.0e+00
## Raf Activation 1.0e+00
## Rap1 Signalling 1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 1.0e+00
## Ras Processing 1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway 1.0e+00
## Receptor Mediated Mitophagy 1.0e+00
## Receptor Type Tyrosine Protein Phosphatases 1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex 1.0e+00
## Recycling Of Bile Acids And Salts 1.0e+00
## Recycling Of Eif2 Gdp 1.0e+00
## Recycling Pathway Of L1 1.0e+00
## Reduction Of Cytosolic Ca Levels 1.0e+00
## Reelin Signalling Pathway 1.0e+00
## Regulated Proteolysis Of P75ntr 1.0e+00
## Regulation By C Flip 1.0e+00
## Regulation Of Bach1 Activity 1.0e+00
## Regulation Of Beta Cell Development 1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 1.0e+00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 1.0e+00
## Regulation Of Expression Of Slits And Robos 1.0e+00
## Regulation Of Foxo Transcriptional Activity By Acetylation 1.0e+00
## Regulation Of Fzd By Ubiquitination 1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor 1.0e+00
## Regulation Of Gene Expression In Beta Cells 1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 1.0e+00
## Regulation Of Hmox1 Expression And Activity 1.0e+00
## Regulation Of Hsf1 Mediated Heat Shock Response 1.0e+00
## Regulation Of Ifna Signaling 1.0e+00
## Regulation Of Ifng Signaling 1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna 1.0e+00
## Regulation Of Insulin Secretion 1.0e+00
## Regulation Of Kit Signaling 1.0e+00
## Regulation Of Lipid Metabolism By Pparalpha 1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors 1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 1.0e+00
## Regulation Of Pten Gene Transcription 1.0e+00
## Regulation Of Pten Localization 1.0e+00
## Regulation Of Pten Mrna Translation 1.0e+00
## Regulation Of Pten Stability And Activity 1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 1.0e+00
## Regulation Of Ras By Gaps 1.0e+00
## Regulation Of Runx1 Expression And Activity 1.0e+00
## Regulation Of Runx3 Expression And Activity 1.0e+00
## Regulation Of Signaling By Cbl 1.0e+00
## Regulation Of Signaling By Nodal 1.0e+00
## Regulation Of Tp53 Activity Through Acetylation 1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors 1.0e+00
## Regulation Of Tp53 Activity Through Methylation 1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation 1.0e+00
## Relaxin Receptors 1.0e+00
## Release Of Apoptotic Factors From The Mitochondria 1.0e+00
## Release Of Hh Np From The Secreting Cell 1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 1.0e+00
## Repression Of Wnt Target Genes 1.0e+00
## Reproduction 1.0e+00
## Resolution Of Abasic Sites Ap Sites 1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 1.0e+00
## Resolution Of D Loop Structures 1.0e+00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 1.0e+00
## Respiratory Electron Transport 1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency 1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 1.0e+00
## Response Of Mtb To Phagocytosis 1.0e+00
## Response To Metal Ions 1.0e+00
## Ret Signaling 1.0e+00
## Retinoid Cycle Disease Events 1.0e+00
## Retrograde Neurotrophin Signalling 1.0e+00
## Reversible Hydration Of Carbon Dioxide 1.0e+00
## Rho Gtpase Effectors 1.0e+00
## Rho Gtpases Activate Cit 1.0e+00
## Rho Gtpases Activate Formins 1.0e+00
## Rho Gtpases Activate Iqgaps 1.0e+00
## Rho Gtpases Activate Ktn1 1.0e+00
## Rho Gtpases Activate Nadph Oxidases 1.0e+00
## Rho Gtpases Activate Paks 1.0e+00
## Rho Gtpases Activate Pkns 1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins 1.0e+00
## Rho Gtpases Activate Rocks 1.0e+00
## Rho Gtpases Activate Wasps And Waves 1.0e+00
## Rhobtb Gtpase Cycle 1.0e+00
## Rhobtb1 Gtpase Cycle 1.0e+00
## Rhobtb2 Gtpase Cycle 1.0e+00
## Rhobtb3 Atpase Cycle 1.0e+00
## Rhot1 Gtpase Cycle 1.0e+00
## Rhou Gtpase Cycle 1.0e+00
## Rhov Gtpase Cycle 1.0e+00
## Rna Polymerase I Promoter Escape 1.0e+00
## Rna Polymerase I Transcription 1.0e+00
## Rna Polymerase I Transcription Initiation 1.0e+00
## Rna Polymerase I Transcription Termination 1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes 1.0e+00
## Rna Polymerase Ii Transcription Termination 1.0e+00
## Rna Polymerase Iii Chain Elongation 1.0e+00
## Rna Polymerase Iii Transcription 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Termination 1.0e+00
## Rnd1 Gtpase Cycle 1.0e+00
## Rnd2 Gtpase Cycle 1.0e+00
## Rnd3 Gtpase Cycle 1.0e+00
## Robo Receptors Bind Akap5 1.0e+00
## Role Of Abl In Robo Slit Signaling 1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization 1.0e+00
## Role Of Phospholipids In Phagocytosis 1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling 1.0e+00
## Rora Activates Gene Expression 1.0e+00
## Ros And Rns Production In Phagocytes 1.0e+00
## Rrna Modification In The Mitochondrion 1.0e+00
## Rrna Modification In The Nucleus And Cytosol 1.0e+00
## Rrna Processing 1.0e+00
## Rrna Processing In The Mitochondrion 1.0e+00
## Rsk Activation 1.0e+00
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription 1.0e+00
## Runx1 Regulates Expression Of Components Of Tight Junctions 1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription 1.0e+00
## Runx3 Regulates Cdkn1a Transcription 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration 1.0e+00
## Runx3 Regulates Notch Signaling 1.0e+00
## Runx3 Regulates P14 Arf 1.0e+00
## Runx3 Regulates Wnt Signaling 1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription 1.0e+00
## S Phase 1.0e+00
## Sars Cov 1 Genome Replication And Transcription 1.0e+00
## Sars Cov 1 Infection 1.0e+00
## Sars Cov 2 Infection 1.0e+00
## Scavenging By Class A Receptors 1.0e+00
## Scavenging By Class B Receptors 1.0e+00
## Scavenging By Class F Receptors 1.0e+00
## Scavenging Of Heme From Plasma 1.0e+00
## Scf Skp2 Mediated Degradation Of P27 P21 1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 1.0e+00
## Selective Autophagy 1.0e+00
## Selenoamino Acid Metabolism 1.0e+00
## Sema3a Pak Dependent Axon Repulsion 1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 1.0e+00
## Sema4d In Semaphorin Signaling 1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse 1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 1.0e+00
## Semaphorin Interactions 1.0e+00
## Sensing Of Dna Double Strand Breaks 1.0e+00
## Sensory Perception 1.0e+00
## Sensory Processing Of Sound 1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 1.0e+00
## Separation Of Sister Chromatids 1.0e+00
## Serine Biosynthesis 1.0e+00
## Serotonin And Melatonin Biosynthesis 1.0e+00
## Serotonin Neurotransmitter Release Cycle 1.0e+00
## Serotonin Receptors 1.0e+00
## Shc Mediated Cascade Fgfr1 1.0e+00
## Shc Mediated Cascade Fgfr3 1.0e+00
## Shc Mediated Cascade Fgfr4 1.0e+00
## Shc Related Events Triggered By Igf1r 1.0e+00
## Shc1 Events In Erbb4 Signaling 1.0e+00
## Signal Amplification 1.0e+00
## Signal Attenuation 1.0e+00
## Signal Regulatory Protein Family Interactions 1.0e+00
## Signaling By Activin 1.0e+00
## Signaling By Bmp 1.0e+00
## Signaling By Braf And Raf Fusions 1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants 1.0e+00
## Signaling By Erythropoietin 1.0e+00
## Signaling By Fgfr 1.0e+00
## Signaling By Fgfr1 1.0e+00
## Signaling By Fgfr2 1.0e+00
## Signaling By Fgfr2 Iiia Tm 1.0e+00
## Signaling By Fgfr2 In Disease 1.0e+00
## Signaling By Fgfr3 1.0e+00
## Signaling By Fgfr3 Fusions In Cancer 1.0e+00
## Signaling By Fgfr4 1.0e+00
## Signaling By Fgfr4 In Disease 1.0e+00
## Signaling By Flt3 Fusion Proteins 1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants 1.0e+00
## Signaling By Hedgehog 1.0e+00
## Signaling By Hippo 1.0e+00
## Signaling By Lrp5 Mutants 1.0e+00
## Signaling By Mapk Mutants 1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 1.0e+00
## Signaling By Moderate Kinase Activity Braf Mutants 1.0e+00
## Signaling By Mras Complex Mutants 1.0e+00
## Signaling By Mst1 1.0e+00
## Signaling By Nodal 1.0e+00
## Signaling By Notch1 1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 Pest Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 1.0e+00
## Signaling By Notch4 1.0e+00
## Signaling By Ntrk2 Trkb 1.0e+00
## Signaling By Ntrk3 Trkc 1.0e+00
## Signaling By Retinoic Acid 1.0e+00
## Signaling By Rnf43 Mutants 1.0e+00
## Signaling By Robo Receptors 1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer 1.0e+00
## Signaling By Wnt In Cancer 1.0e+00
## Signalling To Erks 1.0e+00
## Signalling To P38 Via Rit And Rin 1.0e+00
## Signalling To Ras 1.0e+00
## Sirt1 Negatively Regulates Rrna Expression 1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 1.0e+00
## Slc Mediated Transmembrane Transport 1.0e+00
## Slc Transporter Disorders 1.0e+00
## Smac Xiap Regulated Apoptotic Response 1.0e+00
## Small Interfering Rna Sirna Biogenesis 1.0e+00
## Smooth Muscle Contraction 1.0e+00
## Snrnp Assembly 1.0e+00
## Sodium Calcium Exchangers 1.0e+00
## Sodium Coupled Phosphate Cotransporters 1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 1.0e+00
## Sodium Proton Exchangers 1.0e+00
## Sos Mediated Signalling 1.0e+00
## Sperm Motility And Taxes 1.0e+00
## Sphingolipid De Novo Biosynthesis 1.0e+00
## Sphingolipid Metabolism 1.0e+00
## Spry Regulation Of Fgf Signaling 1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane 1.0e+00
## Stabilization Of P53 1.0e+00
## Stat5 Activation 1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants 1.0e+00
## Striated Muscle Contraction 1.0e+00
## Sulfide Oxidation To Sulfate 1.0e+00
## Sulfur Amino Acid Metabolism 1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1 1.0e+00
## Sumo Is Proteolytically Processed 1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 1.0e+00
## Sumoylation Of Chromatin Organization Proteins 1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins 1.0e+00
## Sumoylation Of Dna Replication Proteins 1.0e+00
## Sumoylation Of Immune Response Proteins 1.0e+00
## Sumoylation Of Intracellular Receptors 1.0e+00
## Sumoylation Of Rna Binding Proteins 1.0e+00
## Sumoylation Of Sumoylation Proteins 1.0e+00
## Sumoylation Of Transcription Factors 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins 1.0e+00
## Suppression Of Apoptosis 1.0e+00
## Suppression Of Phagosomal Maturation 1.0e+00
## Surfactant Metabolism 1.0e+00
## Switching Of Origins To A Post Replicative State 1.0e+00
## Synaptic Adhesion Like Molecules 1.0e+00
## Syndecan Interactions 1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 1.0e+00
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids 1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 1.0e+00
## Synthesis Of Bile Acids And Bile Salts 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 1.0e+00
## Synthesis Of Diphthamide Eef2 1.0e+00
## Synthesis Of Dolichyl Phosphate 1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 1.0e+00
## Synthesis Of Gdp Mannose 1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi 1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol 1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol 1.0e+00
## Synthesis Of Ketone Bodies 1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex 1.0e+00
## Synthesis Of Lipoxins Lx 1.0e+00
## Synthesis Of Pa 1.0e+00
## Synthesis Of Pc 1.0e+00
## Synthesis Of Pe 1.0e+00
## Synthesis Of Pg 1.0e+00
## Synthesis Of Pi 1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Er Membrane 1.0e+00
## Synthesis Of Pips At The Golgi Membrane 1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Plasma Membrane 1.0e+00
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol 1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine 1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas 1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe 1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin 1.0e+00
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 1.0e+00
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 1.0e+00
## Tachykinin Receptors Bind Tachykinins 1.0e+00
## Tbc Rabgaps 1.0e+00
## Telomere C Strand Lagging Strand Synthesis 1.0e+00
## Telomere C Strand Synthesis Initiation 1.0e+00
## Telomere Extension By Telomerase 1.0e+00
## Telomere Maintenance 1.0e+00
## Terminal Pathway Of Complement 1.0e+00
## Termination Of Translesion Dna Synthesis 1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 1.0e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 1.0e+00
## Tgf Beta Receptor Signaling Activates Smads 1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 1.0e+00
## The Activation Of Arylsulfatases 1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport 1.0e+00
## The Fatty Acid Cycling Model 1.0e+00
## The Phototransduction Cascade 1.0e+00
## The Retinoid Cycle In Cones Daylight Vision 1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 1.0e+00
## Thrombin Signalling Through Proteinase Activated Receptors Pars 1.0e+00
## Thromboxane Signalling Through Tp Receptor 1.0e+00
## Thyroxine Biosynthesis 1.0e+00
## Tie2 Signaling 1.0e+00
## Tight Junction Interactions 1.0e+00
## Tnfr1 Induced Proapoptotic Signaling 1.0e+00
## Tnfr1 Mediated Ceramide Production 1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd 1.0e+00
## Tp53 Regulates Metabolic Genes 1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Traf3 Dependent Irf Activation Pathway 1.0e+00
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 1.0e+00
## Traf6 Mediated Irf7 Activation 1.0e+00
## Trafficking Of Ampa Receptors 1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors 1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium 1.0e+00
## Trail Signaling 1.0e+00
## Trans Golgi Network Vesicle Budding 1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner 1.0e+00
## Transcription Of E2f Targets Under Negative Control By Dream Complex 1.0e+00
## Transcription Of The Hiv Genome 1.0e+00
## Transcriptional Regulation By E2f6 1.0e+00
## Transcriptional Regulation By Runx3 1.0e+00
## Transcriptional Regulation By Small Rnas 1.0e+00
## Transcriptional Regulation Of Testis Differentiation 1.0e+00
## Transcriptional Regulation Of White Adipocyte Differentiation 1.0e+00
## Transferrin Endocytosis And Recycling 1.0e+00
## Translation 1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 1.0e+00
## Translation Of Sars Cov 1 Structural Proteins 1.0e+00
## Translation Of Sars Cov 2 Structural Proteins 1.0e+00
## Translesion Synthesis By Polh 1.0e+00
## Translesion Synthesis By Polk 1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1.0e+00
## Transport And Synthesis Of Paps 1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 1.0e+00
## Transport Of Connexons To The Plasma Membrane 1.0e+00
## Transport Of Fatty Acids 1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts 1.0e+00
## Transport Of Mature Transcript To Cytoplasm 1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 1.0e+00
## Transport Of Nucleotide Sugars 1.0e+00
## Transport Of Organic Anions 1.0e+00
## Transport Of The Slbp Dependant Mature Mrna 1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules 1.0e+00
## Trif Mediated Programmed Cell Death 1.0e+00
## Triglyceride Biosynthesis 1.0e+00
## Triglyceride Catabolism 1.0e+00
## Triglyceride Metabolism 1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 1.0e+00
## Trna Aminoacylation 1.0e+00
## Trna Modification In The Mitochondrion 1.0e+00
## Trna Modification In The Nucleus And Cytosol 1.0e+00
## Trna Processing 1.0e+00
## Trna Processing In The Mitochondrion 1.0e+00
## Trna Processing In The Nucleus 1.0e+00
## Trp Channels 1.0e+00
## Tryptophan Catabolism 1.0e+00
## Type I Hemidesmosome Assembly 1.0e+00
## Tyrosine Catabolism 1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins 1.0e+00
## Ubiquinol Biosynthesis 1.0e+00
## Uch Proteinases 1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 1.0e+00
## Unwinding Of Dna 1.0e+00
## Uptake And Actions Of Bacterial Toxins 1.0e+00
## Uptake And Function Of Anthrax Toxins 1.0e+00
## Uptake And Function Of Diphtheria Toxin 1.0e+00
## Urea Cycle 1.0e+00
## Vasopressin Like Receptors 1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 1.0e+00
## Vegf Ligand Receptor Interactions 1.0e+00
## Vegfr2 Mediated Cell Proliferation 1.0e+00
## Viral Messenger Rna Synthesis 1.0e+00
## Visual Phototransduction 1.0e+00
## Vitamin B1 Thiamin Metabolism 1.0e+00
## Vitamin B2 Riboflavin Metabolism 1.0e+00
## Vitamin B5 Pantothenate Metabolism 1.0e+00
## Vitamin C Ascorbate Metabolism 1.0e+00
## Vitamin D Calciferol Metabolism 1.0e+00
## Vitamins 1.0e+00
## Vldl Assembly 1.0e+00
## Vldl Clearance 1.0e+00
## Voltage Gated Potassium Channels 1.0e+00
## Vxpx Cargo Targeting To Cilium 1.0e+00
## Wax And Plasmalogen Biosynthesis 1.0e+00
## Wnt Mediated Activation Of Dvl 1.0e+00
## Xenobiotics 1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family 1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family 1.0e+00
## Zinc Transporters 1.0e+00
## signature
## Cytokine Signaling In Immune System 73
## Interleukin 10 Signaling 73
## Signaling By Interleukins 73
## Innate Immune System 73
## Interleukin 4 And Interleukin 13 Signaling 73
## Chemokine Receptors Bind Chemokines 73
## Signaling By Gpcr 73
## Peptide Ligand Binding Receptors 73
## Neutrophil Degranulation 73
## Leishmania Infection 73
## Regulated Necrosis 73
## Purinergic Signaling In Leishmaniasis Infection 73
## Pyroptosis 73
## Gpcr Ligand Binding 73
## Interleukin 1 Processing 73
## Extra Nuclear Estrogen Signaling 73
## Interleukin 1 Family Signaling 73
## G Alpha I Signalling Events 73
## Adaptive Immune System 73
## Class A 1 Rhodopsin Like Receptors 73
## Toll Like Receptor Cascades 73
## Tnfr2 Non Canonical Nf Kb Pathway 73
## Pi3k Akt Signaling In Cancer 73
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 73
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 73
## Negative Regulation Of The Pi3k Akt Network 73
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 73
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 73
## Inflammasomes 73
## Programmed Cell Death 73
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 73
## Costimulation By The Cd28 Family 73
## Constitutive Signaling By Aberrant Pi3k In Cancer 73
## Tnfs Bind Their Physiological Receptors 73
## Infectious Disease 73
## Activation Of Matrix Metalloproteinases 73
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 73
## Toll Like Receptor 9 Tlr9 Cascade 73
## Myd88 Independent Tlr4 Cascade 73
## Cd163 Mediating An Anti Inflammatory Response 73
## Egfr Transactivation By Gastrin 73
## Extracellular Matrix Organization 73
## Dap12 Interactions 73
## Intracellular Signaling By Second Messengers 73
## Mapk3 Erk1 Activation 73
## Senescence Associated Secretory Phenotype Sasp 73
## Post Translational Protein Modification 73
## Complement Cascade 73
## Interleukin 6 Signaling 73
## Cd28 Dependent Vav1 Pathway 73
## Esr Mediated Signaling 73
## Trafficking And Processing Of Endosomal Tlr 73
## Interleukin 12 Family Signaling 73
## Signaling By Receptor Tyrosine Kinases 73
## Collagen Degradation 73
## The Nlrp3 Inflammasome 73
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 73
## Interleukin 17 Signaling 73
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 73
## Ctla4 Inhibitory Signaling 73
## Interleukin 37 Signaling 73
## Signal Transduction By L1 73
## Cd28 Dependent Pi3k Akt Signaling 73
## Raf Independent Mapk1 3 Activation 73
## Signaling By Nuclear Receptors 73
## Interleukin 6 Family Signaling 73
## Interferon Gamma Signaling 73
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 73
## Cellular Senescence 73
## Pd 1 Signaling 73
## Toll Like Receptor Tlr1 Tlr2 Cascade 73
## Diseases Of Immune System 73
## Mapk Targets Nuclear Events Mediated By Map Kinases 73
## Cargo Recognition For Clathrin Mediated Endocytosis 73
## Antigen Processing Cross Presentation 73
## Perk Regulates Gene Expression 73
## Cd28 Co Stimulation 73
## Nod1 2 Signaling Pathway 73
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 73
## Ngf Stimulated Transcription 73
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 73
## Signaling By Scf Kit 73
## Interleukin 2 Family Signaling 73
## Signaling By Ntrks 73
## Interleukin 12 Signaling 73
## Degradation Of The Extracellular Matrix 73
## Death Receptor Signalling 73
## Clathrin Mediated Endocytosis 73
## Eph Ephrin Mediated Repulsion Of Cells 73
## Signaling By Ptk6 73
## Deubiquitination 73
## G2 M Dna Replication Checkpoint 73
## Mecp2 Regulates Transcription Factors 73
## Runx2 Regulates Chondrocyte Maturation 73
## Assembly Of Collagen Fibrils And Other Multimeric Structures 73
## Cytosolic Sensors Of Pathogen Associated Dna 73
## Nuclear Events Kinase And Transcription Factor Activation 73
## Clec7a Inflammasome Pathway 73
## Fibronectin Matrix Formation 73
## Hemostasis 73
## Mapk Family Signaling Cascades 73
## Phosphorylation Of Emi1 73
## Ptk6 Promotes Hif1a Stabilization 73
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 73
## Circadian Clock 73
## Rhob Gtpase Cycle 73
## Activation Of Nima Kinases Nek9 Nek6 Nek7 73
## Creb Phosphorylation 73
## Rhoc Gtpase Cycle 73
## Rhog Gtpase Cycle 73
## Cell Surface Interactions At The Vascular Wall 73
## Cellular Responses To External Stimuli 73
## Activation Of C3 And C5 73
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 73
## Interferon Signaling 73
## Interleukin 18 Signaling 73
## Mecp2 Regulates Transcription Of Neuronal Ligands 73
## Runx2 Regulates Genes Involved In Cell Migration 73
## Rna Polymerase Ii Transcription 73
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 73
## E2f Enabled Inhibition Of Pre Replication Complex Formation 73
## Egfr Interacts With Phospholipase C Gamma 73
## Interleukin 23 Signaling 73
## Interleukin 9 Signaling 73
## Mapk1 Erk2 Activation 73
## Fceri Mediated Mapk Activation 73
## G Alpha Q Signalling Events 73
## Activation Of The Ap 1 Family Of Transcription Factors 73
## Akt Phosphorylates Targets In The Nucleus 73
## Camk Iv Mediated Phosphorylation Of Creb 73
## Interleukin 21 Signaling 73
## Mastl Facilitates Mitotic Progression 73
## P75ntr Regulates Axonogenesis 73
## Rac2 Gtpase Cycle 73
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 73
## Collagen Formation 73
## Transcriptional Regulation Of Granulopoiesis 73
## Eph Ephrin Signaling 73
## Unfolded Protein Response Upr 73
## Condensation Of Prometaphase Chromosomes 73
## Endosomal Vacuolar Pathway 73
## Interleukin 27 Signaling 73
## Signaling By Leptin 73
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 73
## Class B 2 Secretin Family Receptors 73
## Fcgr3a Mediated Il10 Synthesis 73
## Rac3 Gtpase Cycle 73
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 73
## Interleukin 35 Signalling 73
## Killing Mechanisms 73
## Notch2 Intracellular Domain Regulates Transcription 73
## P75 Ntr Receptor Mediated Signalling 73
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 73
## Tandem Pore Domain Potassium Channels 73
## Ticam1 Dependent Activation Of Irf3 Irf7 73
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 73
## Vldlr Internalisation And Degradation 73
## Advanced Glycosylation Endproduct Receptor Signaling 73
## Apoptosis Induced Dna Fragmentation 73
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 73
## Copi Mediated Anterograde Transport 73
## Dissolution Of Fibrin Clot 73
## Erbb2 Activates Ptk6 Signaling 73
## Interleukin 1 Signaling 73
## Irf3 Mediated Induction Of Type I Ifn 73
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 73
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 73
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 73
## Golgi Cisternae Pericentriolar Stack Reorganization 73
## Interleukin 15 Signaling 73
## Shc1 Events In Egfr Signaling 73
## Constitutive Signaling By Egfrviii 73
## Depolymerisation Of The Nuclear Lamina 73
## Erbb2 Regulates Cell Motility 73
## Membrane Trafficking 73
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 73
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 73
## Wnt5a Dependent Internalization Of Fzd4 73
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 73
## Platelet Activation Signaling And Aggregation 73
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 73
## Grb2 Events In Erbb2 Signaling 73
## Pi3k Events In Erbb2 Signaling 73
## Signaling By Erbb2 Ecd Mutants 73
## Sting Mediated Induction Of Host Immune Responses 73
## Sumoylation Of Dna Methylation Proteins 73
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 73
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 73
## Gab1 Signalosome 73
## Rip Mediated Nfkb Activation Via Zbp1 73
## Transcriptional Regulation By Runx2 73
## Irak4 Deficiency Tlr2 4 73
## L1cam Interactions 73
## Mecp2 Regulates Neuronal Receptors And Channels 73
## Signaling By Cytosolic Fgfr1 Fusion Mutants 73
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 73
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 73
## Cytoprotection By Hmox1 73
## Initiation Of Nuclear Envelope Ne Reformation 73
## Ldl Clearance 73
## Phase 4 Resting Membrane Potential 73
## Phosphorylation Of The Apc C 73
## Pka Mediated Phosphorylation Of Creb 73
## Signaling By Kit In Disease 73
## Signaling By Pdgfr In Disease 73
## Regulation Of Tlr By Endogenous Ligand 73
## Zbp1 Dai Mediated Induction Of Type I Ifns 73
## Response To Elevated Platelet Cytosolic Ca2 73
## Adora2b Mediated Anti Inflammatory Cytokines Production 73
## E2f Mediated Regulation Of Dna Replication 73
## Shc1 Events In Erbb2 Signaling 73
## Hcmv Early Events 73
## Ikk Complex Recruitment Mediated By Rip1 73
## Termination Of O Glycan Biosynthesis 73
## Asparagine N Linked Glycosylation 73
## C Type Lectin Receptors Clrs 73
## Apc C Cdc20 Mediated Degradation Of Cyclin B 73
## Growth Hormone Receptor Signaling 73
## Runx2 Regulates Osteoblast Differentiation 73
## Traf6 Mediated Nf Kb Activation 73
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 73
## Cyclin A B1 B2 Associated Events During G2 M Transition 73
## Inactivation Of Csf3 G Csf Signaling 73
## Notch3 Activation And Transmission Of Signal To The Nucleus 73
## Signaling By Egfr In Cancer 73
## Vesicle Mediated Transport 73
## Constitutive Signaling By Akt1 E17k In Cancer 73
## Dectin 2 Family 73
## Interleukin 20 Family Signaling 73
## Signaling By Erbb2 In Cancer 73
## Wnt Ligand Biogenesis And Trafficking 73
## Rhoa Gtpase Cycle 73
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 73
## G0 And Early G1 73
## Interleukin Receptor Shc Signaling 73
## Vegfr2 Mediated Vascular Permeability 73
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 73
## Er To Golgi Anterograde Transport 73
## Dap12 Signaling 73
## Downregulation Of Erbb2 Signaling 73
## Downstream Signal Transduction 73
## G1 S Specific Transcription 73
## Ripk1 Mediated Regulated Necrosis 73
## Cdc42 Gtpase Cycle 73
## Cellular Response To Chemical Stress 73
## Signaling By Csf3 G Csf 73
## Tnfr1 Induced Nfkappab Signaling Pathway 73
## Hcmv Infection 73
## Egfr Downregulation 73
## Fgfr1 Mutant Receptor Activation 73
## Runx2 Regulates Bone Development 73
## Transcriptional Regulation Of Pluripotent Stem Cells 73
## Regulation Of Mecp2 Expression And Activity 73
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 73
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 73
## Cargo Concentration In The Er 73
## Plasma Lipoprotein Clearance 73
## Sialic Acid Metabolism 73
## Signaling By Notch2 73
## Gpvi Mediated Activation Cascade 73
## Regulation Of Tnfr1 Signaling 73
## Transcriptional Regulation By Tp53 73
## Apoptosis 73
## Association Of Tric Cct With Target Proteins During Biosynthesis 73
## Ca Dependent Events 73
## Class I Mhc Mediated Antigen Processing Presentation 73
## Fc Epsilon Receptor Fceri Signaling 73
## Generation Of Second Messenger Molecules 73
## Interleukin 7 Signaling 73
## Metalloprotease Dubs 73
## Nervous System Development 73
## Nuclear Pore Complex Npc Disassembly 73
## Ovarian Tumor Domain Proteases 73
## Rac1 Gtpase Cycle 73
## Regulation Of Tp53 Expression And Degradation 73
## Rhoh Gtpase Cycle 73
## Signaling By Fgfr1 In Disease 73
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 73
## Transport To The Golgi And Subsequent Modification 73
## Beta Defensins 73
## Dag And Ip3 Signaling 73
## Rhof Gtpase Cycle 73
## Sumoylation 73
## Transcriptional Regulation By Ventx 73
## Sumoylation Of Transcription Cofactors 73
## Tnf Signaling 73
## Tp53 Regulates Transcription Of Cell Death Genes 73
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 73
## Heme Signaling 73
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 73
## Irs Mediated Signalling 73
## Retrograde Transport At The Trans Golgi Network 73
## Signaling By Egfr 73
## Signaling By Erbb2 73
## Signaling By Notch3 73
## Tp53 Regulates Transcription Of Cell Cycle Genes 73
## Apoptotic Execution Phase 73
## Defensins 73
## Nuclear Envelope Breakdown 73
## Rhod Gtpase Cycle 73
## Ub Specific Processing Proteases 73
## G Protein Mediated Events 73
## Insulin Receptor Signalling Cascade 73
## Intrinsic Pathway For Apoptosis 73
## Rhoj Gtpase Cycle 73
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 73
## Transcriptional Activation Of Mitochondrial Biogenesis 73
## Nrage Signals Death Through Jnk 73
## Rhoq Gtpase Cycle 73
## Signaling By Erbb4 73
## Signaling By Pdgf 73
## Transcriptional Regulation By Runx1 73
## Asymmetric Localization Of Pcp Proteins 73
## Ca2 Pathway 73
## Dna Methylation 73
## Ncam Signaling For Neurite Out Growth 73
## O Linked Glycosylation Of Mucins 73
## Signaling By Fgfr In Disease 73
## Signaling By Notch 73
## Synthesis Of Substrates In N Glycan Biosythesis 73
## Tp53 Regulates Transcription Of Dna Repair Genes 73
## Transcriptional Regulation By Mecp2 73
## Copii Mediated Vesicle Transport 73
## Diseases Associated With O Glycosylation Of Proteins 73
## Aurka Activation By Tpx2 73
## Interferon Alpha Beta Signaling 73
## Plasma Lipoprotein Assembly Remodeling And Clearance 73
## Prc2 Methylates Histones And Dna 73
## Regulation Of Runx2 Expression And Activity 73
## Signaling By Tgf Beta Receptor Complex 73
## Cell Death Signalling Via Nrage Nrif And Nade 73
## Condensation Of Prophase Chromosomes 73
## Ecm Proteoglycans 73
## Nuclear Envelope Ne Reassembly 73
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 73
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 73
## G Alpha 12 13 Signalling Events 73
## Initial Triggering Of Complement 73
## Potential Therapeutics For Sars 73
## Recruitment Of Mitotic Centrosome Proteins And Complexes 73
## Rmts Methylate Histone Arginines 73
## Signaling By Insulin Receptor 73
## Signaling By Met 73
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 73
## Integrin Cell Surface Interactions 73
## Organelle Biogenesis And Maintenance 73
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 73
## Apc C Mediated Degradation Of Cell Cycle Proteins 73
## Fceri Mediated Ca 2 Mobilization 73
## Opioid Signalling 73
## Regulation Of Plk1 Activity At G2 M Transition 73
## Activation Of Nmda Receptors And Postsynaptic Events 73
## Mapk6 Mapk4 Signaling 73
## Mitochondrial Biogenesis 73
## Pcp Ce Pathway 73
## Anchoring Of The Basal Body To The Plasma Membrane 73
## Antimicrobial Peptides 73
## G2 M Dna Damage Checkpoint 73
## Protein Folding 73
## Recruitment Of Numa To Mitotic Centrosomes 73
## Clec7a Dectin 1 Signaling 73
## Diseases Of Programmed Cell Death 73
## Signaling By Tgfb Family Members 73
## Developmental Biology 73
## Potassium Channels 73
## Signaling By Vegf 73
## Stimuli Sensing Channels 73
## Amyloid Fiber Formation 73
## O Linked Glycosylation 73
## Parasite Infection 73
## Tcr Signaling 73
## Cardiac Conduction 73
## Mhc Class Ii Antigen Presentation 73
## Oxidative Stress Induced Senescence 73
## Resolution Of Sister Chromatid Cohesion 73
## Diseases Of Glycosylation 73
## Fcgamma Receptor Fcgr Dependent Phagocytosis 73
## Mitotic Prophase 73
## Beta Catenin Independent Wnt Signaling 73
## Epigenetic Regulation Of Gene Expression 73
## Estrogen Dependent Gene Expression 73
## Mitotic G1 Phase And G1 S Transition 73
## Neuronal System 73
## Sars Cov Infections 73
## Regulation Of Tp53 Activity 73
## Rho Gtpase Cycle 73
## Signaling By The B Cell Receptor Bcr 73
## G2 M Checkpoints 73
## Ion Channel Transport 73
## Muscle Contraction 73
## Cilium Assembly 73
## Intra Golgi And Retrograde Golgi To Er Traffic 73
## Mitotic G2 G2 M Phases 73
## Mitotic Prometaphase 73
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 73
## Mitotic Metaphase And Anaphase 73
## Tcf Dependent Signaling In Response To Wnt 73
## Diseases Of Metabolism 73
## Transmission Across Chemical Synapses 73
## Chromatin Modifying Enzymes 73
## Cell Cycle Checkpoints 73
## Signaling By Wnt 73
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 73
## Transport Of Small Molecules 73
## M Phase 73
## Cell Cycle Mitotic 73
## Cell Cycle 73
## 2 Ltr Circle Formation 73
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 73
## Abacavir Metabolism 73
## Abacavir Transmembrane Transport 73
## Abacavir Transport And Metabolism 73
## Abc Family Proteins Mediated Transport 73
## Abc Transporter Disorders 73
## Abc Transporters In Lipid Homeostasis 73
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 73
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 73
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 73
## Acetylcholine Binding And Downstream Events 73
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 73
## Acetylcholine Neurotransmitter Release Cycle 73
## Acetylcholine Regulates Insulin Secretion 73
## Acrosome Reaction And Sperm Oocyte Membrane Binding 73
## Activated Notch1 Transmits Signal To The Nucleus 73
## Activated Ntrk2 Signals Through Cdk5 73
## Activated Ntrk2 Signals Through Frs2 And Frs3 73
## Activated Ntrk2 Signals Through Fyn 73
## Activated Ntrk2 Signals Through Pi3k 73
## Activated Ntrk2 Signals Through Ras 73
## Activated Ntrk3 Signals Through Pi3k 73
## Activated Ntrk3 Signals Through Ras 73
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 73
## Activated Tak1 Mediates P38 Mapk Activation 73
## Activation Of Ampk Downstream Of Nmdars 73
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 73
## Activation Of Atr In Response To Replication Stress 73
## Activation Of Bad And Translocation To Mitochondria 73
## Activation Of Bh3 Only Proteins 73
## Activation Of Caspases Through Apoptosome Mediated Cleavage 73
## Activation Of Gene Expression By Srebf Srebp 73
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 73
## Activation Of Kainate Receptors Upon Glutamate Binding 73
## Activation Of Noxa And Translocation To Mitochondria 73
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 73
## Activation Of Puma And Translocation To Mitochondria 73
## Activation Of Rac1 73
## Activation Of Rac1 Downstream Of Nmdars 73
## Activation Of Ras In B Cells 73
## Activation Of Smo 73
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 73
## Activation Of The Phototransduction Cascade 73
## Activation Of The Pre Replicative Complex 73
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 73
## Activation Of Trka Receptors 73
## Acyl Chain Remodeling Of Cl 73
## Acyl Chain Remodeling Of Dag And Tag 73
## Acyl Chain Remodelling Of Pc 73
## Acyl Chain Remodelling Of Pe 73
## Acyl Chain Remodelling Of Pg 73
## Acyl Chain Remodelling Of Pi 73
## Acyl Chain Remodelling Of Ps 73
## Adenylate Cyclase Activating Pathway 73
## Adenylate Cyclase Inhibitory Pathway 73
## Adherens Junctions Interactions 73
## Adp Signalling Through P2y Purinoceptor 1 73
## Adp Signalling Through P2y Purinoceptor 12 73
## Adrenaline Noradrenaline Inhibits Insulin Secretion 73
## Adrenoceptors 73
## Aflatoxin Activation And Detoxification 73
## Aggrephagy 73
## Akt Phosphorylates Targets In The Cytosol 73
## Alpha Defensins 73
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 73
## Alpha Oxidation Of Phytanate 73
## Alpha Protein Kinase 1 Signaling Pathway 73
## Alternative Complement Activation 73
## Amine Ligand Binding Receptors 73
## Amino Acid Conjugation 73
## Amino Acid Transport Across The Plasma Membrane 73
## Amino Acids Regulate Mtorc1 73
## Ampk Inhibits Chrebp Transcriptional Activation Activity 73
## Anchoring Fibril Formation 73
## Androgen Biosynthesis 73
## Antigen Processing Ubiquitination Proteasome Degradation 73
## Antiviral Mechanism By Ifn Stimulated Genes 73
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 73
## Apc Cdc20 Mediated Degradation Of Nek2a 73
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 73
## Apobec3g Mediated Resistance To Hiv 1 Infection 73
## Apoptotic Cleavage Of Cell Adhesion Proteins 73
## Apoptotic Cleavage Of Cellular Proteins 73
## Apoptotic Factor Mediated Response 73
## Aquaporin Mediated Transport 73
## Arachidonate Production From Dag 73
## Arachidonic Acid Metabolism 73
## Arms Mediated Activation 73
## Aryl Hydrocarbon Receptor Signalling 73
## Aspartate And Asparagine Metabolism 73
## Assembly And Cell Surface Presentation Of Nmda Receptors 73
## Assembly Of Active Lpl And Lipc Lipase Complexes 73
## Assembly Of The Hiv Virion 73
## Assembly Of The Orc Complex At The Origin Of Replication 73
## Assembly Of The Pre Replicative Complex 73
## Atf6 Atf6 Alpha Activates Chaperone Genes 73
## Atf6 Atf6 Alpha Activates Chaperones 73
## Attachment And Entry 73
## Attachment Of Gpi Anchor To Upar 73
## Attenuation Phase 73
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 73
## Autophagy 73
## B Wich Complex Positively Regulates Rrna Expression 73
## Base Excision Repair 73
## Base Excision Repair Ap Site Formation 73
## Basigin Interactions 73
## Bbsome Mediated Cargo Targeting To Cilium 73
## Beta Catenin Phosphorylation Cascade 73
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 73
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 73
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 73
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 73
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 73
## Beta Oxidation Of Pristanoyl Coa 73
## Beta Oxidation Of Very Long Chain Fatty Acids 73
## Bicarbonate Transporters 73
## Bile Acid And Bile Salt Metabolism 73
## Binding And Uptake Of Ligands By Scavenger Receptors 73
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 73
## Biological Oxidations 73
## Biosynthesis Of Epa Derived Spms 73
## Biosynthesis Of Maresin Like Spms 73
## Biosynthesis Of Maresins 73
## Biosynthesis Of Specialized Proresolving Mediators Spms 73
## Biotin Transport And Metabolism 73
## Blood Group Systems Biosynthesis 73
## Branched Chain Amino Acid Catabolism 73
## Budding And Maturation Of Hiv Virion 73
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 73
## Butyrophilin Btn Family Interactions 73
## Ca2 Activated K Channels 73
## Calcineurin Activates Nfat 73
## Calcitonin Like Ligand Receptors 73
## Calnexin Calreticulin Cycle 73
## Carboxyterminal Post Translational Modifications Of Tubulin 73
## Cargo Trafficking To The Periciliary Membrane 73
## Carnitine Metabolism 73
## Caspase Activation Via Death Receptors In The Presence Of Ligand 73
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 73
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 73
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 73
## Cation Coupled Chloride Cotransporters 73
## Cd209 Dc Sign Signaling 73
## Cd22 Mediated Bcr Regulation 73
## Cdc6 Association With The Orc Origin Complex 73
## Cell Cell Communication 73
## Cell Cell Junction Organization 73
## Cell Extracellular Matrix Interactions 73
## Cell Junction Organization 73
## Cellular Hexose Transport 73
## Cellular Response To Heat Stress 73
## Cellular Response To Hypoxia 73
## Cellular Response To Starvation 73
## Cgmp Effects 73
## Chaperone Mediated Autophagy 73
## Chl1 Interactions 73
## Cholesterol Biosynthesis 73
## Choline Catabolism 73
## Chondroitin Sulfate Biosynthesis 73
## Chondroitin Sulfate Dermatan Sulfate Metabolism 73
## Chrebp Activates Metabolic Gene Expression 73
## Chromosome Maintenance 73
## Chylomicron Assembly 73
## Chylomicron Clearance 73
## Chylomicron Remodeling 73
## Citric Acid Cycle Tca Cycle 73
## Class C 3 Metabotropic Glutamate Pheromone Receptors 73
## Class I Peroxisomal Membrane Protein Import 73
## Clec7a Dectin 1 Induces Nfat Activation 73
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 73
## Coenzyme A Biosynthesis 73
## Cohesin Loading Onto Chromatin 73
## Collagen Biosynthesis And Modifying Enzymes 73
## Collagen Chain Trimerization 73
## Common Pathway Of Fibrin Clot Formation 73
## Competing Endogenous Rnas Cernas Regulate Pten Translation 73
## Complex I Biogenesis 73
## Conjugation Of Benzoate With Glycine 73
## Constitutive Signaling By Overexpressed Erbb2 73
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 73
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 73
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 73
## Copi Dependent Golgi To Er Retrograde Traffic 73
## Copi Independent Golgi To Er Retrograde Traffic 73
## Creatine Metabolism 73
## Creation Of C4 And C2 Activators 73
## Creb3 Factors Activate Genes 73
## Cristae Formation 73
## Crmps In Sema3a Signaling 73
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 73
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 73
## Crosslinking Of Collagen Fibrils 73
## Cs Ds Degradation 73
## Cyclin A Cdk2 Associated Events At S Phase Entry 73
## Cyclin D Associated Events In G1 73
## Cyp2e1 Reactions 73
## Cytochrome C Mediated Apoptotic Response 73
## Cytochrome P450 Arranged By Substrate Type 73
## Cytosolic Iron Sulfur Cluster Assembly 73
## Cytosolic Sulfonation Of Small Molecules 73
## Cytosolic Trna Aminoacylation 73
## Darpp 32 Events 73
## Dcc Mediated Attractive Signaling 73
## Deactivation Of The Beta Catenin Transactivating Complex 73
## Deadenylation Dependent Mrna Decay 73
## Deadenylation Of Mrna 73
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 73
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 73
## Defective B4galt7 Causes Eds Progeroid Type 73
## Defective Cftr Causes Cystic Fibrosis 73
## Defective Chst14 Causes Eds Musculocontractural Type 73
## Defective Chst3 Causes Sedcjd 73
## Defective Chst6 Causes Mcdc1 73
## Defective Chsy1 Causes Tpbs 73
## Defective Csf2rb Causes Smdp5 73
## Defective Ext2 Causes Exostoses 2 73
## Defective F9 Activation 73
## Defective Factor Ix Causes Hemophilia B 73
## Defective Factor Viii Causes Hemophilia A 73
## Defective Lfng Causes Scdo3 73
## Defective Ripk1 Mediated Regulated Necrosis 73
## Defective St3gal3 Causes Mct12 And Eiee15 73
## Defects In Biotin Btn Metabolism 73
## Defects In Cobalamin B12 Metabolism 73
## Defects In Vitamin And Cofactor Metabolism 73
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 73
## Degradation Of Axin 73
## Degradation Of Beta Catenin By The Destruction Complex 73
## Degradation Of Cysteine And Homocysteine 73
## Degradation Of Dvl 73
## Degradation Of Gli1 By The Proteasome 73
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 73
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 73
## Dermatan Sulfate Biosynthesis 73
## Detoxification Of Reactive Oxygen Species 73
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 73
## Digestion 73
## Digestion And Absorption 73
## Digestion Of Dietary Carbohydrate 73
## Digestion Of Dietary Lipid 73
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 73
## Diseases Associated With Glycosaminoglycan Metabolism 73
## Diseases Associated With Glycosylation Precursor Biosynthesis 73
## Diseases Associated With N Glycosylation Of Proteins 73
## Diseases Associated With Surfactant Metabolism 73
## Diseases Of Base Excision Repair 73
## Diseases Of Carbohydrate Metabolism 73
## Diseases Of Dna Repair 73
## Diseases Of Mismatch Repair Mmr 73
## Diseases Of Mitotic Cell Cycle 73
## Disinhibition Of Snare Formation 73
## Disorders Of Transmembrane Transporters 73
## Displacement Of Dna Glycosylase By Apex1 73
## Dna Damage Bypass 73
## Dna Damage Recognition In Gg Ner 73
## Dna Damage Reversal 73
## Dna Damage Telomere Stress Induced Senescence 73
## Dna Double Strand Break Repair 73
## Dna Double Strand Break Response 73
## Dna Repair 73
## Dna Replication 73
## Dna Replication Initiation 73
## Dna Replication Pre Initiation 73
## Dna Strand Elongation 73
## Dopamine Neurotransmitter Release Cycle 73
## Dopamine Receptors 73
## Downregulation Of Erbb2 Erbb3 Signaling 73
## Downregulation Of Erbb4 Signaling 73
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 73
## Downregulation Of Tgf Beta Receptor Signaling 73
## Downstream Signaling Events Of B Cell Receptor Bcr 73
## Downstream Signaling Of Activated Fgfr1 73
## Downstream Signaling Of Activated Fgfr2 73
## Downstream Signaling Of Activated Fgfr3 73
## Downstream Signaling Of Activated Fgfr4 73
## Dscam Interactions 73
## Dual Incision In Gg Ner 73
## Dual Incision In Tc Ner 73
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 73
## Early Phase Of Hiv Life Cycle 73
## Effects Of Pip2 Hydrolysis 73
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 73
## Eicosanoid Ligand Binding Receptors 73
## Eicosanoids 73
## Elastic Fibre Formation 73
## Electric Transmission Across Gap Junctions 73
## Elevation Of Cytosolic Ca2 Levels 73
## Endogenous Sterols 73
## Endosomal Sorting Complex Required For Transport Escrt 73
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 73
## Enos Activation 73
## Epha Mediated Growth Cone Collapse 73
## Ephb Mediated Forward Signaling 73
## Ephrin Signaling 73
## Er Quality Control Compartment Erqc 73
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 73
## Erk Mapk Targets 73
## Erks Are Inactivated 73
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 73
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 73
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 73
## Erythropoietin Activates Phospholipase C Gamma Plcg 73
## Erythropoietin Activates Ras 73
## Erythropoietin Activates Stat5 73
## Establishment Of Sister Chromatid Cohesion 73
## Estrogen Biosynthesis 73
## Estrogen Stimulated Signaling Through Prkcz 73
## Ethanol Oxidation 73
## Eukaryotic Translation Elongation 73
## Eukaryotic Translation Initiation 73
## Export Of Viral Ribonucleoproteins From Nucleus 73
## Extension Of Telomeres 73
## Extrinsic Pathway Of Fibrin Clot Formation 73
## Factors Involved In Megakaryocyte Development And Platelet Production 73
## Fanconi Anemia Pathway 73
## Fasl Cd95l Signaling 73
## Fatty Acid Metabolism 73
## Fatty Acids 73
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 73
## Fatty Acyl Coa Biosynthesis 73
## Fbxw7 Mutants And Notch1 In Cancer 73
## Fceri Mediated Nf Kb Activation 73
## Fcgr Activation 73
## Fertilization 73
## Fgfr1 Ligand Binding And Activation 73
## Fgfr1b Ligand Binding And Activation 73
## Fgfr1c Ligand Binding And Activation 73
## Fgfr2 Alternative Splicing 73
## Fgfr2 Ligand Binding And Activation 73
## Fgfr2 Mutant Receptor Activation 73
## Fgfr2b Ligand Binding And Activation 73
## Fgfr2c Ligand Binding And Activation 73
## Fgfr3 Ligand Binding And Activation 73
## Fgfr3b Ligand Binding And Activation 73
## Fgfrl1 Modulation Of Fgfr1 Signaling 73
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 73
## Flt3 Signaling 73
## Flt3 Signaling By Cbl Mutants 73
## Flt3 Signaling In Disease 73
## Flt3 Signaling Through Src Family Kinases 73
## Folding Of Actin By Cct Tric 73
## Formation Of Apoptosome 73
## Formation Of Atp By Chemiosmotic Coupling 73
## Formation Of Fibrin Clot Clotting Cascade 73
## Formation Of Incision Complex In Gg Ner 73
## Formation Of Rna Pol Ii Elongation Complex 73
## Formation Of Senescence Associated Heterochromatin Foci Sahf 73
## Formation Of Tc Ner Pre Incision Complex 73
## Formation Of The Beta Catenin Tcf Transactivating Complex 73
## Formation Of The Cornified Envelope 73
## Formation Of The Early Elongation Complex 73
## Formation Of Tubulin Folding Intermediates By Cct Tric 73
## Formation Of Xylulose 5 Phosphate 73
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 73
## Foxo Mediated Transcription 73
## Foxo Mediated Transcription Of Cell Cycle Genes 73
## Foxo Mediated Transcription Of Cell Death Genes 73
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 73
## Free Fatty Acid Receptors 73
## Free Fatty Acids Regulate Insulin Secretion 73
## Frs Mediated Fgfr1 Signaling 73
## Frs Mediated Fgfr2 Signaling 73
## Frs Mediated Fgfr3 Signaling 73
## Frs Mediated Fgfr4 Signaling 73
## Fructose Catabolism 73
## Fructose Metabolism 73
## G Alpha S Signalling Events 73
## G Alpha Z Signalling Events 73
## G Beta Gamma Signalling Through Cdc42 73
## G Beta Gamma Signalling Through Pi3kgamma 73
## G Protein Activation 73
## G Protein Beta Gamma Signalling 73
## G1 S Dna Damage Checkpoints 73
## G2 Phase 73
## Gaba B Receptor Activation 73
## Gaba Receptor Activation 73
## Gaba Synthesis Release Reuptake And Degradation 73
## Galactose Catabolism 73
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 73
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 73
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 73
## Gap Junction Assembly 73
## Gap Junction Degradation 73
## Gap Junction Trafficking And Regulation 73
## Gdp Fucose Biosynthesis 73
## Gene Silencing By Rna 73
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 73
## Global Genome Nucleotide Excision Repair Gg Ner 73
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 73
## Glucagon Signaling In Metabolic Regulation 73
## Glucagon Type Ligand Receptors 73
## Glucocorticoid Biosynthesis 73
## Gluconeogenesis 73
## Glucose Metabolism 73
## Glucuronidation 73
## Glutamate And Glutamine Metabolism 73
## Glutamate Neurotransmitter Release Cycle 73
## Glutathione Conjugation 73
## Glutathione Synthesis And Recycling 73
## Glycerophospholipid Biosynthesis 73
## Glycerophospholipid Catabolism 73
## Glycogen Breakdown Glycogenolysis 73
## Glycogen Metabolism 73
## Glycogen Storage Diseases 73
## Glycogen Synthesis 73
## Glycolysis 73
## Glycosaminoglycan Metabolism 73
## Glycosphingolipid Metabolism 73
## Glyoxylate Metabolism And Glycine Degradation 73
## Golgi Associated Vesicle Biogenesis 73
## Golgi To Er Retrograde Transport 73
## Gp1b Ix V Activation Signalling 73
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 73
## Grb7 Events In Erbb2 Signaling 73
## Hats Acetylate Histones 73
## Hcmv Late Events 73
## Hdacs Deacetylate Histones 73
## Hdl Assembly 73
## Hdl Clearance 73
## Hdl Remodeling 73
## Hdms Demethylate Histones 73
## Hdr Through Homologous Recombination Hrr 73
## Hdr Through Mmej Alt Nhej 73
## Hdr Through Single Strand Annealing Ssa 73
## Hedgehog Ligand Biogenesis 73
## Hedgehog Off State 73
## Hedgehog On State 73
## Heme Biosynthesis 73
## Heme Degradation 73
## Heparan Sulfate Heparin Hs Gag Metabolism 73
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 73
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 73
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 73
## Histidine Catabolism 73
## Hiv Elongation Arrest And Recovery 73
## Hiv Infection 73
## Hiv Life Cycle 73
## Hiv Transcription Elongation 73
## Hiv Transcription Initiation 73
## Homologous Dna Pairing And Strand Exchange 73
## Homology Directed Repair 73
## Hormone Ligand Binding Receptors 73
## Host Interactions Of Hiv Factors 73
## Hs Gag Biosynthesis 73
## Hs Gag Degradation 73
## Hsf1 Activation 73
## Hsf1 Dependent Transactivation 73
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 73
## Hur Elavl1 Binds And Stabilizes Mrna 73
## Hyaluronan Biosynthesis And Export 73
## Hyaluronan Metabolism 73
## Hyaluronan Uptake And Degradation 73
## Hydrolysis Of Lpc 73
## Ikba Variant Leads To Eda Id 73
## Il 6 Type Cytokine Receptor Ligand Interactions 73
## Inactivation Of Cdc42 And Rac1 73
## Incretin Synthesis Secretion And Inactivation 73
## Infection With Mycobacterium Tuberculosis 73
## Influenza Infection 73
## Inhibition Of Dna Recombination At Telomere 73
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 73
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 73
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 73
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 73
## Inositol Phosphate Metabolism 73
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 73
## Insulin Processing 73
## Insulin Receptor Recycling 73
## Integration Of Energy Metabolism 73
## Integration Of Provirus 73
## Integrin Signaling 73
## Interaction Between L1 And Ankyrins 73
## Interaction With Cumulus Cells And The Zona Pellucida 73
## Interactions Of Rev With Host Cellular Proteins 73
## Interactions Of Vpr With Host Cellular Proteins 73
## Interconversion Of Nucleotide Di And Triphosphates 73
## Interleukin 2 Signaling 73
## Interleukin 36 Pathway 73
## Intestinal Absorption 73
## Intra Golgi Traffic 73
## Intraflagellar Transport 73
## Intrinsic Pathway Of Fibrin Clot Formation 73
## Inwardly Rectifying K Channels 73
## Ion Homeostasis 73
## Ion Transport By P Type Atpases 73
## Ionotropic Activity Of Kainate Receptors 73
## Irak1 Recruits Ikk Complex 73
## Irak2 Mediated Activation Of Tak1 Complex 73
## Ire1alpha Activates Chaperones 73
## Irf3 Mediated Activation Of Type 1 Ifn 73
## Iron Uptake And Transport 73
## Irs Activation 73
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 73
## Josephin Domain Dubs 73
## Keratan Sulfate Biosynthesis 73
## Keratan Sulfate Degradation 73
## Keratan Sulfate Keratin Metabolism 73
## Keratinization 73
## Ketone Body Metabolism 73
## Kinesins 73
## Ksrp Khsrp Binds And Destabilizes Mrna 73
## Lagging Strand Synthesis 73
## Laminin Interactions 73
## Late Endosomal Microautophagy 73
## Lectin Pathway Of Complement Activation 73
## Leukotriene Receptors 73
## Lgi Adam Interactions 73
## Ligand Receptor Interactions 73
## Linoleic Acid La Metabolism 73
## Lipid Particle Organization 73
## Lipophagy 73
## Listeria Monocytogenes Entry Into Host Cells 73
## Long Term Potentiation 73
## Loss Of Function Of Mecp2 In Rett Syndrome 73
## Loss Of Function Of Smad2 3 In Cancer 73
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 73
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 73
## Ltc4 Cysltr Mediated Il4 Production 73
## Lysine Catabolism 73
## Lysosome Vesicle Biogenesis 73
## Lysosphingolipid And Lpa Receptors 73
## Map2k And Mapk Activation 73
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 73
## Maturation Of Nucleoprotein 73
## Maturation Of Protein 3a 73
## Maturation Of Sars Cov 1 Spike Protein 73
## Maturation Of Sars Cov 2 Spike Protein 73
## Meiosis 73
## Meiotic Recombination 73
## Meiotic Synapsis 73
## Melanin Biosynthesis 73
## Met Activates Pi3k Akt Signaling 73
## Met Activates Ptk2 Signaling 73
## Met Activates Ptpn11 73
## Met Activates Rap1 And Rac1 73
## Met Activates Ras Signaling 73
## Met Interacts With Tns Proteins 73
## Met Promotes Cell Motility 73
## Met Receptor Activation 73
## Met Receptor Recycling 73
## Metabolic Disorders Of Biological Oxidation Enzymes 73
## Metabolism Of Amine Derived Hormones 73
## Metabolism Of Amino Acids And Derivatives 73
## Metabolism Of Angiotensinogen To Angiotensins 73
## Metabolism Of Carbohydrates 73
## Metabolism Of Cofactors 73
## Metabolism Of Fat Soluble Vitamins 73
## Metabolism Of Folate And Pterines 73
## Metabolism Of Ingested Semet Sec Mesec Into H2se 73
## Metabolism Of Lipids 73
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 73
## Metabolism Of Nucleotides 73
## Metabolism Of Polyamines 73
## Metabolism Of Porphyrins 73
## Metabolism Of Rna 73
## Metabolism Of Steroid Hormones 73
## Metabolism Of Steroids 73
## Metabolism Of Vitamins And Cofactors 73
## Metabolism Of Water Soluble Vitamins And Cofactors 73
## Metal Ion Slc Transporters 73
## Metal Sequestration By Antimicrobial Proteins 73
## Metallothioneins Bind Metals 73
## Methionine Salvage Pathway 73
## Methylation 73
## Microrna Mirna Biogenesis 73
## Mineralocorticoid Biosynthesis 73
## Miro Gtpase Cycle 73
## Miscellaneous Substrates 73
## Miscellaneous Transport And Binding Events 73
## Mismatch Repair 73
## Mitochondrial Calcium Ion Transport 73
## Mitochondrial Fatty Acid Beta Oxidation 73
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 73
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 73
## Mitochondrial Iron Sulfur Cluster Biogenesis 73
## Mitochondrial Protein Import 73
## Mitochondrial Translation 73
## Mitochondrial Trna Aminoacylation 73
## Mitochondrial Uncoupling 73
## Mitophagy 73
## Mitotic Spindle Checkpoint 73
## Mitotic Telophase Cytokinesis 73
## Modulation By Mtb Of Host Immune System 73
## Molecules Associated With Elastic Fibres 73
## Molybdenum Cofactor Biosynthesis 73
## Mrna Capping 73
## Mrna Decay By 3 To 5 Exoribonuclease 73
## Mrna Decay By 5 To 3 Exoribonuclease 73
## Mrna Editing 73
## Mrna Editing C To U Conversion 73
## Mrna Splicing 73
## Mrna Splicing Minor Pathway 73
## Mtor Signalling 73
## Mtorc1 Mediated Signalling 73
## Mucopolysaccharidoses 73
## Multifunctional Anion Exchangers 73
## Muscarinic Acetylcholine Receptors 73
## Myoclonic Epilepsy Of Lafora 73
## Myogenesis 73
## N Glycan Antennae Elongation 73
## N Glycan Antennae Elongation In The Medial Trans Golgi 73
## N Glycan Trimming And Elongation In The Cis Golgi 73
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 73
## Na Cl Dependent Neurotransmitter Transporters 73
## Nade Modulates Death Signalling 73
## Ncam1 Interactions 73
## Nectin Necl Trans Heterodimerization 73
## Neddylation 73
## Nef And Signal Transduction 73
## Nef Mediated Cd4 Down Regulation 73
## Nef Mediated Cd8 Down Regulation 73
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 73
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 73
## Negative Epigenetic Regulation Of Rrna Expression 73
## Negative Feedback Regulation Of Mapk Pathway 73
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 73
## Negative Regulation Of Fgfr1 Signaling 73
## Negative Regulation Of Fgfr2 Signaling 73
## Negative Regulation Of Fgfr3 Signaling 73
## Negative Regulation Of Fgfr4 Signaling 73
## Negative Regulation Of Flt3 73
## Negative Regulation Of Mapk Pathway 73
## Negative Regulation Of Met Activity 73
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 73
## Negative Regulation Of Notch4 Signaling 73
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 73
## Negative Regulators Of Ddx58 Ifih1 Signaling 73
## Nephrin Family Interactions 73
## Netrin 1 Signaling 73
## Netrin Mediated Repulsion Signals 73
## Neurexins And Neuroligins 73
## Neurofascin Interactions 73
## Neurotoxicity Of Clostridium Toxins 73
## Neurotransmitter Clearance 73
## Neurotransmitter Release Cycle 73
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 73
## Nf Kb Is Activated And Signals Survival 73
## Ngf Independant Trka Activation 73
## Nicotinamide Salvaging 73
## Nicotinate Metabolism 73
## Nitric Oxide Stimulates Guanylate Cyclase 73
## Non Integrin Membrane Ecm Interactions 73
## Noncanonical Activation Of Notch3 73
## Nonhomologous End Joining Nhej 73
## Nonsense Mediated Decay Nmd 73
## Norepinephrine Neurotransmitter Release Cycle 73
## Nostrin Mediated Enos Trafficking 73
## Notch Hlh Transcription Pathway 73
## Notch1 Intracellular Domain Regulates Transcription 73
## Notch2 Activation And Transmission Of Signal To The Nucleus 73
## Notch3 Intracellular Domain Regulates Transcription 73
## Notch4 Activation And Transmission Of Signal To The Nucleus 73
## Notch4 Intracellular Domain Regulates Transcription 73
## Nr1h2 And Nr1h3 Mediated Signaling 73
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 73
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 73
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 73
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 73
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 73
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 73
## Nrcam Interactions 73
## Nrif Signals Cell Death From The Nucleus 73
## Ns1 Mediated Effects On Host Pathways 73
## Ntrk2 Activates Rac1 73
## Nuclear Import Of Rev Protein 73
## Nuclear Receptor Transcription Pathway 73
## Nuclear Signaling By Erbb4 73
## Nucleobase Biosynthesis 73
## Nucleobase Catabolism 73
## Nucleotide Excision Repair 73
## Nucleotide Like Purinergic Receptors 73
## Nucleotide Salvage 73
## O Glycosylation Of Tsr Domain Containing Proteins 73
## Oas Antiviral Response 73
## Olfactory Signaling Pathway 73
## Oncogene Induced Senescence 73
## Oncogenic Mapk Signaling 73
## Opsins 73
## Orc1 Removal From Chromatin 73
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 73
## Organic Anion Transport 73
## Organic Anion Transporters 73
## Organic Cation Anion Zwitterion Transport 73
## Organic Cation Transport 73
## Other Interleukin Signaling 73
## Other Semaphorin Interactions 73
## P130cas Linkage To Mapk Signaling For Integrins 73
## P2y Receptors 73
## P38mapk Events 73
## P75ntr Negatively Regulates Cell Cycle Via Sc1 73
## P75ntr Recruits Signalling Complexes 73
## P75ntr Signals Via Nf Kb 73
## Passive Transport By Aquaporins 73
## Pcna Dependent Long Patch Base Excision Repair 73
## Pecam1 Interactions 73
## Pentose Phosphate Pathway 73
## Peptide Hormone Biosynthesis 73
## Peptide Hormone Metabolism 73
## Peroxisomal Lipid Metabolism 73
## Peroxisomal Protein Import 73
## Pexophagy 73
## Phase 0 Rapid Depolarisation 73
## Phase 1 Inactivation Of Fast Na Channels 73
## Phase 2 Plateau Phase 73
## Phase 3 Rapid Repolarisation 73
## Phase I Functionalization Of Compounds 73
## Phase Ii Conjugation Of Compounds 73
## Phenylalanine And Tyrosine Metabolism 73
## Phenylalanine Metabolism 73
## Phosphate Bond Hydrolysis By Ntpdase Proteins 73
## Phosphate Bond Hydrolysis By Nudt Proteins 73
## Phospholipase C Mediated Cascade Fgfr2 73
## Phospholipase C Mediated Cascade Fgfr4 73
## Phospholipid Metabolism 73
## Physiological Factors 73
## Pi 3k Cascade Fgfr1 73
## Pi 3k Cascade Fgfr2 73
## Pi 3k Cascade Fgfr3 73
## Pi 3k Cascade Fgfr4 73
## Pi Metabolism 73
## Pi3k Akt Activation 73
## Pi3k Events In Erbb4 Signaling 73
## Pi5p Regulates Tp53 Acetylation 73
## Pink1 Prkn Mediated Mitophagy 73
## Piwi Interacting Rna Pirna Biogenesis 73
## Pka Activation In Glucagon Signalling 73
## Pka Mediated Phosphorylation Of Key Metabolic Factors 73
## Pkmts Methylate Histone Lysines 73
## Plasma Lipoprotein Assembly 73
## Plasma Lipoprotein Remodeling 73
## Platelet Adhesion To Exposed Collagen 73
## Platelet Aggregation Plug Formation 73
## Platelet Calcium Homeostasis 73
## Platelet Homeostasis 73
## Platelet Sensitization By Ldl 73
## Polb Dependent Long Patch Base Excision Repair 73
## Polo Like Kinase Mediated Events 73
## Polymerase Switching 73
## Polymerase Switching On The C Strand Of The Telomere 73
## Positive Epigenetic Regulation Of Rrna Expression 73
## Post Chaperonin Tubulin Folding Pathway 73
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 73
## Postmitotic Nuclear Pore Complex Npc Reformation 73
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 73
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 73
## Pre Notch Expression And Processing 73
## Pre Notch Processing In Golgi 73
## Pre Notch Processing In The Endoplasmic Reticulum 73
## Pregnenolone Biosynthesis 73
## Presynaptic Depolarization And Calcium Channel Opening 73
## Presynaptic Function Of Kainate Receptors 73
## Prevention Of Phagosomal Lysosomal Fusion 73
## Processing And Activation Of Sumo 73
## Processing Of Capped Intron Containing Pre Mrna 73
## Processing Of Capped Intronless Pre Mrna 73
## Processing Of Dna Double Strand Break Ends 73
## Processing Of Intronless Pre Mrnas 73
## Processing Of Smdt1 73
## Processive Synthesis On The C Strand Of The Telomere 73
## Processive Synthesis On The Lagging Strand 73
## Prolactin Receptor Signaling 73
## Prolonged Erk Activation Events 73
## Propionyl Coa Catabolism 73
## Prostacyclin Signalling Through Prostacyclin Receptor 73
## Prostanoid Ligand Receptors 73
## Protein Localization 73
## Protein Methylation 73
## Protein Protein Interactions At Synapses 73
## Protein Repair 73
## Protein Ubiquitination 73
## Proton Coupled Monocarboxylate Transport 73
## Pten Regulation 73
## Ptk6 Expression 73
## Ptk6 Regulates Cell Cycle 73
## Ptk6 Regulates Proteins Involved In Rna Processing 73
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 73
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 73
## Purine Catabolism 73
## Purine Ribonucleoside Monophosphate Biosynthesis 73
## Purine Salvage 73
## Pyrimidine Catabolism 73
## Pyrimidine Salvage 73
## Pyruvate Metabolism 73
## Pyruvate Metabolism And Citric Acid Tca Cycle 73
## Ra Biosynthesis Pathway 73
## Rab Gefs Exchange Gtp For Gdp On Rabs 73
## Rab Geranylgeranylation 73
## Rab Regulation Of Trafficking 73
## Raf Activation 73
## Rap1 Signalling 73
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 73
## Ras Processing 73
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 73
## Reactions Specific To The Complex N Glycan Synthesis Pathway 73
## Receptor Mediated Mitophagy 73
## Receptor Type Tyrosine Protein Phosphatases 73
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 73
## Recognition Of Dna Damage By Pcna Containing Replication Complex 73
## Recycling Of Bile Acids And Salts 73
## Recycling Of Eif2 Gdp 73
## Recycling Pathway Of L1 73
## Reduction Of Cytosolic Ca Levels 73
## Reelin Signalling Pathway 73
## Regulated Proteolysis Of P75ntr 73
## Regulation By C Flip 73
## Regulation Of Bach1 Activity 73
## Regulation Of Beta Cell Development 73
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 73
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 73
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 73
## Regulation Of Expression Of Slits And Robos 73
## Regulation Of Foxo Transcriptional Activity By Acetylation 73
## Regulation Of Fzd By Ubiquitination 73
## Regulation Of Gene Expression By Hypoxia Inducible Factor 73
## Regulation Of Gene Expression In Beta Cells 73
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 73
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 73
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 73
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 73
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 73
## Regulation Of Hmox1 Expression And Activity 73
## Regulation Of Hsf1 Mediated Heat Shock Response 73
## Regulation Of Ifna Signaling 73
## Regulation Of Ifng Signaling 73
## Regulation Of Innate Immune Responses To Cytosolic Dna 73
## Regulation Of Insulin Secretion 73
## Regulation Of Kit Signaling 73
## Regulation Of Lipid Metabolism By Pparalpha 73
## Regulation Of Localization Of Foxo Transcription Factors 73
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 73
## Regulation Of Pten Gene Transcription 73
## Regulation Of Pten Localization 73
## Regulation Of Pten Mrna Translation 73
## Regulation Of Pten Stability And Activity 73
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 73
## Regulation Of Ras By Gaps 73
## Regulation Of Runx1 Expression And Activity 73
## Regulation Of Runx3 Expression And Activity 73
## Regulation Of Signaling By Cbl 73
## Regulation Of Signaling By Nodal 73
## Regulation Of Tp53 Activity Through Acetylation 73
## Regulation Of Tp53 Activity Through Association With Co Factors 73
## Regulation Of Tp53 Activity Through Methylation 73
## Regulation Of Tp53 Activity Through Phosphorylation 73
## Relaxin Receptors 73
## Release Of Apoptotic Factors From The Mitochondria 73
## Release Of Hh Np From The Secreting Cell 73
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 73
## Repression Of Wnt Target Genes 73
## Reproduction 73
## Resolution Of Abasic Sites Ap Sites 73
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 73
## Resolution Of D Loop Structures 73
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 73
## Respiratory Electron Transport 73
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 73
## Response Of Eif2ak1 Hri To Heme Deficiency 73
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 73
## Response Of Mtb To Phagocytosis 73
## Response To Metal Ions 73
## Ret Signaling 73
## Retinoid Cycle Disease Events 73
## Retrograde Neurotrophin Signalling 73
## Reversible Hydration Of Carbon Dioxide 73
## Rho Gtpase Effectors 73
## Rho Gtpases Activate Cit 73
## Rho Gtpases Activate Formins 73
## Rho Gtpases Activate Iqgaps 73
## Rho Gtpases Activate Ktn1 73
## Rho Gtpases Activate Nadph Oxidases 73
## Rho Gtpases Activate Paks 73
## Rho Gtpases Activate Pkns 73
## Rho Gtpases Activate Rhotekin And Rhophilins 73
## Rho Gtpases Activate Rocks 73
## Rho Gtpases Activate Wasps And Waves 73
## Rhobtb Gtpase Cycle 73
## Rhobtb1 Gtpase Cycle 73
## Rhobtb2 Gtpase Cycle 73
## Rhobtb3 Atpase Cycle 73
## Rhot1 Gtpase Cycle 73
## Rhou Gtpase Cycle 73
## Rhov Gtpase Cycle 73
## Rna Polymerase I Promoter Escape 73
## Rna Polymerase I Transcription 73
## Rna Polymerase I Transcription Initiation 73
## Rna Polymerase I Transcription Termination 73
## Rna Polymerase Ii Transcribes Snrna Genes 73
## Rna Polymerase Ii Transcription Termination 73
## Rna Polymerase Iii Chain Elongation 73
## Rna Polymerase Iii Transcription 73
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 73
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 73
## Rna Polymerase Iii Transcription Termination 73
## Rnd1 Gtpase Cycle 73
## Rnd2 Gtpase Cycle 73
## Rnd3 Gtpase Cycle 73
## Robo Receptors Bind Akap5 73
## Role Of Abl In Robo Slit Signaling 73
## Role Of Lat2 Ntal Lab On Calcium Mobilization 73
## Role Of Phospholipids In Phagocytosis 73
## Role Of Second Messengers In Netrin 1 Signaling 73
## Rora Activates Gene Expression 73
## Ros And Rns Production In Phagocytes 73
## Rrna Modification In The Mitochondrion 73
## Rrna Modification In The Nucleus And Cytosol 73
## Rrna Processing 73
## Rrna Processing In The Mitochondrion 73
## Rsk Activation 73
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 73
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 73
## Runx1 Regulates Estrogen Receptor Mediated Transcription 73
## Runx1 Regulates Expression Of Components Of Tight Junctions 73
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 73
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 73
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 73
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 73
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 73
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 73
## Runx3 Regulates Bcl2l11 Bim Transcription 73
## Runx3 Regulates Cdkn1a Transcription 73
## Runx3 Regulates Immune Response And Cell Migration 73
## Runx3 Regulates Notch Signaling 73
## Runx3 Regulates P14 Arf 73
## Runx3 Regulates Wnt Signaling 73
## Runx3 Regulates Yap1 Mediated Transcription 73
## S Phase 73
## Sars Cov 1 Genome Replication And Transcription 73
## Sars Cov 1 Infection 73
## Sars Cov 2 Infection 73
## Scavenging By Class A Receptors 73
## Scavenging By Class B Receptors 73
## Scavenging By Class F Receptors 73
## Scavenging Of Heme From Plasma 73
## Scf Skp2 Mediated Degradation Of P27 P21 73
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 73
## Selective Autophagy 73
## Selenoamino Acid Metabolism 73
## Sema3a Pak Dependent Axon Repulsion 73
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 73
## Sema4d In Semaphorin Signaling 73
## Sema4d Induced Cell Migration And Growth Cone Collapse 73
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 73
## Semaphorin Interactions 73
## Sensing Of Dna Double Strand Breaks 73
## Sensory Perception 73
## Sensory Processing Of Sound 73
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 73
## Separation Of Sister Chromatids 73
## Serine Biosynthesis 73
## Serotonin And Melatonin Biosynthesis 73
## Serotonin Neurotransmitter Release Cycle 73
## Serotonin Receptors 73
## Shc Mediated Cascade Fgfr1 73
## Shc Mediated Cascade Fgfr3 73
## Shc Mediated Cascade Fgfr4 73
## Shc Related Events Triggered By Igf1r 73
## Shc1 Events In Erbb4 Signaling 73
## Signal Amplification 73
## Signal Attenuation 73
## Signal Regulatory Protein Family Interactions 73
## Signaling By Activin 73
## Signaling By Bmp 73
## Signaling By Braf And Raf Fusions 73
## Signaling By Ctnnb1 Phospho Site Mutants 73
## Signaling By Erythropoietin 73
## Signaling By Fgfr 73
## Signaling By Fgfr1 73
## Signaling By Fgfr2 73
## Signaling By Fgfr2 Iiia Tm 73
## Signaling By Fgfr2 In Disease 73
## Signaling By Fgfr3 73
## Signaling By Fgfr3 Fusions In Cancer 73
## Signaling By Fgfr4 73
## Signaling By Fgfr4 In Disease 73
## Signaling By Flt3 Fusion Proteins 73
## Signaling By Flt3 Itd And Tkd Mutants 73
## Signaling By Hedgehog 73
## Signaling By Hippo 73
## Signaling By Lrp5 Mutants 73
## Signaling By Mapk Mutants 73
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 73
## Signaling By Moderate Kinase Activity Braf Mutants 73
## Signaling By Mras Complex Mutants 73
## Signaling By Mst1 73
## Signaling By Nodal 73
## Signaling By Notch1 73
## Signaling By Notch1 Hd Domain Mutants In Cancer 73
## Signaling By Notch1 Pest Domain Mutants In Cancer 73
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 73
## Signaling By Notch4 73
## Signaling By Ntrk2 Trkb 73
## Signaling By Ntrk3 Trkc 73
## Signaling By Retinoic Acid 73
## Signaling By Rnf43 Mutants 73
## Signaling By Robo Receptors 73
## Signaling By Tgf Beta Receptor Complex In Cancer 73
## Signaling By Wnt In Cancer 73
## Signalling To Erks 73
## Signalling To P38 Via Rit And Rin 73
## Signalling To Ras 73
## Sirt1 Negatively Regulates Rrna Expression 73
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 73
## Slc Mediated Transmembrane Transport 73
## Slc Transporter Disorders 73
## Smac Xiap Regulated Apoptotic Response 73
## Small Interfering Rna Sirna Biogenesis 73
## Smooth Muscle Contraction 73
## Snrnp Assembly 73
## Sodium Calcium Exchangers 73
## Sodium Coupled Phosphate Cotransporters 73
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 73
## Sodium Proton Exchangers 73
## Sos Mediated Signalling 73
## Sperm Motility And Taxes 73
## Sphingolipid De Novo Biosynthesis 73
## Sphingolipid Metabolism 73
## Spry Regulation Of Fgf Signaling 73
## Srp Dependent Cotranslational Protein Targeting To Membrane 73
## Stabilization Of P53 73
## Stat5 Activation 73
## Stat5 Activation Downstream Of Flt3 Itd Mutants 73
## Striated Muscle Contraction 73
## Sulfide Oxidation To Sulfate 73
## Sulfur Amino Acid Metabolism 73
## Sumo Is Conjugated To E1 Uba2 Sae1 73
## Sumo Is Proteolytically Processed 73
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 73
## Sumoylation Of Chromatin Organization Proteins 73
## Sumoylation Of Dna Damage Response And Repair Proteins 73
## Sumoylation Of Dna Replication Proteins 73
## Sumoylation Of Immune Response Proteins 73
## Sumoylation Of Intracellular Receptors 73
## Sumoylation Of Rna Binding Proteins 73
## Sumoylation Of Sumoylation Proteins 73
## Sumoylation Of Transcription Factors 73
## Sumoylation Of Ubiquitinylation Proteins 73
## Suppression Of Apoptosis 73
## Suppression Of Phagosomal Maturation 73
## Surfactant Metabolism 73
## Switching Of Origins To A Post Replicative State 73
## Synaptic Adhesion Like Molecules 73
## Syndecan Interactions 73
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 73
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 73
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 73
## Synthesis Of 5 Eicosatetraenoic Acids 73
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 73
## Synthesis Of Bile Acids And Bile Salts 73
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 73
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 73
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 73
## Synthesis Of Diphthamide Eef2 73
## Synthesis Of Dolichyl Phosphate 73
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 73
## Synthesis Of Gdp Mannose 73
## Synthesis Of Glycosylphosphatidylinositol Gpi 73
## Synthesis Of Ip2 Ip And Ins In The Cytosol 73
## Synthesis Of Ip3 And Ip4 In The Cytosol 73
## Synthesis Of Ketone Bodies 73
## Synthesis Of Leukotrienes Lt And Eoxins Ex 73
## Synthesis Of Lipoxins Lx 73
## Synthesis Of Pa 73
## Synthesis Of Pc 73
## Synthesis Of Pe 73
## Synthesis Of Pg 73
## Synthesis Of Pi 73
## Synthesis Of Pips At The Early Endosome Membrane 73
## Synthesis Of Pips At The Er Membrane 73
## Synthesis Of Pips At The Golgi Membrane 73
## Synthesis Of Pips At The Late Endosome Membrane 73
## Synthesis Of Pips At The Plasma Membrane 73
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 73
## Synthesis Of Pyrophosphates In The Cytosol 73
## Synthesis Of Udp N Acetyl Glucosamine 73
## Synthesis Of Very Long Chain Fatty Acyl Coas 73
## Synthesis Of Wybutosine At G37 Of Trna Phe 73
## Synthesis Secretion And Deacylation Of Ghrelin 73
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 73
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 73
## Tachykinin Receptors Bind Tachykinins 73
## Tbc Rabgaps 73
## Telomere C Strand Lagging Strand Synthesis 73
## Telomere C Strand Synthesis Initiation 73
## Telomere Extension By Telomerase 73
## Telomere Maintenance 73
## Terminal Pathway Of Complement 73
## Termination Of Translesion Dna Synthesis 73
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 73
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 73
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 73
## Tgf Beta Receptor Signaling Activates Smads 73
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 73
## The Activation Of Arylsulfatases 73
## The Canonical Retinoid Cycle In Rods Twilight Vision 73
## The Citric Acid Tca Cycle And Respiratory Electron Transport 73
## The Fatty Acid Cycling Model 73
## The Phototransduction Cascade 73
## The Retinoid Cycle In Cones Daylight Vision 73
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 73
## Thrombin Signalling Through Proteinase Activated Receptors Pars 73
## Thromboxane Signalling Through Tp Receptor 73
## Thyroxine Biosynthesis 73
## Tie2 Signaling 73
## Tight Junction Interactions 73
## Tnfr1 Induced Proapoptotic Signaling 73
## Tnfr1 Mediated Ceramide Production 73
## Toxicity Of Botulinum Toxin Type D Botd 73
## Tp53 Regulates Metabolic Genes 73
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 73
## Tp53 Regulates Transcription Of Death Receptors And Ligands 73
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 73
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 73
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 73
## Traf3 Dependent Irf Activation Pathway 73
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 73
## Traf6 Mediated Irf7 Activation 73
## Trafficking Of Ampa Receptors 73
## Trafficking Of Glur2 Containing Ampa Receptors 73
## Trafficking Of Myristoylated Proteins To The Cilium 73
## Trail Signaling 73
## Trans Golgi Network Vesicle Budding 73
## Transcription Coupled Nucleotide Excision Repair Tc Ner 73
## Transcription Of E2f Targets Under Negative Control By Dream Complex 73
## Transcription Of The Hiv Genome 73
## Transcriptional Regulation By E2f6 73
## Transcriptional Regulation By Runx3 73
## Transcriptional Regulation By Small Rnas 73
## Transcriptional Regulation Of Testis Differentiation 73
## Transcriptional Regulation Of White Adipocyte Differentiation 73
## Transferrin Endocytosis And Recycling 73
## Translation 73
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 73
## Translation Of Sars Cov 1 Structural Proteins 73
## Translation Of Sars Cov 2 Structural Proteins 73
## Translesion Synthesis By Polh 73
## Translesion Synthesis By Polk 73
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 73
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 73
## Transport And Synthesis Of Paps 73
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 73
## Transport Of Connexons To The Plasma Membrane 73
## Transport Of Fatty Acids 73
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 73
## Transport Of Mature Mrnas Derived From Intronless Transcripts 73
## Transport Of Mature Transcript To Cytoplasm 73
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 73
## Transport Of Nucleotide Sugars 73
## Transport Of Organic Anions 73
## Transport Of The Slbp Dependant Mature Mrna 73
## Transport Of Vitamins Nucleosides And Related Molecules 73
## Trif Mediated Programmed Cell Death 73
## Triglyceride Biosynthesis 73
## Triglyceride Catabolism 73
## Triglyceride Metabolism 73
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 73
## Trna Aminoacylation 73
## Trna Modification In The Mitochondrion 73
## Trna Modification In The Nucleus And Cytosol 73
## Trna Processing 73
## Trna Processing In The Mitochondrion 73
## Trna Processing In The Nucleus 73
## Trp Channels 73
## Tryptophan Catabolism 73
## Type I Hemidesmosome Assembly 73
## Tyrosine Catabolism 73
## Tysnd1 Cleaves Peroxisomal Proteins 73
## Ubiquinol Biosynthesis 73
## Uch Proteinases 73
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 73
## Unwinding Of Dna 73
## Uptake And Actions Of Bacterial Toxins 73
## Uptake And Function Of Anthrax Toxins 73
## Uptake And Function Of Diphtheria Toxin 73
## Urea Cycle 73
## Vasopressin Like Receptors 73
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 73
## Vegf Ligand Receptor Interactions 73
## Vegfr2 Mediated Cell Proliferation 73
## Viral Messenger Rna Synthesis 73
## Visual Phototransduction 73
## Vitamin B1 Thiamin Metabolism 73
## Vitamin B2 Riboflavin Metabolism 73
## Vitamin B5 Pantothenate Metabolism 73
## Vitamin C Ascorbate Metabolism 73
## Vitamin D Calciferol Metabolism 73
## Vitamins 73
## Vldl Assembly 73
## Vldl Clearance 73
## Voltage Gated Potassium Channels 73
## Vxpx Cargo Targeting To Cilium 73
## Wax And Plasmalogen Biosynthesis 73
## Wnt Mediated Activation Of Dvl 73
## Xenobiotics 73
## Zinc Efflux And Compartmentalization By The Slc30 Family 73
## Zinc Influx Into Cells By The Slc39 Gene Family 73
## Zinc Transporters 73
## geneset
## Cytokine Signaling In Immune System 719
## Interleukin 10 Signaling 46
## Signaling By Interleukins 463
## Innate Immune System 1117
## Interleukin 4 And Interleukin 13 Signaling 111
## Chemokine Receptors Bind Chemokines 58
## Signaling By Gpcr 698
## Peptide Ligand Binding Receptors 198
## Neutrophil Degranulation 479
## Leishmania Infection 308
## Regulated Necrosis 56
## Purinergic Signaling In Leishmaniasis Infection 26
## Pyroptosis 27
## Gpcr Ligand Binding 463
## Interleukin 1 Processing 9
## Extra Nuclear Estrogen Signaling 75
## Interleukin 1 Family Signaling 140
## G Alpha I Signalling Events 314
## Adaptive Immune System 825
## Class A 1 Rhodopsin Like Receptors 331
## Toll Like Receptor Cascades 155
## Tnfr2 Non Canonical Nf Kb Pathway 101
## Pi3k Akt Signaling In Cancer 105
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 17
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 18
## Negative Regulation Of The Pi3k Akt Network 113
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 56
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 191
## Inflammasomes 21
## Programmed Cell Death 208
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 24
## Costimulation By The Cd28 Family 74
## Constitutive Signaling By Aberrant Pi3k In Cancer 78
## Tnfs Bind Their Physiological Receptors 29
## Infectious Disease 924
## Activation Of Matrix Metalloproteinases 33
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 7
## Toll Like Receptor 9 Tlr9 Cascade 94
## Myd88 Independent Tlr4 Cascade 97
## Cd163 Mediating An Anti Inflammatory Response 9
## Egfr Transactivation By Gastrin 9
## Extracellular Matrix Organization 301
## Dap12 Interactions 45
## Intracellular Signaling By Second Messengers 307
## Mapk3 Erk1 Activation 10
## Senescence Associated Secretory Phenotype Sasp 112
## Post Translational Protein Modification 1435
## Complement Cascade 115
## Interleukin 6 Signaling 11
## Cd28 Dependent Vav1 Pathway 12
## Esr Mediated Signaling 221
## Trafficking And Processing Of Endosomal Tlr 13
## Interleukin 12 Family Signaling 57
## Signaling By Receptor Tyrosine Kinases 504
## Collagen Degradation 64
## The Nlrp3 Inflammasome 16
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 394
## Interleukin 17 Signaling 71
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 19
## Ctla4 Inhibitory Signaling 21
## Interleukin 37 Signaling 21
## Signal Transduction By L1 21
## Cd28 Dependent Pi3k Akt Signaling 22
## Raf Independent Mapk1 3 Activation 23
## Signaling By Nuclear Receptors 297
## Interleukin 6 Family Signaling 24
## Interferon Gamma Signaling 93
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 27
## Cellular Senescence 198
## Pd 1 Signaling 28
## Toll Like Receptor Tlr1 Tlr2 Cascade 103
## Diseases Of Immune System 31
## Mapk Targets Nuclear Events Mediated By Map Kinases 31
## Cargo Recognition For Clathrin Mediated Endocytosis 105
## Antigen Processing Cross Presentation 106
## Perk Regulates Gene Expression 32
## Cd28 Co Stimulation 33
## Nod1 2 Signaling Pathway 36
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 38
## Ngf Stimulated Transcription 39
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 124
## Signaling By Scf Kit 43
## Interleukin 2 Family Signaling 44
## Signaling By Ntrks 134
## Interleukin 12 Signaling 47
## Degradation Of The Extracellular Matrix 140
## Death Receptor Signalling 141
## Clathrin Mediated Endocytosis 145
## Eph Ephrin Mediated Repulsion Of Cells 51
## Signaling By Ptk6 54
## Deubiquitination 298
## G2 M Dna Replication Checkpoint 5
## Mecp2 Regulates Transcription Factors 5
## Runx2 Regulates Chondrocyte Maturation 5
## Assembly Of Collagen Fibrils And Other Multimeric Structures 61
## Cytosolic Sensors Of Pathogen Associated Dna 63
## Nuclear Events Kinase And Transcription Factor Activation 61
## Clec7a Inflammasome Pathway 6
## Fibronectin Matrix Formation 6
## Hemostasis 678
## Mapk Family Signaling Cascades 327
## Phosphorylation Of Emi1 6
## Ptk6 Promotes Hif1a Stabilization 6
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 6
## Circadian Clock 70
## Rhob Gtpase Cycle 70
## Activation Of Nima Kinases Nek9 Nek6 Nek7 7
## Creb Phosphorylation 7
## Rhoc Gtpase Cycle 74
## Rhog Gtpase Cycle 74
## Cell Surface Interactions At The Vascular Wall 194
## Cellular Responses To External Stimuli 706
## Activation Of C3 And C5 8
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 8
## Interferon Signaling 203
## Interleukin 18 Signaling 8
## Mecp2 Regulates Transcription Of Neuronal Ligands 8
## Runx2 Regulates Genes Involved In Cell Migration 8
## Rna Polymerase Ii Transcription 1374
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 9
## E2f Enabled Inhibition Of Pre Replication Complex Formation 9
## Egfr Interacts With Phospholipase C Gamma 9
## Interleukin 23 Signaling 9
## Interleukin 9 Signaling 9
## Mapk1 Erk2 Activation 9
## Fceri Mediated Mapk Activation 87
## G Alpha Q Signalling Events 216
## Activation Of The Ap 1 Family Of Transcription Factors 10
## Akt Phosphorylates Targets In The Nucleus 10
## Camk Iv Mediated Phosphorylation Of Creb 10
## Interleukin 21 Signaling 10
## Mastl Facilitates Mitotic Progression 10
## P75ntr Regulates Axonogenesis 10
## Rac2 Gtpase Cycle 88
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 223
## Collagen Formation 90
## Transcriptional Regulation Of Granulopoiesis 90
## Eph Ephrin Signaling 92
## Unfolded Protein Response Upr 92
## Condensation Of Prometaphase Chromosomes 11
## Endosomal Vacuolar Pathway 11
## Interleukin 27 Signaling 11
## Signaling By Leptin 11
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 11
## Class B 2 Secretin Family Receptors 94
## Fcgr3a Mediated Il10 Synthesis 95
## Rac3 Gtpase Cycle 94
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 12
## Interleukin 35 Signalling 12
## Killing Mechanisms 12
## Notch2 Intracellular Domain Regulates Transcription 12
## P75 Ntr Receptor Mediated Signalling 97
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 12
## Tandem Pore Domain Potassium Channels 12
## Ticam1 Dependent Activation Of Irf3 Irf7 12
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 12
## Vldlr Internalisation And Degradation 12
## Advanced Glycosylation Endproduct Receptor Signaling 13
## Apoptosis Induced Dna Fragmentation 13
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 13
## Copi Mediated Anterograde Transport 102
## Dissolution Of Fibrin Clot 13
## Erbb2 Activates Ptk6 Signaling 13
## Interleukin 1 Signaling 102
## Irf3 Mediated Induction Of Type I Ifn 13
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 13
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 13
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 13
## Golgi Cisternae Pericentriolar Stack Reorganization 14
## Interleukin 15 Signaling 14
## Shc1 Events In Egfr Signaling 14
## Constitutive Signaling By Egfrviii 15
## Depolymerisation Of The Nuclear Lamina 15
## Erbb2 Regulates Cell Motility 15
## Membrane Trafficking 629
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 15
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 15
## Wnt5a Dependent Internalization Of Fzd4 15
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 15
## Platelet Activation Signaling And Aggregation 261
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 16
## Grb2 Events In Erbb2 Signaling 16
## Pi3k Events In Erbb2 Signaling 16
## Signaling By Erbb2 Ecd Mutants 16
## Sting Mediated Induction Of Host Immune Responses 16
## Sumoylation Of Dna Methylation Proteins 16
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 16
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 17
## Gab1 Signalosome 17
## Rip Mediated Nfkb Activation Via Zbp1 17
## Transcriptional Regulation By Runx2 120
## Irak4 Deficiency Tlr2 4 18
## L1cam Interactions 121
## Mecp2 Regulates Neuronal Receptors And Channels 18
## Signaling By Cytosolic Fgfr1 Fusion Mutants 18
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 18
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 19
## Cytoprotection By Hmox1 124
## Initiation Of Nuclear Envelope Ne Reformation 19
## Ldl Clearance 19
## Phase 4 Resting Membrane Potential 19
## Phosphorylation Of The Apc C 20
## Pka Mediated Phosphorylation Of Creb 20
## Signaling By Kit In Disease 20
## Signaling By Pdgfr In Disease 20
## Regulation Of Tlr By Endogenous Ligand 21
## Zbp1 Dai Mediated Induction Of Type I Ifns 21
## Response To Elevated Platelet Cytosolic Ca2 132
## Adora2b Mediated Anti Inflammatory Cytokines Production 133
## E2f Mediated Regulation Of Dna Replication 22
## Shc1 Events In Erbb2 Signaling 22
## Hcmv Early Events 138
## Ikk Complex Recruitment Mediated By Rip1 23
## Termination Of O Glycan Biosynthesis 23
## Asparagine N Linked Glycosylation 305
## C Type Lectin Receptors Clrs 140
## Apc C Cdc20 Mediated Degradation Of Cyclin B 24
## Growth Hormone Receptor Signaling 24
## Runx2 Regulates Osteoblast Differentiation 24
## Traf6 Mediated Nf Kb Activation 24
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 25
## Cyclin A B1 B2 Associated Events During G2 M Transition 25
## Inactivation Of Csf3 G Csf Signaling 25
## Notch3 Activation And Transmission Of Signal To The Nucleus 25
## Signaling By Egfr In Cancer 25
## Vesicle Mediated Transport 724
## Constitutive Signaling By Akt1 E17k In Cancer 26
## Dectin 2 Family 26
## Interleukin 20 Family Signaling 26
## Signaling By Erbb2 In Cancer 26
## Wnt Ligand Biogenesis And Trafficking 26
## Rhoa Gtpase Cycle 149
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 27
## G0 And Early G1 27
## Interleukin Receptor Shc Signaling 27
## Vegfr2 Mediated Vascular Permeability 27
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 28
## Er To Golgi Anterograde Transport 155
## Dap12 Signaling 29
## Downregulation Of Erbb2 Signaling 29
## Downstream Signal Transduction 29
## G1 S Specific Transcription 29
## Ripk1 Mediated Regulated Necrosis 29
## Cdc42 Gtpase Cycle 159
## Cellular Response To Chemical Stress 160
## Signaling By Csf3 G Csf 30
## Tnfr1 Induced Nfkappab Signaling Pathway 30
## Hcmv Infection 162
## Egfr Downregulation 31
## Fgfr1 Mutant Receptor Activation 31
## Runx2 Regulates Bone Development 31
## Transcriptional Regulation Of Pluripotent Stem Cells 31
## Regulation Of Mecp2 Expression And Activity 32
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 32
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 32
## Cargo Concentration In The Er 33
## Plasma Lipoprotein Clearance 33
## Sialic Acid Metabolism 33
## Signaling By Notch2 33
## Gpvi Mediated Activation Cascade 35
## Regulation Of Tnfr1 Signaling 35
## Transcriptional Regulation By Tp53 363
## Apoptosis 179
## Association Of Tric Cct With Target Proteins During Biosynthesis 39
## Ca Dependent Events 37
## Class I Mhc Mediated Antigen Processing Presentation 377
## Fc Epsilon Receptor Fceri Signaling 186
## Generation Of Second Messenger Molecules 39
## Interleukin 7 Signaling 36
## Metalloprotease Dubs 37
## Nervous System Development 580
## Nuclear Pore Complex Npc Disassembly 36
## Ovarian Tumor Domain Proteases 38
## Rac1 Gtpase Cycle 184
## Regulation Of Tp53 Expression And Degradation 37
## Rhoh Gtpase Cycle 37
## Signaling By Fgfr1 In Disease 38
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 38
## Transport To The Golgi And Subsequent Modification 186
## Beta Defensins 42
## Dag And Ip3 Signaling 41
## Rhof Gtpase Cycle 42
## Sumoylation 187
## Transcriptional Regulation By Ventx 41
## Sumoylation Of Transcription Cofactors 43
## Tnf Signaling 44
## Tp53 Regulates Transcription Of Cell Death Genes 44
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 44
## Heme Signaling 48
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 48
## Irs Mediated Signalling 48
## Retrograde Transport At The Trans Golgi Network 49
## Signaling By Egfr 50
## Signaling By Erbb2 50
## Signaling By Notch3 49
## Tp53 Regulates Transcription Of Cell Cycle Genes 49
## Apoptotic Execution Phase 52
## Defensins 52
## Nuclear Envelope Breakdown 53
## Rhod Gtpase Cycle 51
## Ub Specific Processing Proteases 221
## G Protein Mediated Events 54
## Insulin Receptor Signalling Cascade 54
## Intrinsic Pathway For Apoptosis 55
## Rhoj Gtpase Cycle 55
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 54
## Transcriptional Activation Of Mitochondrial Biogenesis 55
## Nrage Signals Death Through Jnk 59
## Rhoq Gtpase Cycle 59
## Signaling By Erbb4 58
## Signaling By Pdgf 58
## Transcriptional Regulation By Runx1 239
## Asymmetric Localization Of Pcp Proteins 64
## Ca2 Pathway 62
## Dna Methylation 65
## Ncam Signaling For Neurite Out Growth 63
## O Linked Glycosylation Of Mucins 62
## Signaling By Fgfr In Disease 63
## Signaling By Notch 247
## Synthesis Of Substrates In N Glycan Biosythesis 63
## Tp53 Regulates Transcription Of Dna Repair Genes 62
## Transcriptional Regulation By Mecp2 63
## Copii Mediated Vesicle Transport 68
## Diseases Associated With O Glycosylation Of Proteins 68
## Aurka Activation By Tpx2 72
## Interferon Alpha Beta Signaling 73
## Plasma Lipoprotein Assembly Remodeling And Clearance 71
## Prc2 Methylates Histones And Dna 73
## Regulation Of Runx2 Expression And Activity 73
## Signaling By Tgf Beta Receptor Complex 73
## Cell Death Signalling Via Nrage Nrif And Nade 76
## Condensation Of Prophase Chromosomes 74
## Ecm Proteoglycans 76
## Nuclear Envelope Ne Reassembly 76
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 78
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 81
## G Alpha 12 13 Signalling Events 80
## Initial Triggering Of Complement 80
## Potential Therapeutics For Sars 81
## Recruitment Of Mitotic Centrosome Proteins And Complexes 81
## Rmts Methylate Histone Arginines 79
## Signaling By Insulin Receptor 78
## Signaling By Met 79
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 79
## Integrin Cell Surface Interactions 85
## Organelle Biogenesis And Maintenance 296
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 86
## Apc C Mediated Degradation Of Cell Cycle Proteins 88
## Fceri Mediated Ca 2 Mobilization 86
## Opioid Signalling 90
## Regulation Of Plk1 Activity At G2 M Transition 87
## Activation Of Nmda Receptors And Postsynaptic Events 94
## Mapk6 Mapk4 Signaling 93
## Mitochondrial Biogenesis 94
## Pcp Ce Pathway 92
## Anchoring Of The Basal Body To The Plasma Membrane 97
## Antimicrobial Peptides 97
## G2 M Dna Damage Checkpoint 95
## Protein Folding 98
## Recruitment Of Numa To Mitotic Centrosomes 95
## Clec7a Dectin 1 Signaling 100
## Diseases Of Programmed Cell Death 102
## Signaling By Tgfb Family Members 102
## Developmental Biology 1143
## Potassium Channels 103
## Signaling By Vegf 106
## Stimuli Sensing Channels 106
## Amyloid Fiber Formation 110
## O Linked Glycosylation 111
## Parasite Infection 116
## Tcr Signaling 124
## Cardiac Conduction 127
## Mhc Class Ii Antigen Presentation 126
## Oxidative Stress Induced Senescence 126
## Resolution Of Sister Chromatid Cohesion 126
## Diseases Of Glycosylation 143
## Fcgamma Receptor Fcgr Dependent Phagocytosis 143
## Mitotic Prophase 143
## Beta Catenin Independent Wnt Signaling 146
## Epigenetic Regulation Of Gene Expression 148
## Estrogen Dependent Gene Expression 150
## Mitotic G1 Phase And G1 S Transition 149
## Neuronal System 410
## Sars Cov Infections 146
## Regulation Of Tp53 Activity 160
## Rho Gtpase Cycle 444
## Signaling By The B Cell Receptor Bcr 166
## G2 M Checkpoints 168
## Ion Channel Transport 183
## Muscle Contraction 195
## Cilium Assembly 202
## Intra Golgi And Retrograde Golgi To Er Traffic 203
## Mitotic G2 G2 M Phases 200
## Mitotic Prometaphase 203
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 205
## Mitotic Metaphase And Anaphase 236
## Tcf Dependent Signaling In Response To Wnt 234
## Diseases Of Metabolism 246
## Transmission Across Chemical Synapses 269
## Chromatin Modifying Enzymes 274
## Cell Cycle Checkpoints 292
## Signaling By Wnt 331
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 717
## Transport Of Small Molecules 728
## M Phase 417
## Cell Cycle Mitotic 561
## Cell Cycle 693
## 2 Ltr Circle Formation 7
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 26
## Abacavir Metabolism 5
## Abacavir Transmembrane Transport 5
## Abacavir Transport And Metabolism 10
## Abc Family Proteins Mediated Transport 103
## Abc Transporter Disorders 77
## Abc Transporters In Lipid Homeostasis 18
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 20
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 17
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 23
## Acetylcholine Binding And Downstream Events 14
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 5
## Acetylcholine Neurotransmitter Release Cycle 17
## Acetylcholine Regulates Insulin Secretion 10
## Acrosome Reaction And Sperm Oocyte Membrane Binding 6
## Activated Notch1 Transmits Signal To The Nucleus 31
## Activated Ntrk2 Signals Through Cdk5 6
## Activated Ntrk2 Signals Through Frs2 And Frs3 11
## Activated Ntrk2 Signals Through Fyn 7
## Activated Ntrk2 Signals Through Pi3k 7
## Activated Ntrk2 Signals Through Ras 9
## Activated Ntrk3 Signals Through Pi3k 6
## Activated Ntrk3 Signals Through Ras 8
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 67
## Activated Tak1 Mediates P38 Mapk Activation 23
## Activation Of Ampk Downstream Of Nmdars 29
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 122
## Activation Of Atr In Response To Replication Stress 37
## Activation Of Bad And Translocation To Mitochondria 15
## Activation Of Bh3 Only Proteins 30
## Activation Of Caspases Through Apoptosome Mediated Cleavage 6
## Activation Of Gene Expression By Srebf Srebp 42
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 17
## Activation Of Kainate Receptors Upon Glutamate Binding 30
## Activation Of Noxa And Translocation To Mitochondria 5
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 10
## Activation Of Puma And Translocation To Mitochondria 9
## Activation Of Rac1 13
## Activation Of Rac1 Downstream Of Nmdars 7
## Activation Of Ras In B Cells 5
## Activation Of Smo 18
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 60
## Activation Of The Phototransduction Cascade 11
## Activation Of The Pre Replicative Complex 33
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 12
## Activation Of Trka Receptors 6
## Acyl Chain Remodeling Of Cl 6
## Acyl Chain Remodeling Of Dag And Tag 7
## Acyl Chain Remodelling Of Pc 27
## Acyl Chain Remodelling Of Pe 29
## Acyl Chain Remodelling Of Pg 18
## Acyl Chain Remodelling Of Pi 17
## Acyl Chain Remodelling Of Ps 22
## Adenylate Cyclase Activating Pathway 10
## Adenylate Cyclase Inhibitory Pathway 14
## Adherens Junctions Interactions 33
## Adp Signalling Through P2y Purinoceptor 1 25
## Adp Signalling Through P2y Purinoceptor 12 22
## Adrenaline Noradrenaline Inhibits Insulin Secretion 28
## Adrenoceptors 9
## Aflatoxin Activation And Detoxification 19
## Aggrephagy 44
## Akt Phosphorylates Targets In The Cytosol 14
## Alpha Defensins 10
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 13
## Alpha Oxidation Of Phytanate 6
## Alpha Protein Kinase 1 Signaling Pathway 11
## Alternative Complement Activation 5
## Amine Ligand Binding Receptors 42
## Amino Acid Conjugation 9
## Amino Acid Transport Across The Plasma Membrane 33
## Amino Acids Regulate Mtorc1 55
## Ampk Inhibits Chrebp Transcriptional Activation Activity 8
## Anchoring Fibril Formation 15
## Androgen Biosynthesis 11
## Antigen Processing Ubiquitination Proteasome Degradation 308
## Antiviral Mechanism By Ifn Stimulated Genes 82
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 74
## Apc Cdc20 Mediated Degradation Of Nek2a 26
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 7
## Apobec3g Mediated Resistance To Hiv 1 Infection 5
## Apoptotic Cleavage Of Cell Adhesion Proteins 11
## Apoptotic Cleavage Of Cellular Proteins 38
## Apoptotic Factor Mediated Response 20
## Aquaporin Mediated Transport 52
## Arachidonate Production From Dag 5
## Arachidonic Acid Metabolism 59
## Arms Mediated Activation 7
## Aryl Hydrocarbon Receptor Signalling 8
## Aspartate And Asparagine Metabolism 11
## Assembly And Cell Surface Presentation Of Nmda Receptors 44
## Assembly Of Active Lpl And Lipc Lipase Complexes 19
## Assembly Of The Hiv Virion 16
## Assembly Of The Orc Complex At The Origin Of Replication 6
## Assembly Of The Pre Replicative Complex 68
## Atf6 Atf6 Alpha Activates Chaperone Genes 10
## Atf6 Atf6 Alpha Activates Chaperones 12
## Attachment And Entry 5
## Attachment Of Gpi Anchor To Upar 7
## Attenuation Phase 28
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 55
## Autophagy 151
## B Wich Complex Positively Regulates Rrna Expression 91
## Base Excision Repair 91
## Base Excision Repair Ap Site Formation 63
## Basigin Interactions 25
## Bbsome Mediated Cargo Targeting To Cilium 23
## Beta Catenin Phosphorylation Cascade 17
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 5
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 6
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 5
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 5
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 5
## Beta Oxidation Of Pristanoyl Coa 9
## Beta Oxidation Of Very Long Chain Fatty Acids 11
## Bicarbonate Transporters 10
## Bile Acid And Bile Salt Metabolism 43
## Binding And Uptake Of Ligands By Scavenger Receptors 98
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 8
## Biological Oxidations 222
## Biosynthesis Of Epa Derived Spms 6
## Biosynthesis Of Maresin Like Spms 6
## Biosynthesis Of Maresins 8
## Biosynthesis Of Specialized Proresolving Mediators Spms 19
## Biotin Transport And Metabolism 11
## Blood Group Systems Biosynthesis 21
## Branched Chain Amino Acid Catabolism 21
## Budding And Maturation Of Hiv Virion 28
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 17
## Butyrophilin Btn Family Interactions 12
## Ca2 Activated K Channels 9
## Calcineurin Activates Nfat 9
## Calcitonin Like Ligand Receptors 10
## Calnexin Calreticulin Cycle 26
## Carboxyterminal Post Translational Modifications Of Tubulin 46
## Cargo Trafficking To The Periciliary Membrane 51
## Carnitine Metabolism 14
## Caspase Activation Via Death Receptors In The Presence Of Ligand 16
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 10
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 26
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 12
## Cation Coupled Chloride Cotransporters 7
## Cd209 Dc Sign Signaling 21
## Cd22 Mediated Bcr Regulation 61
## Cdc6 Association With The Orc Origin Complex 11
## Cell Cell Communication 130
## Cell Cell Junction Organization 65
## Cell Extracellular Matrix Interactions 18
## Cell Junction Organization 92
## Cellular Hexose Transport 21
## Cellular Response To Heat Stress 101
## Cellular Response To Hypoxia 75
## Cellular Response To Starvation 157
## Cgmp Effects 16
## Chaperone Mediated Autophagy 22
## Chl1 Interactions 9
## Cholesterol Biosynthesis 25
## Choline Catabolism 6
## Chondroitin Sulfate Biosynthesis 20
## Chondroitin Sulfate Dermatan Sulfate Metabolism 50
## Chrebp Activates Metabolic Gene Expression 8
## Chromosome Maintenance 140
## Chylomicron Assembly 10
## Chylomicron Clearance 5
## Chylomicron Remodeling 10
## Citric Acid Cycle Tca Cycle 22
## Class C 3 Metabotropic Glutamate Pheromone Receptors 39
## Class I Peroxisomal Membrane Protein Import 20
## Clec7a Dectin 1 Induces Nfat Activation 11
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 21
## Coenzyme A Biosynthesis 8
## Cohesin Loading Onto Chromatin 10
## Collagen Biosynthesis And Modifying Enzymes 67
## Collagen Chain Trimerization 44
## Common Pathway Of Fibrin Clot Formation 22
## Competing Endogenous Rnas Cernas Regulate Pten Translation 8
## Complex I Biogenesis 57
## Conjugation Of Benzoate With Glycine 6
## Constitutive Signaling By Overexpressed Erbb2 11
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 20
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 38
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 33
## Copi Dependent Golgi To Er Retrograde Traffic 100
## Copi Independent Golgi To Er Retrograde Traffic 53
## Creatine Metabolism 11
## Creation Of C4 And C2 Activators 71
## Creb3 Factors Activate Genes 9
## Cristae Formation 31
## Crmps In Sema3a Signaling 16
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 8
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 50
## Crosslinking Of Collagen Fibrils 18
## Cs Ds Degradation 14
## Cyclin A Cdk2 Associated Events At S Phase Entry 85
## Cyclin D Associated Events In G1 47
## Cyp2e1 Reactions 11
## Cytochrome C Mediated Apoptotic Response 13
## Cytochrome P450 Arranged By Substrate Type 66
## Cytosolic Iron Sulfur Cluster Assembly 13
## Cytosolic Sulfonation Of Small Molecules 24
## Cytosolic Trna Aminoacylation 24
## Darpp 32 Events 24
## Dcc Mediated Attractive Signaling 14
## Deactivation Of The Beta Catenin Transactivating Complex 42
## Deadenylation Dependent Mrna Decay 56
## Deadenylation Of Mrna 25
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 62
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 8
## Defective B4galt7 Causes Eds Progeroid Type 20
## Defective Cftr Causes Cystic Fibrosis 61
## Defective Chst14 Causes Eds Musculocontractural Type 8
## Defective Chst3 Causes Sedcjd 8
## Defective Chst6 Causes Mcdc1 8
## Defective Chsy1 Causes Tpbs 8
## Defective Csf2rb Causes Smdp5 8
## Defective Ext2 Causes Exostoses 2 14
## Defective F9 Activation 6
## Defective Factor Ix Causes Hemophilia B 9
## Defective Factor Viii Causes Hemophilia A 7
## Defective Lfng Causes Scdo3 5
## Defective Ripk1 Mediated Regulated Necrosis 5
## Defective St3gal3 Causes Mct12 And Eiee15 8
## Defects In Biotin Btn Metabolism 8
## Defects In Cobalamin B12 Metabolism 14
## Defects In Vitamin And Cofactor Metabolism 22
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 16
## Degradation Of Axin 55
## Degradation Of Beta Catenin By The Destruction Complex 85
## Degradation Of Cysteine And Homocysteine 14
## Degradation Of Dvl 57
## Degradation Of Gli1 By The Proteasome 60
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 73
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 22
## Dermatan Sulfate Biosynthesis 11
## Detoxification Of Reactive Oxygen Species 37
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 7
## Digestion 23
## Digestion And Absorption 28
## Digestion Of Dietary Carbohydrate 11
## Digestion Of Dietary Lipid 7
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 31
## Diseases Associated With Glycosaminoglycan Metabolism 41
## Diseases Associated With Glycosylation Precursor Biosynthesis 18
## Diseases Associated With N Glycosylation Of Proteins 17
## Diseases Associated With Surfactant Metabolism 10
## Diseases Of Base Excision Repair 5
## Diseases Of Carbohydrate Metabolism 34
## Diseases Of Dna Repair 12
## Diseases Of Mismatch Repair Mmr 5
## Diseases Of Mitotic Cell Cycle 38
## Disinhibition Of Snare Formation 5
## Disorders Of Transmembrane Transporters 176
## Displacement Of Dna Glycosylase By Apex1 9
## Dna Damage Bypass 48
## Dna Damage Recognition In Gg Ner 38
## Dna Damage Reversal 8
## Dna Damage Telomere Stress Induced Senescence 80
## Dna Double Strand Break Repair 167
## Dna Double Strand Break Response 78
## Dna Repair 332
## Dna Replication 128
## Dna Replication Initiation 8
## Dna Replication Pre Initiation 85
## Dna Strand Elongation 32
## Dopamine Neurotransmitter Release Cycle 23
## Dopamine Receptors 5
## Downregulation Of Erbb2 Erbb3 Signaling 13
## Downregulation Of Erbb4 Signaling 9
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 23
## Downregulation Of Tgf Beta Receptor Signaling 26
## Downstream Signaling Events Of B Cell Receptor Bcr 81
## Downstream Signaling Of Activated Fgfr1 31
## Downstream Signaling Of Activated Fgfr2 30
## Downstream Signaling Of Activated Fgfr3 25
## Downstream Signaling Of Activated Fgfr4 27
## Dscam Interactions 11
## Dual Incision In Gg Ner 41
## Dual Incision In Tc Ner 65
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 59
## Early Phase Of Hiv Life Cycle 14
## Effects Of Pip2 Hydrolysis 27
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 29
## Eicosanoid Ligand Binding Receptors 15
## Eicosanoids 12
## Elastic Fibre Formation 45
## Electric Transmission Across Gap Junctions 5
## Elevation Of Cytosolic Ca2 Levels 16
## Endogenous Sterols 28
## Endosomal Sorting Complex Required For Transport Escrt 31
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 29
## Enos Activation 11
## Epha Mediated Growth Cone Collapse 29
## Ephb Mediated Forward Signaling 42
## Ephrin Signaling 19
## Er Quality Control Compartment Erqc 21
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 76
## Erk Mapk Targets 22
## Erks Are Inactivated 13
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 13
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 9
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 12
## Erythropoietin Activates Phospholipase C Gamma Plcg 7
## Erythropoietin Activates Ras 14
## Erythropoietin Activates Stat5 7
## Establishment Of Sister Chromatid Cohesion 11
## Estrogen Biosynthesis 6
## Estrogen Stimulated Signaling Through Prkcz 6
## Ethanol Oxidation 12
## Eukaryotic Translation Elongation 94
## Eukaryotic Translation Initiation 120
## Export Of Viral Ribonucleoproteins From Nucleus 33
## Extension Of Telomeres 51
## Extrinsic Pathway Of Fibrin Clot Formation 5
## Factors Involved In Megakaryocyte Development And Platelet Production 170
## Fanconi Anemia Pathway 39
## Fasl Cd95l Signaling 5
## Fatty Acid Metabolism 177
## Fatty Acids 15
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 8
## Fatty Acyl Coa Biosynthesis 37
## Fbxw7 Mutants And Notch1 In Cancer 5
## Fceri Mediated Nf Kb Activation 136
## Fcgr Activation 69
## Fertilization 26
## Fgfr1 Ligand Binding And Activation 16
## Fgfr1b Ligand Binding And Activation 6
## Fgfr1c Ligand Binding And Activation 12
## Fgfr2 Alternative Splicing 27
## Fgfr2 Ligand Binding And Activation 20
## Fgfr2 Mutant Receptor Activation 33
## Fgfr2b Ligand Binding And Activation 10
## Fgfr2c Ligand Binding And Activation 13
## Fgfr3 Ligand Binding And Activation 13
## Fgfr3b Ligand Binding And Activation 7
## Fgfrl1 Modulation Of Fgfr1 Signaling 13
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 5
## Flt3 Signaling 38
## Flt3 Signaling By Cbl Mutants 7
## Flt3 Signaling In Disease 28
## Flt3 Signaling Through Src Family Kinases 6
## Folding Of Actin By Cct Tric 10
## Formation Of Apoptosome 11
## Formation Of Atp By Chemiosmotic Coupling 18
## Formation Of Fibrin Clot Clotting Cascade 39
## Formation Of Incision Complex In Gg Ner 43
## Formation Of Rna Pol Ii Elongation Complex 58
## Formation Of Senescence Associated Heterochromatin Foci Sahf 17
## Formation Of Tc Ner Pre Incision Complex 53
## Formation Of The Beta Catenin Tcf Transactivating Complex 92
## Formation Of The Cornified Envelope 129
## Formation Of The Early Elongation Complex 33
## Formation Of Tubulin Folding Intermediates By Cct Tric 26
## Formation Of Xylulose 5 Phosphate 5
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 8
## Foxo Mediated Transcription 66
## Foxo Mediated Transcription Of Cell Cycle Genes 17
## Foxo Mediated Transcription Of Cell Death Genes 16
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 30
## Free Fatty Acid Receptors 5
## Free Fatty Acids Regulate Insulin Secretion 11
## Frs Mediated Fgfr1 Signaling 23
## Frs Mediated Fgfr2 Signaling 25
## Frs Mediated Fgfr3 Signaling 20
## Frs Mediated Fgfr4 Signaling 22
## Fructose Catabolism 5
## Fructose Metabolism 7
## G Alpha S Signalling Events 144
## G Alpha Z Signalling Events 48
## G Beta Gamma Signalling Through Cdc42 20
## G Beta Gamma Signalling Through Pi3kgamma 25
## G Protein Activation 24
## G Protein Beta Gamma Signalling 32
## G1 S Dna Damage Checkpoints 68
## G2 Phase 5
## Gaba B Receptor Activation 43
## Gaba Receptor Activation 60
## Gaba Synthesis Release Reuptake And Degradation 19
## Galactose Catabolism 5
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 42
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 11
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 25
## Gap Junction Assembly 38
## Gap Junction Degradation 12
## Gap Junction Trafficking And Regulation 51
## Gdp Fucose Biosynthesis 6
## Gene Silencing By Rna 140
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 7
## Global Genome Nucleotide Excision Repair Gg Ner 84
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 42
## Glucagon Signaling In Metabolic Regulation 33
## Glucagon Type Ligand Receptors 33
## Glucocorticoid Biosynthesis 10
## Gluconeogenesis 34
## Glucose Metabolism 92
## Glucuronidation 25
## Glutamate And Glutamine Metabolism 14
## Glutamate Neurotransmitter Release Cycle 24
## Glutathione Conjugation 36
## Glutathione Synthesis And Recycling 12
## Glycerophospholipid Biosynthesis 128
## Glycerophospholipid Catabolism 7
## Glycogen Breakdown Glycogenolysis 15
## Glycogen Metabolism 27
## Glycogen Storage Diseases 16
## Glycogen Synthesis 16
## Glycolysis 72
## Glycosaminoglycan Metabolism 124
## Glycosphingolipid Metabolism 45
## Glyoxylate Metabolism And Glycine Degradation 31
## Golgi Associated Vesicle Biogenesis 56
## Golgi To Er Retrograde Transport 134
## Gp1b Ix V Activation Signalling 12
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 15
## Grb7 Events In Erbb2 Signaling 5
## Hats Acetylate Histones 142
## Hcmv Late Events 116
## Hdacs Deacetylate Histones 94
## Hdl Assembly 8
## Hdl Clearance 5
## Hdl Remodeling 10
## Hdms Demethylate Histones 50
## Hdr Through Homologous Recombination Hrr 67
## Hdr Through Mmej Alt Nhej 10
## Hdr Through Single Strand Annealing Ssa 37
## Hedgehog Ligand Biogenesis 65
## Hedgehog Off State 113
## Hedgehog On State 86
## Heme Biosynthesis 14
## Heme Degradation 15
## Heparan Sulfate Heparin Hs Gag Metabolism 55
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 9
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 11
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 7
## Histidine Catabolism 8
## Hiv Elongation Arrest And Recovery 33
## Hiv Infection 231
## Hiv Life Cycle 149
## Hiv Transcription Elongation 43
## Hiv Transcription Initiation 47
## Homologous Dna Pairing And Strand Exchange 42
## Homology Directed Repair 138
## Hormone Ligand Binding Receptors 12
## Host Interactions Of Hiv Factors 131
## Hs Gag Biosynthesis 31
## Hs Gag Degradation 22
## Hsf1 Activation 31
## Hsf1 Dependent Transactivation 38
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 57
## Hur Elavl1 Binds And Stabilizes Mrna 8
## Hyaluronan Biosynthesis And Export 5
## Hyaluronan Metabolism 17
## Hyaluronan Uptake And Degradation 12
## Hydrolysis Of Lpc 9
## Ikba Variant Leads To Eda Id 7
## Il 6 Type Cytokine Receptor Ligand Interactions 17
## Inactivation Of Cdc42 And Rac1 8
## Incretin Synthesis Secretion And Inactivation 23
## Infection With Mycobacterium Tuberculosis 27
## Influenza Infection 157
## Inhibition Of Dna Recombination At Telomere 68
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 13
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 21
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 9
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 15
## Inositol Phosphate Metabolism 48
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 22
## Insulin Processing 27
## Insulin Receptor Recycling 26
## Integration Of Energy Metabolism 108
## Integration Of Provirus 9
## Integrin Signaling 27
## Interaction Between L1 And Ankyrins 31
## Interaction With Cumulus Cells And The Zona Pellucida 11
## Interactions Of Rev With Host Cellular Proteins 37
## Interactions Of Vpr With Host Cellular Proteins 37
## Interconversion Of Nucleotide Di And Triphosphates 29
## Interleukin 2 Signaling 12
## Interleukin 36 Pathway 7
## Intestinal Absorption 5
## Intra Golgi Traffic 44
## Intraflagellar Transport 54
## Intrinsic Pathway Of Fibrin Clot Formation 23
## Inwardly Rectifying K Channels 35
## Ion Homeostasis 54
## Ion Transport By P Type Atpases 55
## Ionotropic Activity Of Kainate Receptors 10
## Irak1 Recruits Ikk Complex 14
## Irak2 Mediated Activation Of Tak1 Complex 10
## Ire1alpha Activates Chaperones 50
## Irf3 Mediated Activation Of Type 1 Ifn 5
## Iron Uptake And Transport 58
## Irs Activation 5
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 22
## Josephin Domain Dubs 12
## Keratan Sulfate Biosynthesis 28
## Keratan Sulfate Degradation 13
## Keratan Sulfate Keratin Metabolism 34
## Keratinization 217
## Ketone Body Metabolism 10
## Kinesins 61
## Ksrp Khsrp Binds And Destabilizes Mrna 17
## Lagging Strand Synthesis 20
## Laminin Interactions 30
## Late Endosomal Microautophagy 34
## Lectin Pathway Of Complement Activation 8
## Leukotriene Receptors 5
## Lgi Adam Interactions 14
## Ligand Receptor Interactions 8
## Linoleic Acid La Metabolism 8
## Lipid Particle Organization 6
## Lipophagy 9
## Listeria Monocytogenes Entry Into Host Cells 20
## Long Term Potentiation 23
## Loss Of Function Of Mecp2 In Rett Syndrome 13
## Loss Of Function Of Smad2 3 In Cancer 7
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 7
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 5
## Ltc4 Cysltr Mediated Il4 Production 7
## Lysine Catabolism 12
## Lysosome Vesicle Biogenesis 35
## Lysosphingolipid And Lpa Receptors 14
## Map2k And Mapk Activation 40
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 16
## Maturation Of Nucleoprotein 10
## Maturation Of Protein 3a 9
## Maturation Of Sars Cov 1 Spike Protein 5
## Maturation Of Sars Cov 2 Spike Protein 29
## Meiosis 119
## Meiotic Recombination 87
## Meiotic Synapsis 79
## Melanin Biosynthesis 5
## Met Activates Pi3k Akt Signaling 6
## Met Activates Ptk2 Signaling 30
## Met Activates Ptpn11 5
## Met Activates Rap1 And Rac1 11
## Met Activates Ras Signaling 11
## Met Interacts With Tns Proteins 5
## Met Promotes Cell Motility 41
## Met Receptor Activation 6
## Met Receptor Recycling 10
## Metabolic Disorders Of Biological Oxidation Enzymes 34
## Metabolism Of Amine Derived Hormones 18
## Metabolism Of Amino Acids And Derivatives 374
## Metabolism Of Angiotensinogen To Angiotensins 18
## Metabolism Of Carbohydrates 293
## Metabolism Of Cofactors 19
## Metabolism Of Fat Soluble Vitamins 48
## Metabolism Of Folate And Pterines 17
## Metabolism Of Ingested Semet Sec Mesec Into H2se 8
## Metabolism Of Lipids 741
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 15
## Metabolism Of Nucleotides 98
## Metabolism Of Polyamines 59
## Metabolism Of Porphyrins 27
## Metabolism Of Rna 672
## Metabolism Of Steroid Hormones 35
## Metabolism Of Steroids 151
## Metabolism Of Vitamins And Cofactors 189
## Metabolism Of Water Soluble Vitamins And Cofactors 123
## Metal Ion Slc Transporters 26
## Metal Sequestration By Antimicrobial Proteins 6
## Metallothioneins Bind Metals 11
## Methionine Salvage Pathway 6
## Methylation 14
## Microrna Mirna Biogenesis 25
## Mineralocorticoid Biosynthesis 6
## Miro Gtpase Cycle 8
## Miscellaneous Substrates 12
## Miscellaneous Transport And Binding Events 26
## Mismatch Repair 15
## Mitochondrial Calcium Ion Transport 23
## Mitochondrial Fatty Acid Beta Oxidation 37
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 11
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 6
## Mitochondrial Iron Sulfur Cluster Biogenesis 13
## Mitochondrial Protein Import 65
## Mitochondrial Translation 96
## Mitochondrial Trna Aminoacylation 21
## Mitochondrial Uncoupling 6
## Mitophagy 29
## Mitotic Spindle Checkpoint 111
## Mitotic Telophase Cytokinesis 13
## Modulation By Mtb Of Host Immune System 7
## Molecules Associated With Elastic Fibres 38
## Molybdenum Cofactor Biosynthesis 6
## Mrna Capping 29
## Mrna Decay By 3 To 5 Exoribonuclease 16
## Mrna Decay By 5 To 3 Exoribonuclease 15
## Mrna Editing 10
## Mrna Editing C To U Conversion 8
## Mrna Splicing 188
## Mrna Splicing Minor Pathway 52
## Mtor Signalling 41
## Mtorc1 Mediated Signalling 24
## Mucopolysaccharidoses 11
## Multifunctional Anion Exchangers 9
## Muscarinic Acetylcholine Receptors 5
## Myoclonic Epilepsy Of Lafora 9
## Myogenesis 29
## N Glycan Antennae Elongation 15
## N Glycan Antennae Elongation In The Medial Trans Golgi 26
## N Glycan Trimming And Elongation In The Cis Golgi 5
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 35
## Na Cl Dependent Neurotransmitter Transporters 19
## Nade Modulates Death Signalling 6
## Ncam1 Interactions 42
## Nectin Necl Trans Heterodimerization 7
## Neddylation 234
## Nef And Signal Transduction 8
## Nef Mediated Cd4 Down Regulation 9
## Nef Mediated Cd8 Down Regulation 7
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 10
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 21
## Negative Epigenetic Regulation Of Rrna Expression 109
## Negative Feedback Regulation Of Mapk Pathway 6
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 10
## Negative Regulation Of Fgfr1 Signaling 33
## Negative Regulation Of Fgfr2 Signaling 34
## Negative Regulation Of Fgfr3 Signaling 29
## Negative Regulation Of Fgfr4 Signaling 31
## Negative Regulation Of Flt3 15
## Negative Regulation Of Mapk Pathway 43
## Negative Regulation Of Met Activity 21
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 21
## Negative Regulation Of Notch4 Signaling 54
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 5
## Negative Regulators Of Ddx58 Ifih1 Signaling 34
## Nephrin Family Interactions 23
## Netrin 1 Signaling 50
## Netrin Mediated Repulsion Signals 8
## Neurexins And Neuroligins 56
## Neurofascin Interactions 7
## Neurotoxicity Of Clostridium Toxins 10
## Neurotransmitter Clearance 10
## Neurotransmitter Release Cycle 51
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 12
## Nf Kb Is Activated And Signals Survival 13
## Ngf Independant Trka Activation 5
## Nicotinamide Salvaging 19
## Nicotinate Metabolism 31
## Nitric Oxide Stimulates Guanylate Cyclase 22
## Non Integrin Membrane Ecm Interactions 59
## Noncanonical Activation Of Notch3 8
## Nonhomologous End Joining Nhej 69
## Nonsense Mediated Decay Nmd 116
## Norepinephrine Neurotransmitter Release Cycle 18
## Nostrin Mediated Enos Trafficking 5
## Notch Hlh Transcription Pathway 28
## Notch1 Intracellular Domain Regulates Transcription 48
## Notch2 Activation And Transmission Of Signal To The Nucleus 22
## Notch3 Intracellular Domain Regulates Transcription 25
## Notch4 Activation And Transmission Of Signal To The Nucleus 11
## Notch4 Intracellular Domain Regulates Transcription 20
## Nr1h2 And Nr1h3 Mediated Signaling 47
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 5
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 9
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 5
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 9
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 5
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 37
## Nrcam Interactions 7
## Nrif Signals Cell Death From The Nucleus 16
## Ns1 Mediated Effects On Host Pathways 41
## Ntrk2 Activates Rac1 5
## Nuclear Import Of Rev Protein 34
## Nuclear Receptor Transcription Pathway 53
## Nuclear Signaling By Erbb4 32
## Nucleobase Biosynthesis 15
## Nucleobase Catabolism 35
## Nucleotide Excision Repair 110
## Nucleotide Like Purinergic Receptors 16
## Nucleotide Salvage 23
## O Glycosylation Of Tsr Domain Containing Proteins 39
## Oas Antiviral Response 9
## Olfactory Signaling Pathway 400
## Oncogene Induced Senescence 35
## Oncogenic Mapk Signaling 82
## Opsins 9
## Orc1 Removal From Chromatin 71
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 8
## Organic Anion Transport 5
## Organic Anion Transporters 10
## Organic Cation Anion Zwitterion Transport 15
## Organic Cation Transport 10
## Other Interleukin Signaling 24
## Other Semaphorin Interactions 19
## P130cas Linkage To Mapk Signaling For Integrins 15
## P2y Receptors 12
## P38mapk Events 13
## P75ntr Negatively Regulates Cell Cycle Via Sc1 6
## P75ntr Recruits Signalling Complexes 13
## P75ntr Signals Via Nf Kb 16
## Passive Transport By Aquaporins 13
## Pcna Dependent Long Patch Base Excision Repair 21
## Pecam1 Interactions 12
## Pentose Phosphate Pathway 15
## Peptide Hormone Biosynthesis 14
## Peptide Hormone Metabolism 90
## Peroxisomal Lipid Metabolism 29
## Peroxisomal Protein Import 63
## Pexophagy 11
## Phase 0 Rapid Depolarisation 32
## Phase 1 Inactivation Of Fast Na Channels 7
## Phase 2 Plateau Phase 15
## Phase 3 Rapid Repolarisation 8
## Phase I Functionalization Of Compounds 106
## Phase Ii Conjugation Of Compounds 109
## Phenylalanine And Tyrosine Metabolism 11
## Phenylalanine Metabolism 6
## Phosphate Bond Hydrolysis By Ntpdase Proteins 8
## Phosphate Bond Hydrolysis By Nudt Proteins 7
## Phospholipase C Mediated Cascade Fgfr2 18
## Phospholipase C Mediated Cascade Fgfr4 15
## Phospholipid Metabolism 211
## Physiological Factors 12
## Pi 3k Cascade Fgfr1 21
## Pi 3k Cascade Fgfr2 23
## Pi 3k Cascade Fgfr3 18
## Pi 3k Cascade Fgfr4 20
## Pi Metabolism 84
## Pi3k Akt Activation 9
## Pi3k Events In Erbb4 Signaling 10
## Pi5p Regulates Tp53 Acetylation 9
## Pink1 Prkn Mediated Mitophagy 22
## Piwi Interacting Rna Pirna Biogenesis 29
## Pka Activation In Glucagon Signalling 17
## Pka Mediated Phosphorylation Of Key Metabolic Factors 5
## Pkmts Methylate Histone Lysines 71
## Plasma Lipoprotein Assembly 19
## Plasma Lipoprotein Remodeling 32
## Platelet Adhesion To Exposed Collagen 15
## Platelet Aggregation Plug Formation 39
## Platelet Calcium Homeostasis 28
## Platelet Homeostasis 86
## Platelet Sensitization By Ldl 17
## Polb Dependent Long Patch Base Excision Repair 8
## Polo Like Kinase Mediated Events 16
## Polymerase Switching 14
## Polymerase Switching On The C Strand Of The Telomere 26
## Positive Epigenetic Regulation Of Rrna Expression 106
## Post Chaperonin Tubulin Folding Pathway 23
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 94
## Postmitotic Nuclear Pore Complex Npc Reformation 27
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 10
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 7
## Pre Notch Expression And Processing 120
## Pre Notch Processing In Golgi 18
## Pre Notch Processing In The Endoplasmic Reticulum 6
## Pregnenolone Biosynthesis 12
## Presynaptic Depolarization And Calcium Channel Opening 11
## Presynaptic Function Of Kainate Receptors 21
## Prevention Of Phagosomal Lysosomal Fusion 9
## Processing And Activation Of Sumo 10
## Processing Of Capped Intron Containing Pre Mrna 242
## Processing Of Capped Intronless Pre Mrna 28
## Processing Of Dna Double Strand Break Ends 98
## Processing Of Intronless Pre Mrnas 19
## Processing Of Smdt1 16
## Processive Synthesis On The C Strand Of The Telomere 19
## Processive Synthesis On The Lagging Strand 15
## Prolactin Receptor Signaling 15
## Prolonged Erk Activation Events 14
## Propionyl Coa Catabolism 5
## Prostacyclin Signalling Through Prostacyclin Receptor 19
## Prostanoid Ligand Receptors 9
## Protein Localization 164
## Protein Methylation 17
## Protein Protein Interactions At Synapses 87
## Protein Repair 6
## Protein Ubiquitination 79
## Proton Coupled Monocarboxylate Transport 6
## Pten Regulation 139
## Ptk6 Expression 5
## Ptk6 Regulates Cell Cycle 6
## Ptk6 Regulates Proteins Involved In Rna Processing 5
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 14
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 9
## Purine Catabolism 17
## Purine Ribonucleoside Monophosphate Biosynthesis 12
## Purine Salvage 13
## Pyrimidine Catabolism 12
## Pyrimidine Salvage 11
## Pyruvate Metabolism 31
## Pyruvate Metabolism And Citric Acid Tca Cycle 55
## Ra Biosynthesis Pathway 22
## Rab Gefs Exchange Gtp For Gdp On Rabs 90
## Rab Geranylgeranylation 65
## Rab Regulation Of Trafficking 122
## Raf Activation 34
## Rap1 Signalling 16
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 20
## Ras Processing 24
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 7
## Reactions Specific To The Complex N Glycan Synthesis Pathway 10
## Receptor Mediated Mitophagy 11
## Receptor Type Tyrosine Protein Phosphatases 20
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 56
## Recognition Of Dna Damage By Pcna Containing Replication Complex 30
## Recycling Of Bile Acids And Salts 16
## Recycling Of Eif2 Gdp 8
## Recycling Pathway Of L1 49
## Reduction Of Cytosolic Ca Levels 12
## Reelin Signalling Pathway 5
## Regulated Proteolysis Of P75ntr 11
## Regulation By C Flip 11
## Regulation Of Bach1 Activity 11
## Regulation Of Beta Cell Development 42
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 55
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 10
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 8
## Regulation Of Expression Of Slits And Robos 172
## Regulation Of Foxo Transcriptional Activity By Acetylation 10
## Regulation Of Fzd By Ubiquitination 21
## Regulation Of Gene Expression By Hypoxia Inducible Factor 11
## Regulation Of Gene Expression In Beta Cells 21
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 8
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 5
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 16
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 32
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 12
## Regulation Of Hmox1 Expression And Activity 65
## Regulation Of Hsf1 Mediated Heat Shock Response 82
## Regulation Of Ifna Signaling 26
## Regulation Of Ifng Signaling 14
## Regulation Of Innate Immune Responses To Cytosolic Dna 15
## Regulation Of Insulin Secretion 78
## Regulation Of Kit Signaling 16
## Regulation Of Lipid Metabolism By Pparalpha 120
## Regulation Of Localization Of Foxo Transcription Factors 12
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 87
## Regulation Of Pten Gene Transcription 61
## Regulation Of Pten Localization 9
## Regulation Of Pten Mrna Translation 9
## Regulation Of Pten Stability And Activity 69
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 16
## Regulation Of Ras By Gaps 68
## Regulation Of Runx1 Expression And Activity 17
## Regulation Of Runx3 Expression And Activity 55
## Regulation Of Signaling By Cbl 22
## Regulation Of Signaling By Nodal 11
## Regulation Of Tp53 Activity Through Acetylation 30
## Regulation Of Tp53 Activity Through Association With Co Factors 14
## Regulation Of Tp53 Activity Through Methylation 19
## Regulation Of Tp53 Activity Through Phosphorylation 92
## Relaxin Receptors 8
## Release Of Apoptotic Factors From The Mitochondria 7
## Release Of Hh Np From The Secreting Cell 8
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 10
## Repression Of Wnt Target Genes 14
## Reproduction 145
## Resolution Of Abasic Sites Ap Sites 38
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 25
## Resolution Of D Loop Structures 34
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 26
## Respiratory Electron Transport 103
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 127
## Response Of Eif2ak1 Hri To Heme Deficiency 15
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 102
## Response Of Mtb To Phagocytosis 23
## Response To Metal Ions 14
## Ret Signaling 40
## Retinoid Cycle Disease Events 13
## Retrograde Neurotrophin Signalling 14
## Reversible Hydration Of Carbon Dioxide 12
## Rho Gtpase Effectors 324
## Rho Gtpases Activate Cit 19
## Rho Gtpases Activate Formins 140
## Rho Gtpases Activate Iqgaps 32
## Rho Gtpases Activate Ktn1 11
## Rho Gtpases Activate Nadph Oxidases 24
## Rho Gtpases Activate Paks 21
## Rho Gtpases Activate Pkns 94
## Rho Gtpases Activate Rhotekin And Rhophilins 9
## Rho Gtpases Activate Rocks 19
## Rho Gtpases Activate Wasps And Waves 36
## Rhobtb Gtpase Cycle 35
## Rhobtb1 Gtpase Cycle 23
## Rhobtb2 Gtpase Cycle 23
## Rhobtb3 Atpase Cycle 10
## Rhot1 Gtpase Cycle 5
## Rhou Gtpase Cycle 34
## Rhov Gtpase Cycle 33
## Rna Polymerase I Promoter Escape 91
## Rna Polymerase I Transcription 111
## Rna Polymerase I Transcription Initiation 47
## Rna Polymerase I Transcription Termination 31
## Rna Polymerase Ii Transcribes Snrna Genes 81
## Rna Polymerase Ii Transcription Termination 66
## Rna Polymerase Iii Chain Elongation 18
## Rna Polymerase Iii Transcription 41
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 28
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 28
## Rna Polymerase Iii Transcription Termination 23
## Rnd1 Gtpase Cycle 42
## Rnd2 Gtpase Cycle 43
## Rnd3 Gtpase Cycle 42
## Robo Receptors Bind Akap5 9
## Role Of Abl In Robo Slit Signaling 8
## Role Of Lat2 Ntal Lab On Calcium Mobilization 71
## Role Of Phospholipids In Phagocytosis 82
## Role Of Second Messengers In Netrin 1 Signaling 10
## Rora Activates Gene Expression 18
## Ros And Rns Production In Phagocytes 36
## Rrna Modification In The Mitochondrion 8
## Rrna Modification In The Nucleus And Cytosol 60
## Rrna Processing 205
## Rrna Processing In The Mitochondrion 12
## Rsk Activation 7
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 10
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 37
## Runx1 Regulates Estrogen Receptor Mediated Transcription 6
## Runx1 Regulates Expression Of Components Of Tight Junctions 5
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 98
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 6
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 130
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 8
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 5
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 6
## Runx3 Regulates Bcl2l11 Bim Transcription 5
## Runx3 Regulates Cdkn1a Transcription 7
## Runx3 Regulates Immune Response And Cell Migration 6
## Runx3 Regulates Notch Signaling 14
## Runx3 Regulates P14 Arf 10
## Runx3 Regulates Wnt Signaling 8
## Runx3 Regulates Yap1 Mediated Transcription 8
## S Phase 162
## Sars Cov 1 Genome Replication And Transcription 6
## Sars Cov 1 Infection 50
## Sars Cov 2 Infection 67
## Scavenging By Class A Receptors 19
## Scavenging By Class B Receptors 6
## Scavenging By Class F Receptors 6
## Scavenging Of Heme From Plasma 69
## Scf Skp2 Mediated Degradation Of P27 P21 60
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 32
## Selective Autophagy 82
## Selenoamino Acid Metabolism 118
## Sema3a Pak Dependent Axon Repulsion 16
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 14
## Sema4d In Semaphorin Signaling 24
## Sema4d Induced Cell Migration And Growth Cone Collapse 20
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 8
## Semaphorin Interactions 64
## Sensing Of Dna Double Strand Breaks 6
## Sensory Perception 575
## Sensory Processing Of Sound 77
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 55
## Separation Of Sister Chromatids 191
## Serine Biosynthesis 9
## Serotonin And Melatonin Biosynthesis 5
## Serotonin Neurotransmitter Release Cycle 18
## Serotonin Receptors 12
## Shc Mediated Cascade Fgfr1 21
## Shc Mediated Cascade Fgfr3 18
## Shc Mediated Cascade Fgfr4 20
## Shc Related Events Triggered By Igf1r 9
## Shc1 Events In Erbb4 Signaling 14
## Signal Amplification 33
## Signal Attenuation 10
## Signal Regulatory Protein Family Interactions 16
## Signaling By Activin 13
## Signaling By Bmp 28
## Signaling By Braf And Raf Fusions 65
## Signaling By Ctnnb1 Phospho Site Mutants 15
## Signaling By Erythropoietin 25
## Signaling By Fgfr 87
## Signaling By Fgfr1 50
## Signaling By Fgfr2 73
## Signaling By Fgfr2 Iiia Tm 19
## Signaling By Fgfr2 In Disease 43
## Signaling By Fgfr3 40
## Signaling By Fgfr3 Fusions In Cancer 10
## Signaling By Fgfr4 41
## Signaling By Fgfr4 In Disease 11
## Signaling By Flt3 Fusion Proteins 19
## Signaling By Flt3 Itd And Tkd Mutants 16
## Signaling By Hedgehog 150
## Signaling By Hippo 20
## Signaling By Lrp5 Mutants 6
## Signaling By Mapk Mutants 7
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 5
## Signaling By Moderate Kinase Activity Braf Mutants 45
## Signaling By Mras Complex Mutants 8
## Signaling By Mst1 5
## Signaling By Nodal 20
## Signaling By Notch1 74
## Signaling By Notch1 Hd Domain Mutants In Cancer 15
## Signaling By Notch1 Pest Domain Mutants In Cancer 58
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 7
## Signaling By Notch4 82
## Signaling By Ntrk2 Trkb 25
## Signaling By Ntrk3 Trkc 17
## Signaling By Retinoic Acid 43
## Signaling By Rnf43 Mutants 8
## Signaling By Robo Receptors 218
## Signaling By Tgf Beta Receptor Complex In Cancer 8
## Signaling By Wnt In Cancer 34
## Signalling To Erks 34
## Signalling To P38 Via Rit And Rin 5
## Signalling To Ras 20
## Sirt1 Negatively Regulates Rrna Expression 68
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 11
## Slc Mediated Transmembrane Transport 250
## Slc Transporter Disorders 99
## Smac Xiap Regulated Apoptotic Response 8
## Small Interfering Rna Sirna Biogenesis 9
## Smooth Muscle Contraction 38
## Snrnp Assembly 54
## Sodium Calcium Exchangers 11
## Sodium Coupled Phosphate Cotransporters 5
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 5
## Sodium Proton Exchangers 9
## Sos Mediated Signalling 7
## Sperm Motility And Taxes 9
## Sphingolipid De Novo Biosynthesis 45
## Sphingolipid Metabolism 90
## Spry Regulation Of Fgf Signaling 16
## Srp Dependent Cotranslational Protein Targeting To Membrane 113
## Stabilization Of P53 57
## Stat5 Activation 7
## Stat5 Activation Downstream Of Flt3 Itd Mutants 10
## Striated Muscle Contraction 36
## Sulfide Oxidation To Sulfate 6
## Sulfur Amino Acid Metabolism 28
## Sumo Is Conjugated To E1 Uba2 Sae1 5
## Sumo Is Proteolytically Processed 6
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 7
## Sumoylation Of Chromatin Organization Proteins 71
## Sumoylation Of Dna Damage Response And Repair Proteins 77
## Sumoylation Of Dna Replication Proteins 46
## Sumoylation Of Immune Response Proteins 11
## Sumoylation Of Intracellular Receptors 30
## Sumoylation Of Rna Binding Proteins 47
## Sumoylation Of Sumoylation Proteins 35
## Sumoylation Of Transcription Factors 20
## Sumoylation Of Ubiquitinylation Proteins 39
## Suppression Of Apoptosis 7
## Suppression Of Phagosomal Maturation 13
## Surfactant Metabolism 30
## Switching Of Origins To A Post Replicative State 91
## Synaptic Adhesion Like Molecules 21
## Syndecan Interactions 27
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 7
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 6
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 9
## Synthesis Of 5 Eicosatetraenoic Acids 9
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 30
## Synthesis Of Bile Acids And Bile Salts 34
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 14
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 15
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 24
## Synthesis Of Diphthamide Eef2 8
## Synthesis Of Dolichyl Phosphate 6
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 8
## Synthesis Of Gdp Mannose 5
## Synthesis Of Glycosylphosphatidylinositol Gpi 18
## Synthesis Of Ip2 Ip And Ins In The Cytosol 14
## Synthesis Of Ip3 And Ip4 In The Cytosol 26
## Synthesis Of Ketone Bodies 8
## Synthesis Of Leukotrienes Lt And Eoxins Ex 21
## Synthesis Of Lipoxins Lx 6
## Synthesis Of Pa 39
## Synthesis Of Pc 28
## Synthesis Of Pe 13
## Synthesis Of Pg 8
## Synthesis Of Pi 5
## Synthesis Of Pips At The Early Endosome Membrane 16
## Synthesis Of Pips At The Er Membrane 5
## Synthesis Of Pips At The Golgi Membrane 18
## Synthesis Of Pips At The Late Endosome Membrane 11
## Synthesis Of Pips At The Plasma Membrane 53
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 15
## Synthesis Of Pyrophosphates In The Cytosol 10
## Synthesis Of Udp N Acetyl Glucosamine 8
## Synthesis Of Very Long Chain Fatty Acyl Coas 24
## Synthesis Of Wybutosine At G37 Of Trna Phe 6
## Synthesis Secretion And Deacylation Of Ghrelin 19
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 20
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 13
## Tachykinin Receptors Bind Tachykinins 5
## Tbc Rabgaps 44
## Telomere C Strand Lagging Strand Synthesis 34
## Telomere C Strand Synthesis Initiation 13
## Telomere Extension By Telomerase 23
## Telomere Maintenance 113
## Terminal Pathway Of Complement 8
## Termination Of Translesion Dna Synthesis 32
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 10
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 5
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 5
## Tgf Beta Receptor Signaling Activates Smads 32
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 16
## The Activation Of Arylsulfatases 13
## The Canonical Retinoid Cycle In Rods Twilight Vision 23
## The Citric Acid Tca Cycle And Respiratory Electron Transport 178
## The Fatty Acid Cycling Model 5
## The Phototransduction Cascade 34
## The Retinoid Cycle In Cones Daylight Vision 7
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 28
## Thrombin Signalling Through Proteinase Activated Receptors Pars 32
## Thromboxane Signalling Through Tp Receptor 24
## Thyroxine Biosynthesis 10
## Tie2 Signaling 18
## Tight Junction Interactions 30
## Tnfr1 Induced Proapoptotic Signaling 13
## Tnfr1 Mediated Ceramide Production 6
## Toxicity Of Botulinum Toxin Type D Botd 5
## Tp53 Regulates Metabolic Genes 87
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 21
## Tp53 Regulates Transcription Of Death Receptors And Ligands 12
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 20
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 14
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 14
## Traf3 Dependent Irf Activation Pathway 14
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 16
## Traf6 Mediated Irf7 Activation 29
## Trafficking Of Ampa Receptors 31
## Trafficking Of Glur2 Containing Ampa Receptors 17
## Trafficking Of Myristoylated Proteins To The Cilium 5
## Trail Signaling 8
## Trans Golgi Network Vesicle Budding 72
## Transcription Coupled Nucleotide Excision Repair Tc Ner 78
## Transcription Of E2f Targets Under Negative Control By Dream Complex 19
## Transcription Of The Hiv Genome 70
## Transcriptional Regulation By E2f6 34
## Transcriptional Regulation By Runx3 96
## Transcriptional Regulation By Small Rnas 107
## Transcriptional Regulation Of Testis Differentiation 13
## Transcriptional Regulation Of White Adipocyte Differentiation 84
## Transferrin Endocytosis And Recycling 31
## Translation 295
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 13
## Translation Of Sars Cov 1 Structural Proteins 28
## Translation Of Sars Cov 2 Structural Proteins 44
## Translesion Synthesis By Polh 19
## Translesion Synthesis By Polk 17
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 39
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 72
## Transport And Synthesis Of Paps 6
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 86
## Transport Of Connexons To The Plasma Membrane 21
## Transport Of Fatty Acids 8
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 106
## Transport Of Mature Mrnas Derived From Intronless Transcripts 43
## Transport Of Mature Transcript To Cytoplasm 84
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 12
## Transport Of Nucleotide Sugars 9
## Transport Of Organic Anions 12
## Transport Of The Slbp Dependant Mature Mrna 36
## Transport Of Vitamins Nucleosides And Related Molecules 44
## Trif Mediated Programmed Cell Death 9
## Triglyceride Biosynthesis 14
## Triglyceride Catabolism 24
## Triglyceride Metabolism 38
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 17
## Trna Aminoacylation 42
## Trna Modification In The Mitochondrion 9
## Trna Modification In The Nucleus And Cytosol 43
## Trna Processing 111
## Trna Processing In The Mitochondrion 7
## Trna Processing In The Nucleus 59
## Trp Channels 28
## Tryptophan Catabolism 14
## Type I Hemidesmosome Assembly 11
## Tyrosine Catabolism 5
## Tysnd1 Cleaves Peroxisomal Proteins 7
## Ubiquinol Biosynthesis 8
## Uch Proteinases 102
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 21
## Unwinding Of Dna 12
## Uptake And Actions Of Bacterial Toxins 29
## Uptake And Function Of Anthrax Toxins 11
## Uptake And Function Of Diphtheria Toxin 6
## Urea Cycle 10
## Vasopressin Like Receptors 6
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 43
## Vegf Ligand Receptor Interactions 8
## Vegfr2 Mediated Cell Proliferation 19
## Viral Messenger Rna Synthesis 44
## Visual Phototransduction 100
## Vitamin B1 Thiamin Metabolism 5
## Vitamin B2 Riboflavin Metabolism 7
## Vitamin B5 Pantothenate Metabolism 17
## Vitamin C Ascorbate Metabolism 8
## Vitamin D Calciferol Metabolism 11
## Vitamins 6
## Vldl Assembly 5
## Vldl Clearance 6
## Voltage Gated Potassium Channels 43
## Vxpx Cargo Targeting To Cilium 21
## Wax And Plasmalogen Biosynthesis 7
## Wnt Mediated Activation Of Dvl 8
## Xenobiotics 25
## Zinc Efflux And Compartmentalization By The Slc30 Family 7
## Zinc Influx Into Cells By The Slc39 Gene Family 10
## Zinc Transporters 17
## overlap
## Cytokine Signaling In Immune System 29
## Interleukin 10 Signaling 13
## Signaling By Interleukins 22
## Innate Immune System 27
## Interleukin 4 And Interleukin 13 Signaling 12
## Chemokine Receptors Bind Chemokines 8
## Signaling By Gpcr 14
## Peptide Ligand Binding Receptors 8
## Neutrophil Degranulation 11
## Leishmania Infection 9
## Regulated Necrosis 5
## Purinergic Signaling In Leishmaniasis Infection 4
## Pyroptosis 4
## Gpcr Ligand Binding 10
## Interleukin 1 Processing 3
## Extra Nuclear Estrogen Signaling 5
## Interleukin 1 Family Signaling 6
## G Alpha I Signalling Events 8
## Adaptive Immune System 12
## Class A 1 Rhodopsin Like Receptors 8
## Toll Like Receptor Cascades 6
## Tnfr2 Non Canonical Nf Kb Pathway 5
## Pi3k Akt Signaling In Cancer 5
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 3
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 3
## Negative Regulation Of The Pi3k Akt Network 5
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 4
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 6
## Inflammasomes 3
## Programmed Cell Death 6
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 3
## Costimulation By The Cd28 Family 4
## Constitutive Signaling By Aberrant Pi3k In Cancer 4
## Tnfs Bind Their Physiological Receptors 3
## Infectious Disease 11
## Activation Of Matrix Metalloproteinases 3
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 2
## Toll Like Receptor 9 Tlr9 Cascade 4
## Myd88 Independent Tlr4 Cascade 4
## Cd163 Mediating An Anti Inflammatory Response 2
## Egfr Transactivation By Gastrin 2
## Extracellular Matrix Organization 6
## Dap12 Interactions 3
## Intracellular Signaling By Second Messengers 6
## Mapk3 Erk1 Activation 2
## Senescence Associated Secretory Phenotype Sasp 4
## Post Translational Protein Modification 13
## Complement Cascade 4
## Interleukin 6 Signaling 2
## Cd28 Dependent Vav1 Pathway 2
## Esr Mediated Signaling 5
## Trafficking And Processing Of Endosomal Tlr 2
## Interleukin 12 Family Signaling 3
## Signaling By Receptor Tyrosine Kinases 7
## Collagen Degradation 3
## The Nlrp3 Inflammasome 2
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 6
## Interleukin 17 Signaling 3
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 2
## Ctla4 Inhibitory Signaling 2
## Interleukin 37 Signaling 2
## Signal Transduction By L1 2
## Cd28 Dependent Pi3k Akt Signaling 2
## Raf Independent Mapk1 3 Activation 2
## Signaling By Nuclear Receptors 5
## Interleukin 6 Family Signaling 2
## Interferon Gamma Signaling 3
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 2
## Cellular Senescence 4
## Pd 1 Signaling 2
## Toll Like Receptor Tlr1 Tlr2 Cascade 3
## Diseases Of Immune System 2
## Mapk Targets Nuclear Events Mediated By Map Kinases 2
## Cargo Recognition For Clathrin Mediated Endocytosis 3
## Antigen Processing Cross Presentation 3
## Perk Regulates Gene Expression 2
## Cd28 Co Stimulation 2
## Nod1 2 Signaling Pathway 2
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 2
## Ngf Stimulated Transcription 2
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 3
## Signaling By Scf Kit 2
## Interleukin 2 Family Signaling 2
## Signaling By Ntrks 3
## Interleukin 12 Signaling 2
## Degradation Of The Extracellular Matrix 3
## Death Receptor Signalling 3
## Clathrin Mediated Endocytosis 3
## Eph Ephrin Mediated Repulsion Of Cells 2
## Signaling By Ptk6 2
## Deubiquitination 4
## G2 M Dna Replication Checkpoint 1
## Mecp2 Regulates Transcription Factors 1
## Runx2 Regulates Chondrocyte Maturation 1
## Assembly Of Collagen Fibrils And Other Multimeric Structures 2
## Cytosolic Sensors Of Pathogen Associated Dna 2
## Nuclear Events Kinase And Transcription Factor Activation 2
## Clec7a Inflammasome Pathway 1
## Fibronectin Matrix Formation 1
## Hemostasis 6
## Mapk Family Signaling Cascades 4
## Phosphorylation Of Emi1 1
## Ptk6 Promotes Hif1a Stabilization 1
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 1
## Circadian Clock 2
## Rhob Gtpase Cycle 2
## Activation Of Nima Kinases Nek9 Nek6 Nek7 1
## Creb Phosphorylation 1
## Rhoc Gtpase Cycle 2
## Rhog Gtpase Cycle 2
## Cell Surface Interactions At The Vascular Wall 3
## Cellular Responses To External Stimuli 6
## Activation Of C3 And C5 1
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 1
## Interferon Signaling 3
## Interleukin 18 Signaling 1
## Mecp2 Regulates Transcription Of Neuronal Ligands 1
## Runx2 Regulates Genes Involved In Cell Migration 1
## Rna Polymerase Ii Transcription 9
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 1
## E2f Enabled Inhibition Of Pre Replication Complex Formation 1
## Egfr Interacts With Phospholipase C Gamma 1
## Interleukin 23 Signaling 1
## Interleukin 9 Signaling 1
## Mapk1 Erk2 Activation 1
## Fceri Mediated Mapk Activation 2
## G Alpha Q Signalling Events 3
## Activation Of The Ap 1 Family Of Transcription Factors 1
## Akt Phosphorylates Targets In The Nucleus 1
## Camk Iv Mediated Phosphorylation Of Creb 1
## Interleukin 21 Signaling 1
## Mastl Facilitates Mitotic Progression 1
## P75ntr Regulates Axonogenesis 1
## Rac2 Gtpase Cycle 2
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 3
## Collagen Formation 2
## Transcriptional Regulation Of Granulopoiesis 2
## Eph Ephrin Signaling 2
## Unfolded Protein Response Upr 2
## Condensation Of Prometaphase Chromosomes 1
## Endosomal Vacuolar Pathway 1
## Interleukin 27 Signaling 1
## Signaling By Leptin 1
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 1
## Class B 2 Secretin Family Receptors 2
## Fcgr3a Mediated Il10 Synthesis 2
## Rac3 Gtpase Cycle 2
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 1
## Interleukin 35 Signalling 1
## Killing Mechanisms 1
## Notch2 Intracellular Domain Regulates Transcription 1
## P75 Ntr Receptor Mediated Signalling 2
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 1
## Tandem Pore Domain Potassium Channels 1
## Ticam1 Dependent Activation Of Irf3 Irf7 1
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 1
## Vldlr Internalisation And Degradation 1
## Advanced Glycosylation Endproduct Receptor Signaling 1
## Apoptosis Induced Dna Fragmentation 1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 1
## Copi Mediated Anterograde Transport 2
## Dissolution Of Fibrin Clot 1
## Erbb2 Activates Ptk6 Signaling 1
## Interleukin 1 Signaling 2
## Irf3 Mediated Induction Of Type I Ifn 1
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 1
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 1
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 1
## Golgi Cisternae Pericentriolar Stack Reorganization 1
## Interleukin 15 Signaling 1
## Shc1 Events In Egfr Signaling 1
## Constitutive Signaling By Egfrviii 1
## Depolymerisation Of The Nuclear Lamina 1
## Erbb2 Regulates Cell Motility 1
## Membrane Trafficking 5
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 1
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 1
## Wnt5a Dependent Internalization Of Fzd4 1
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 1
## Platelet Activation Signaling And Aggregation 3
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 1
## Grb2 Events In Erbb2 Signaling 1
## Pi3k Events In Erbb2 Signaling 1
## Signaling By Erbb2 Ecd Mutants 1
## Sting Mediated Induction Of Host Immune Responses 1
## Sumoylation Of Dna Methylation Proteins 1
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 1
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 1
## Gab1 Signalosome 1
## Rip Mediated Nfkb Activation Via Zbp1 1
## Transcriptional Regulation By Runx2 2
## Irak4 Deficiency Tlr2 4 1
## L1cam Interactions 2
## Mecp2 Regulates Neuronal Receptors And Channels 1
## Signaling By Cytosolic Fgfr1 Fusion Mutants 1
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 1
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 1
## Cytoprotection By Hmox1 2
## Initiation Of Nuclear Envelope Ne Reformation 1
## Ldl Clearance 1
## Phase 4 Resting Membrane Potential 1
## Phosphorylation Of The Apc C 1
## Pka Mediated Phosphorylation Of Creb 1
## Signaling By Kit In Disease 1
## Signaling By Pdgfr In Disease 1
## Regulation Of Tlr By Endogenous Ligand 1
## Zbp1 Dai Mediated Induction Of Type I Ifns 1
## Response To Elevated Platelet Cytosolic Ca2 2
## Adora2b Mediated Anti Inflammatory Cytokines Production 2
## E2f Mediated Regulation Of Dna Replication 1
## Shc1 Events In Erbb2 Signaling 1
## Hcmv Early Events 2
## Ikk Complex Recruitment Mediated By Rip1 1
## Termination Of O Glycan Biosynthesis 1
## Asparagine N Linked Glycosylation 3
## C Type Lectin Receptors Clrs 2
## Apc C Cdc20 Mediated Degradation Of Cyclin B 1
## Growth Hormone Receptor Signaling 1
## Runx2 Regulates Osteoblast Differentiation 1
## Traf6 Mediated Nf Kb Activation 1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 1
## Cyclin A B1 B2 Associated Events During G2 M Transition 1
## Inactivation Of Csf3 G Csf Signaling 1
## Notch3 Activation And Transmission Of Signal To The Nucleus 1
## Signaling By Egfr In Cancer 1
## Vesicle Mediated Transport 5
## Constitutive Signaling By Akt1 E17k In Cancer 1
## Dectin 2 Family 1
## Interleukin 20 Family Signaling 1
## Signaling By Erbb2 In Cancer 1
## Wnt Ligand Biogenesis And Trafficking 1
## Rhoa Gtpase Cycle 2
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 1
## G0 And Early G1 1
## Interleukin Receptor Shc Signaling 1
## Vegfr2 Mediated Vascular Permeability 1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 1
## Er To Golgi Anterograde Transport 2
## Dap12 Signaling 1
## Downregulation Of Erbb2 Signaling 1
## Downstream Signal Transduction 1
## G1 S Specific Transcription 1
## Ripk1 Mediated Regulated Necrosis 1
## Cdc42 Gtpase Cycle 2
## Cellular Response To Chemical Stress 2
## Signaling By Csf3 G Csf 1
## Tnfr1 Induced Nfkappab Signaling Pathway 1
## Hcmv Infection 2
## Egfr Downregulation 1
## Fgfr1 Mutant Receptor Activation 1
## Runx2 Regulates Bone Development 1
## Transcriptional Regulation Of Pluripotent Stem Cells 1
## Regulation Of Mecp2 Expression And Activity 1
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 1
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 1
## Cargo Concentration In The Er 1
## Plasma Lipoprotein Clearance 1
## Sialic Acid Metabolism 1
## Signaling By Notch2 1
## Gpvi Mediated Activation Cascade 1
## Regulation Of Tnfr1 Signaling 1
## Transcriptional Regulation By Tp53 3
## Apoptosis 2
## Association Of Tric Cct With Target Proteins During Biosynthesis 1
## Ca Dependent Events 1
## Class I Mhc Mediated Antigen Processing Presentation 3
## Fc Epsilon Receptor Fceri Signaling 2
## Generation Of Second Messenger Molecules 1
## Interleukin 7 Signaling 1
## Metalloprotease Dubs 1
## Nervous System Development 4
## Nuclear Pore Complex Npc Disassembly 1
## Ovarian Tumor Domain Proteases 1
## Rac1 Gtpase Cycle 2
## Regulation Of Tp53 Expression And Degradation 1
## Rhoh Gtpase Cycle 1
## Signaling By Fgfr1 In Disease 1
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 1
## Transport To The Golgi And Subsequent Modification 2
## Beta Defensins 1
## Dag And Ip3 Signaling 1
## Rhof Gtpase Cycle 1
## Sumoylation 2
## Transcriptional Regulation By Ventx 1
## Sumoylation Of Transcription Cofactors 1
## Tnf Signaling 1
## Tp53 Regulates Transcription Of Cell Death Genes 1
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 1
## Heme Signaling 1
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 1
## Irs Mediated Signalling 1
## Retrograde Transport At The Trans Golgi Network 1
## Signaling By Egfr 1
## Signaling By Erbb2 1
## Signaling By Notch3 1
## Tp53 Regulates Transcription Of Cell Cycle Genes 1
## Apoptotic Execution Phase 1
## Defensins 1
## Nuclear Envelope Breakdown 1
## Rhod Gtpase Cycle 1
## Ub Specific Processing Proteases 2
## G Protein Mediated Events 1
## Insulin Receptor Signalling Cascade 1
## Intrinsic Pathway For Apoptosis 1
## Rhoj Gtpase Cycle 1
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 1
## Transcriptional Activation Of Mitochondrial Biogenesis 1
## Nrage Signals Death Through Jnk 1
## Rhoq Gtpase Cycle 1
## Signaling By Erbb4 1
## Signaling By Pdgf 1
## Transcriptional Regulation By Runx1 2
## Asymmetric Localization Of Pcp Proteins 1
## Ca2 Pathway 1
## Dna Methylation 1
## Ncam Signaling For Neurite Out Growth 1
## O Linked Glycosylation Of Mucins 1
## Signaling By Fgfr In Disease 1
## Signaling By Notch 2
## Synthesis Of Substrates In N Glycan Biosythesis 1
## Tp53 Regulates Transcription Of Dna Repair Genes 1
## Transcriptional Regulation By Mecp2 1
## Copii Mediated Vesicle Transport 1
## Diseases Associated With O Glycosylation Of Proteins 1
## Aurka Activation By Tpx2 1
## Interferon Alpha Beta Signaling 1
## Plasma Lipoprotein Assembly Remodeling And Clearance 1
## Prc2 Methylates Histones And Dna 1
## Regulation Of Runx2 Expression And Activity 1
## Signaling By Tgf Beta Receptor Complex 1
## Cell Death Signalling Via Nrage Nrif And Nade 1
## Condensation Of Prophase Chromosomes 1
## Ecm Proteoglycans 1
## Nuclear Envelope Ne Reassembly 1
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 1
## G Alpha 12 13 Signalling Events 1
## Initial Triggering Of Complement 1
## Potential Therapeutics For Sars 1
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1
## Rmts Methylate Histone Arginines 1
## Signaling By Insulin Receptor 1
## Signaling By Met 1
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1
## Integrin Cell Surface Interactions 1
## Organelle Biogenesis And Maintenance 2
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1
## Apc C Mediated Degradation Of Cell Cycle Proteins 1
## Fceri Mediated Ca 2 Mobilization 1
## Opioid Signalling 1
## Regulation Of Plk1 Activity At G2 M Transition 1
## Activation Of Nmda Receptors And Postsynaptic Events 1
## Mapk6 Mapk4 Signaling 1
## Mitochondrial Biogenesis 1
## Pcp Ce Pathway 1
## Anchoring Of The Basal Body To The Plasma Membrane 1
## Antimicrobial Peptides 1
## G2 M Dna Damage Checkpoint 1
## Protein Folding 1
## Recruitment Of Numa To Mitotic Centrosomes 1
## Clec7a Dectin 1 Signaling 1
## Diseases Of Programmed Cell Death 1
## Signaling By Tgfb Family Members 1
## Developmental Biology 5
## Potassium Channels 1
## Signaling By Vegf 1
## Stimuli Sensing Channels 1
## Amyloid Fiber Formation 1
## O Linked Glycosylation 1
## Parasite Infection 1
## Tcr Signaling 1
## Cardiac Conduction 1
## Mhc Class Ii Antigen Presentation 1
## Oxidative Stress Induced Senescence 1
## Resolution Of Sister Chromatid Cohesion 1
## Diseases Of Glycosylation 1
## Fcgamma Receptor Fcgr Dependent Phagocytosis 1
## Mitotic Prophase 1
## Beta Catenin Independent Wnt Signaling 1
## Epigenetic Regulation Of Gene Expression 1
## Estrogen Dependent Gene Expression 1
## Mitotic G1 Phase And G1 S Transition 1
## Neuronal System 2
## Sars Cov Infections 1
## Regulation Of Tp53 Activity 1
## Rho Gtpase Cycle 2
## Signaling By The B Cell Receptor Bcr 1
## G2 M Checkpoints 1
## Ion Channel Transport 1
## Muscle Contraction 1
## Cilium Assembly 1
## Intra Golgi And Retrograde Golgi To Er Traffic 1
## Mitotic G2 G2 M Phases 1
## Mitotic Prometaphase 1
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 1
## Mitotic Metaphase And Anaphase 1
## Tcf Dependent Signaling In Response To Wnt 1
## Diseases Of Metabolism 1
## Transmission Across Chemical Synapses 1
## Chromatin Modifying Enzymes 1
## Cell Cycle Checkpoints 1
## Signaling By Wnt 1
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 2
## Transport Of Small Molecules 2
## M Phase 1
## Cell Cycle Mitotic 1
## Cell Cycle 1
## 2 Ltr Circle Formation 0
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 0
## Abacavir Metabolism 0
## Abacavir Transmembrane Transport 0
## Abacavir Transport And Metabolism 0
## Abc Family Proteins Mediated Transport 0
## Abc Transporter Disorders 0
## Abc Transporters In Lipid Homeostasis 0
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 0
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 0
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 0
## Acetylcholine Binding And Downstream Events 0
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 0
## Acetylcholine Neurotransmitter Release Cycle 0
## Acetylcholine Regulates Insulin Secretion 0
## Acrosome Reaction And Sperm Oocyte Membrane Binding 0
## Activated Notch1 Transmits Signal To The Nucleus 0
## Activated Ntrk2 Signals Through Cdk5 0
## Activated Ntrk2 Signals Through Frs2 And Frs3 0
## Activated Ntrk2 Signals Through Fyn 0
## Activated Ntrk2 Signals Through Pi3k 0
## Activated Ntrk2 Signals Through Ras 0
## Activated Ntrk3 Signals Through Pi3k 0
## Activated Ntrk3 Signals Through Ras 0
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 0
## Activated Tak1 Mediates P38 Mapk Activation 0
## Activation Of Ampk Downstream Of Nmdars 0
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 0
## Activation Of Atr In Response To Replication Stress 0
## Activation Of Bad And Translocation To Mitochondria 0
## Activation Of Bh3 Only Proteins 0
## Activation Of Caspases Through Apoptosome Mediated Cleavage 0
## Activation Of Gene Expression By Srebf Srebp 0
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 0
## Activation Of Kainate Receptors Upon Glutamate Binding 0
## Activation Of Noxa And Translocation To Mitochondria 0
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 0
## Activation Of Puma And Translocation To Mitochondria 0
## Activation Of Rac1 0
## Activation Of Rac1 Downstream Of Nmdars 0
## Activation Of Ras In B Cells 0
## Activation Of Smo 0
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 0
## Activation Of The Phototransduction Cascade 0
## Activation Of The Pre Replicative Complex 0
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 0
## Activation Of Trka Receptors 0
## Acyl Chain Remodeling Of Cl 0
## Acyl Chain Remodeling Of Dag And Tag 0
## Acyl Chain Remodelling Of Pc 0
## Acyl Chain Remodelling Of Pe 0
## Acyl Chain Remodelling Of Pg 0
## Acyl Chain Remodelling Of Pi 0
## Acyl Chain Remodelling Of Ps 0
## Adenylate Cyclase Activating Pathway 0
## Adenylate Cyclase Inhibitory Pathway 0
## Adherens Junctions Interactions 0
## Adp Signalling Through P2y Purinoceptor 1 0
## Adp Signalling Through P2y Purinoceptor 12 0
## Adrenaline Noradrenaline Inhibits Insulin Secretion 0
## Adrenoceptors 0
## Aflatoxin Activation And Detoxification 0
## Aggrephagy 0
## Akt Phosphorylates Targets In The Cytosol 0
## Alpha Defensins 0
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 0
## Alpha Oxidation Of Phytanate 0
## Alpha Protein Kinase 1 Signaling Pathway 0
## Alternative Complement Activation 0
## Amine Ligand Binding Receptors 0
## Amino Acid Conjugation 0
## Amino Acid Transport Across The Plasma Membrane 0
## Amino Acids Regulate Mtorc1 0
## Ampk Inhibits Chrebp Transcriptional Activation Activity 0
## Anchoring Fibril Formation 0
## Androgen Biosynthesis 0
## Antigen Processing Ubiquitination Proteasome Degradation 0
## Antiviral Mechanism By Ifn Stimulated Genes 0
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 0
## Apc Cdc20 Mediated Degradation Of Nek2a 0
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 0
## Apobec3g Mediated Resistance To Hiv 1 Infection 0
## Apoptotic Cleavage Of Cell Adhesion Proteins 0
## Apoptotic Cleavage Of Cellular Proteins 0
## Apoptotic Factor Mediated Response 0
## Aquaporin Mediated Transport 0
## Arachidonate Production From Dag 0
## Arachidonic Acid Metabolism 0
## Arms Mediated Activation 0
## Aryl Hydrocarbon Receptor Signalling 0
## Aspartate And Asparagine Metabolism 0
## Assembly And Cell Surface Presentation Of Nmda Receptors 0
## Assembly Of Active Lpl And Lipc Lipase Complexes 0
## Assembly Of The Hiv Virion 0
## Assembly Of The Orc Complex At The Origin Of Replication 0
## Assembly Of The Pre Replicative Complex 0
## Atf6 Atf6 Alpha Activates Chaperone Genes 0
## Atf6 Atf6 Alpha Activates Chaperones 0
## Attachment And Entry 0
## Attachment Of Gpi Anchor To Upar 0
## Attenuation Phase 0
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 0
## Autophagy 0
## B Wich Complex Positively Regulates Rrna Expression 0
## Base Excision Repair 0
## Base Excision Repair Ap Site Formation 0
## Basigin Interactions 0
## Bbsome Mediated Cargo Targeting To Cilium 0
## Beta Catenin Phosphorylation Cascade 0
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 0
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 0
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 0
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 0
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 0
## Beta Oxidation Of Pristanoyl Coa 0
## Beta Oxidation Of Very Long Chain Fatty Acids 0
## Bicarbonate Transporters 0
## Bile Acid And Bile Salt Metabolism 0
## Binding And Uptake Of Ligands By Scavenger Receptors 0
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 0
## Biological Oxidations 0
## Biosynthesis Of Epa Derived Spms 0
## Biosynthesis Of Maresin Like Spms 0
## Biosynthesis Of Maresins 0
## Biosynthesis Of Specialized Proresolving Mediators Spms 0
## Biotin Transport And Metabolism 0
## Blood Group Systems Biosynthesis 0
## Branched Chain Amino Acid Catabolism 0
## Budding And Maturation Of Hiv Virion 0
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 0
## Butyrophilin Btn Family Interactions 0
## Ca2 Activated K Channels 0
## Calcineurin Activates Nfat 0
## Calcitonin Like Ligand Receptors 0
## Calnexin Calreticulin Cycle 0
## Carboxyterminal Post Translational Modifications Of Tubulin 0
## Cargo Trafficking To The Periciliary Membrane 0
## Carnitine Metabolism 0
## Caspase Activation Via Death Receptors In The Presence Of Ligand 0
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 0
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 0
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 0
## Cation Coupled Chloride Cotransporters 0
## Cd209 Dc Sign Signaling 0
## Cd22 Mediated Bcr Regulation 0
## Cdc6 Association With The Orc Origin Complex 0
## Cell Cell Communication 0
## Cell Cell Junction Organization 0
## Cell Extracellular Matrix Interactions 0
## Cell Junction Organization 0
## Cellular Hexose Transport 0
## Cellular Response To Heat Stress 0
## Cellular Response To Hypoxia 0
## Cellular Response To Starvation 0
## Cgmp Effects 0
## Chaperone Mediated Autophagy 0
## Chl1 Interactions 0
## Cholesterol Biosynthesis 0
## Choline Catabolism 0
## Chondroitin Sulfate Biosynthesis 0
## Chondroitin Sulfate Dermatan Sulfate Metabolism 0
## Chrebp Activates Metabolic Gene Expression 0
## Chromosome Maintenance 0
## Chylomicron Assembly 0
## Chylomicron Clearance 0
## Chylomicron Remodeling 0
## Citric Acid Cycle Tca Cycle 0
## Class C 3 Metabotropic Glutamate Pheromone Receptors 0
## Class I Peroxisomal Membrane Protein Import 0
## Clec7a Dectin 1 Induces Nfat Activation 0
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 0
## Coenzyme A Biosynthesis 0
## Cohesin Loading Onto Chromatin 0
## Collagen Biosynthesis And Modifying Enzymes 0
## Collagen Chain Trimerization 0
## Common Pathway Of Fibrin Clot Formation 0
## Competing Endogenous Rnas Cernas Regulate Pten Translation 0
## Complex I Biogenesis 0
## Conjugation Of Benzoate With Glycine 0
## Constitutive Signaling By Overexpressed Erbb2 0
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 0
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 0
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 0
## Copi Dependent Golgi To Er Retrograde Traffic 0
## Copi Independent Golgi To Er Retrograde Traffic 0
## Creatine Metabolism 0
## Creation Of C4 And C2 Activators 0
## Creb3 Factors Activate Genes 0
## Cristae Formation 0
## Crmps In Sema3a Signaling 0
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 0
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 0
## Crosslinking Of Collagen Fibrils 0
## Cs Ds Degradation 0
## Cyclin A Cdk2 Associated Events At S Phase Entry 0
## Cyclin D Associated Events In G1 0
## Cyp2e1 Reactions 0
## Cytochrome C Mediated Apoptotic Response 0
## Cytochrome P450 Arranged By Substrate Type 0
## Cytosolic Iron Sulfur Cluster Assembly 0
## Cytosolic Sulfonation Of Small Molecules 0
## Cytosolic Trna Aminoacylation 0
## Darpp 32 Events 0
## Dcc Mediated Attractive Signaling 0
## Deactivation Of The Beta Catenin Transactivating Complex 0
## Deadenylation Dependent Mrna Decay 0
## Deadenylation Of Mrna 0
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 0
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 0
## Defective B4galt7 Causes Eds Progeroid Type 0
## Defective Cftr Causes Cystic Fibrosis 0
## Defective Chst14 Causes Eds Musculocontractural Type 0
## Defective Chst3 Causes Sedcjd 0
## Defective Chst6 Causes Mcdc1 0
## Defective Chsy1 Causes Tpbs 0
## Defective Csf2rb Causes Smdp5 0
## Defective Ext2 Causes Exostoses 2 0
## Defective F9 Activation 0
## Defective Factor Ix Causes Hemophilia B 0
## Defective Factor Viii Causes Hemophilia A 0
## Defective Lfng Causes Scdo3 0
## Defective Ripk1 Mediated Regulated Necrosis 0
## Defective St3gal3 Causes Mct12 And Eiee15 0
## Defects In Biotin Btn Metabolism 0
## Defects In Cobalamin B12 Metabolism 0
## Defects In Vitamin And Cofactor Metabolism 0
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 0
## Degradation Of Axin 0
## Degradation Of Beta Catenin By The Destruction Complex 0
## Degradation Of Cysteine And Homocysteine 0
## Degradation Of Dvl 0
## Degradation Of Gli1 By The Proteasome 0
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 0
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 0
## Dermatan Sulfate Biosynthesis 0
## Detoxification Of Reactive Oxygen Species 0
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 0
## Digestion 0
## Digestion And Absorption 0
## Digestion Of Dietary Carbohydrate 0
## Digestion Of Dietary Lipid 0
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 0
## Diseases Associated With Glycosaminoglycan Metabolism 0
## Diseases Associated With Glycosylation Precursor Biosynthesis 0
## Diseases Associated With N Glycosylation Of Proteins 0
## Diseases Associated With Surfactant Metabolism 0
## Diseases Of Base Excision Repair 0
## Diseases Of Carbohydrate Metabolism 0
## Diseases Of Dna Repair 0
## Diseases Of Mismatch Repair Mmr 0
## Diseases Of Mitotic Cell Cycle 0
## Disinhibition Of Snare Formation 0
## Disorders Of Transmembrane Transporters 0
## Displacement Of Dna Glycosylase By Apex1 0
## Dna Damage Bypass 0
## Dna Damage Recognition In Gg Ner 0
## Dna Damage Reversal 0
## Dna Damage Telomere Stress Induced Senescence 0
## Dna Double Strand Break Repair 0
## Dna Double Strand Break Response 0
## Dna Repair 0
## Dna Replication 0
## Dna Replication Initiation 0
## Dna Replication Pre Initiation 0
## Dna Strand Elongation 0
## Dopamine Neurotransmitter Release Cycle 0
## Dopamine Receptors 0
## Downregulation Of Erbb2 Erbb3 Signaling 0
## Downregulation Of Erbb4 Signaling 0
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 0
## Downregulation Of Tgf Beta Receptor Signaling 0
## Downstream Signaling Events Of B Cell Receptor Bcr 0
## Downstream Signaling Of Activated Fgfr1 0
## Downstream Signaling Of Activated Fgfr2 0
## Downstream Signaling Of Activated Fgfr3 0
## Downstream Signaling Of Activated Fgfr4 0
## Dscam Interactions 0
## Dual Incision In Gg Ner 0
## Dual Incision In Tc Ner 0
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 0
## Early Phase Of Hiv Life Cycle 0
## Effects Of Pip2 Hydrolysis 0
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 0
## Eicosanoid Ligand Binding Receptors 0
## Eicosanoids 0
## Elastic Fibre Formation 0
## Electric Transmission Across Gap Junctions 0
## Elevation Of Cytosolic Ca2 Levels 0
## Endogenous Sterols 0
## Endosomal Sorting Complex Required For Transport Escrt 0
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 0
## Enos Activation 0
## Epha Mediated Growth Cone Collapse 0
## Ephb Mediated Forward Signaling 0
## Ephrin Signaling 0
## Er Quality Control Compartment Erqc 0
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 0
## Erk Mapk Targets 0
## Erks Are Inactivated 0
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 0
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 0
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 0
## Erythropoietin Activates Phospholipase C Gamma Plcg 0
## Erythropoietin Activates Ras 0
## Erythropoietin Activates Stat5 0
## Establishment Of Sister Chromatid Cohesion 0
## Estrogen Biosynthesis 0
## Estrogen Stimulated Signaling Through Prkcz 0
## Ethanol Oxidation 0
## Eukaryotic Translation Elongation 0
## Eukaryotic Translation Initiation 0
## Export Of Viral Ribonucleoproteins From Nucleus 0
## Extension Of Telomeres 0
## Extrinsic Pathway Of Fibrin Clot Formation 0
## Factors Involved In Megakaryocyte Development And Platelet Production 0
## Fanconi Anemia Pathway 0
## Fasl Cd95l Signaling 0
## Fatty Acid Metabolism 0
## Fatty Acids 0
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 0
## Fatty Acyl Coa Biosynthesis 0
## Fbxw7 Mutants And Notch1 In Cancer 0
## Fceri Mediated Nf Kb Activation 0
## Fcgr Activation 0
## Fertilization 0
## Fgfr1 Ligand Binding And Activation 0
## Fgfr1b Ligand Binding And Activation 0
## Fgfr1c Ligand Binding And Activation 0
## Fgfr2 Alternative Splicing 0
## Fgfr2 Ligand Binding And Activation 0
## Fgfr2 Mutant Receptor Activation 0
## Fgfr2b Ligand Binding And Activation 0
## Fgfr2c Ligand Binding And Activation 0
## Fgfr3 Ligand Binding And Activation 0
## Fgfr3b Ligand Binding And Activation 0
## Fgfrl1 Modulation Of Fgfr1 Signaling 0
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 0
## Flt3 Signaling 0
## Flt3 Signaling By Cbl Mutants 0
## Flt3 Signaling In Disease 0
## Flt3 Signaling Through Src Family Kinases 0
## Folding Of Actin By Cct Tric 0
## Formation Of Apoptosome 0
## Formation Of Atp By Chemiosmotic Coupling 0
## Formation Of Fibrin Clot Clotting Cascade 0
## Formation Of Incision Complex In Gg Ner 0
## Formation Of Rna Pol Ii Elongation Complex 0
## Formation Of Senescence Associated Heterochromatin Foci Sahf 0
## Formation Of Tc Ner Pre Incision Complex 0
## Formation Of The Beta Catenin Tcf Transactivating Complex 0
## Formation Of The Cornified Envelope 0
## Formation Of The Early Elongation Complex 0
## Formation Of Tubulin Folding Intermediates By Cct Tric 0
## Formation Of Xylulose 5 Phosphate 0
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 0
## Foxo Mediated Transcription 0
## Foxo Mediated Transcription Of Cell Cycle Genes 0
## Foxo Mediated Transcription Of Cell Death Genes 0
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 0
## Free Fatty Acid Receptors 0
## Free Fatty Acids Regulate Insulin Secretion 0
## Frs Mediated Fgfr1 Signaling 0
## Frs Mediated Fgfr2 Signaling 0
## Frs Mediated Fgfr3 Signaling 0
## Frs Mediated Fgfr4 Signaling 0
## Fructose Catabolism 0
## Fructose Metabolism 0
## G Alpha S Signalling Events 0
## G Alpha Z Signalling Events 0
## G Beta Gamma Signalling Through Cdc42 0
## G Beta Gamma Signalling Through Pi3kgamma 0
## G Protein Activation 0
## G Protein Beta Gamma Signalling 0
## G1 S Dna Damage Checkpoints 0
## G2 Phase 0
## Gaba B Receptor Activation 0
## Gaba Receptor Activation 0
## Gaba Synthesis Release Reuptake And Degradation 0
## Galactose Catabolism 0
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 0
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 0
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 0
## Gap Junction Assembly 0
## Gap Junction Degradation 0
## Gap Junction Trafficking And Regulation 0
## Gdp Fucose Biosynthesis 0
## Gene Silencing By Rna 0
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 0
## Global Genome Nucleotide Excision Repair Gg Ner 0
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 0
## Glucagon Signaling In Metabolic Regulation 0
## Glucagon Type Ligand Receptors 0
## Glucocorticoid Biosynthesis 0
## Gluconeogenesis 0
## Glucose Metabolism 0
## Glucuronidation 0
## Glutamate And Glutamine Metabolism 0
## Glutamate Neurotransmitter Release Cycle 0
## Glutathione Conjugation 0
## Glutathione Synthesis And Recycling 0
## Glycerophospholipid Biosynthesis 0
## Glycerophospholipid Catabolism 0
## Glycogen Breakdown Glycogenolysis 0
## Glycogen Metabolism 0
## Glycogen Storage Diseases 0
## Glycogen Synthesis 0
## Glycolysis 0
## Glycosaminoglycan Metabolism 0
## Glycosphingolipid Metabolism 0
## Glyoxylate Metabolism And Glycine Degradation 0
## Golgi Associated Vesicle Biogenesis 0
## Golgi To Er Retrograde Transport 0
## Gp1b Ix V Activation Signalling 0
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 0
## Grb7 Events In Erbb2 Signaling 0
## Hats Acetylate Histones 0
## Hcmv Late Events 0
## Hdacs Deacetylate Histones 0
## Hdl Assembly 0
## Hdl Clearance 0
## Hdl Remodeling 0
## Hdms Demethylate Histones 0
## Hdr Through Homologous Recombination Hrr 0
## Hdr Through Mmej Alt Nhej 0
## Hdr Through Single Strand Annealing Ssa 0
## Hedgehog Ligand Biogenesis 0
## Hedgehog Off State 0
## Hedgehog On State 0
## Heme Biosynthesis 0
## Heme Degradation 0
## Heparan Sulfate Heparin Hs Gag Metabolism 0
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 0
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 0
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 0
## Histidine Catabolism 0
## Hiv Elongation Arrest And Recovery 0
## Hiv Infection 0
## Hiv Life Cycle 0
## Hiv Transcription Elongation 0
## Hiv Transcription Initiation 0
## Homologous Dna Pairing And Strand Exchange 0
## Homology Directed Repair 0
## Hormone Ligand Binding Receptors 0
## Host Interactions Of Hiv Factors 0
## Hs Gag Biosynthesis 0
## Hs Gag Degradation 0
## Hsf1 Activation 0
## Hsf1 Dependent Transactivation 0
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 0
## Hur Elavl1 Binds And Stabilizes Mrna 0
## Hyaluronan Biosynthesis And Export 0
## Hyaluronan Metabolism 0
## Hyaluronan Uptake And Degradation 0
## Hydrolysis Of Lpc 0
## Ikba Variant Leads To Eda Id 0
## Il 6 Type Cytokine Receptor Ligand Interactions 0
## Inactivation Of Cdc42 And Rac1 0
## Incretin Synthesis Secretion And Inactivation 0
## Infection With Mycobacterium Tuberculosis 0
## Influenza Infection 0
## Inhibition Of Dna Recombination At Telomere 0
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 0
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 0
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 0
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 0
## Inositol Phosphate Metabolism 0
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 0
## Insulin Processing 0
## Insulin Receptor Recycling 0
## Integration Of Energy Metabolism 0
## Integration Of Provirus 0
## Integrin Signaling 0
## Interaction Between L1 And Ankyrins 0
## Interaction With Cumulus Cells And The Zona Pellucida 0
## Interactions Of Rev With Host Cellular Proteins 0
## Interactions Of Vpr With Host Cellular Proteins 0
## Interconversion Of Nucleotide Di And Triphosphates 0
## Interleukin 2 Signaling 0
## Interleukin 36 Pathway 0
## Intestinal Absorption 0
## Intra Golgi Traffic 0
## Intraflagellar Transport 0
## Intrinsic Pathway Of Fibrin Clot Formation 0
## Inwardly Rectifying K Channels 0
## Ion Homeostasis 0
## Ion Transport By P Type Atpases 0
## Ionotropic Activity Of Kainate Receptors 0
## Irak1 Recruits Ikk Complex 0
## Irak2 Mediated Activation Of Tak1 Complex 0
## Ire1alpha Activates Chaperones 0
## Irf3 Mediated Activation Of Type 1 Ifn 0
## Iron Uptake And Transport 0
## Irs Activation 0
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 0
## Josephin Domain Dubs 0
## Keratan Sulfate Biosynthesis 0
## Keratan Sulfate Degradation 0
## Keratan Sulfate Keratin Metabolism 0
## Keratinization 0
## Ketone Body Metabolism 0
## Kinesins 0
## Ksrp Khsrp Binds And Destabilizes Mrna 0
## Lagging Strand Synthesis 0
## Laminin Interactions 0
## Late Endosomal Microautophagy 0
## Lectin Pathway Of Complement Activation 0
## Leukotriene Receptors 0
## Lgi Adam Interactions 0
## Ligand Receptor Interactions 0
## Linoleic Acid La Metabolism 0
## Lipid Particle Organization 0
## Lipophagy 0
## Listeria Monocytogenes Entry Into Host Cells 0
## Long Term Potentiation 0
## Loss Of Function Of Mecp2 In Rett Syndrome 0
## Loss Of Function Of Smad2 3 In Cancer 0
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 0
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 0
## Ltc4 Cysltr Mediated Il4 Production 0
## Lysine Catabolism 0
## Lysosome Vesicle Biogenesis 0
## Lysosphingolipid And Lpa Receptors 0
## Map2k And Mapk Activation 0
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 0
## Maturation Of Nucleoprotein 0
## Maturation Of Protein 3a 0
## Maturation Of Sars Cov 1 Spike Protein 0
## Maturation Of Sars Cov 2 Spike Protein 0
## Meiosis 0
## Meiotic Recombination 0
## Meiotic Synapsis 0
## Melanin Biosynthesis 0
## Met Activates Pi3k Akt Signaling 0
## Met Activates Ptk2 Signaling 0
## Met Activates Ptpn11 0
## Met Activates Rap1 And Rac1 0
## Met Activates Ras Signaling 0
## Met Interacts With Tns Proteins 0
## Met Promotes Cell Motility 0
## Met Receptor Activation 0
## Met Receptor Recycling 0
## Metabolic Disorders Of Biological Oxidation Enzymes 0
## Metabolism Of Amine Derived Hormones 0
## Metabolism Of Amino Acids And Derivatives 0
## Metabolism Of Angiotensinogen To Angiotensins 0
## Metabolism Of Carbohydrates 0
## Metabolism Of Cofactors 0
## Metabolism Of Fat Soluble Vitamins 0
## Metabolism Of Folate And Pterines 0
## Metabolism Of Ingested Semet Sec Mesec Into H2se 0
## Metabolism Of Lipids 0
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 0
## Metabolism Of Nucleotides 0
## Metabolism Of Polyamines 0
## Metabolism Of Porphyrins 0
## Metabolism Of Rna 0
## Metabolism Of Steroid Hormones 0
## Metabolism Of Steroids 0
## Metabolism Of Vitamins And Cofactors 0
## Metabolism Of Water Soluble Vitamins And Cofactors 0
## Metal Ion Slc Transporters 0
## Metal Sequestration By Antimicrobial Proteins 0
## Metallothioneins Bind Metals 0
## Methionine Salvage Pathway 0
## Methylation 0
## Microrna Mirna Biogenesis 0
## Mineralocorticoid Biosynthesis 0
## Miro Gtpase Cycle 0
## Miscellaneous Substrates 0
## Miscellaneous Transport And Binding Events 0
## Mismatch Repair 0
## Mitochondrial Calcium Ion Transport 0
## Mitochondrial Fatty Acid Beta Oxidation 0
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 0
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 0
## Mitochondrial Iron Sulfur Cluster Biogenesis 0
## Mitochondrial Protein Import 0
## Mitochondrial Translation 0
## Mitochondrial Trna Aminoacylation 0
## Mitochondrial Uncoupling 0
## Mitophagy 0
## Mitotic Spindle Checkpoint 0
## Mitotic Telophase Cytokinesis 0
## Modulation By Mtb Of Host Immune System 0
## Molecules Associated With Elastic Fibres 0
## Molybdenum Cofactor Biosynthesis 0
## Mrna Capping 0
## Mrna Decay By 3 To 5 Exoribonuclease 0
## Mrna Decay By 5 To 3 Exoribonuclease 0
## Mrna Editing 0
## Mrna Editing C To U Conversion 0
## Mrna Splicing 0
## Mrna Splicing Minor Pathway 0
## Mtor Signalling 0
## Mtorc1 Mediated Signalling 0
## Mucopolysaccharidoses 0
## Multifunctional Anion Exchangers 0
## Muscarinic Acetylcholine Receptors 0
## Myoclonic Epilepsy Of Lafora 0
## Myogenesis 0
## N Glycan Antennae Elongation 0
## N Glycan Antennae Elongation In The Medial Trans Golgi 0
## N Glycan Trimming And Elongation In The Cis Golgi 0
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 0
## Na Cl Dependent Neurotransmitter Transporters 0
## Nade Modulates Death Signalling 0
## Ncam1 Interactions 0
## Nectin Necl Trans Heterodimerization 0
## Neddylation 0
## Nef And Signal Transduction 0
## Nef Mediated Cd4 Down Regulation 0
## Nef Mediated Cd8 Down Regulation 0
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 0
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 0
## Negative Epigenetic Regulation Of Rrna Expression 0
## Negative Feedback Regulation Of Mapk Pathway 0
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 0
## Negative Regulation Of Fgfr1 Signaling 0
## Negative Regulation Of Fgfr2 Signaling 0
## Negative Regulation Of Fgfr3 Signaling 0
## Negative Regulation Of Fgfr4 Signaling 0
## Negative Regulation Of Flt3 0
## Negative Regulation Of Mapk Pathway 0
## Negative Regulation Of Met Activity 0
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 0
## Negative Regulation Of Notch4 Signaling 0
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 0
## Negative Regulators Of Ddx58 Ifih1 Signaling 0
## Nephrin Family Interactions 0
## Netrin 1 Signaling 0
## Netrin Mediated Repulsion Signals 0
## Neurexins And Neuroligins 0
## Neurofascin Interactions 0
## Neurotoxicity Of Clostridium Toxins 0
## Neurotransmitter Clearance 0
## Neurotransmitter Release Cycle 0
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 0
## Nf Kb Is Activated And Signals Survival 0
## Ngf Independant Trka Activation 0
## Nicotinamide Salvaging 0
## Nicotinate Metabolism 0
## Nitric Oxide Stimulates Guanylate Cyclase 0
## Non Integrin Membrane Ecm Interactions 0
## Noncanonical Activation Of Notch3 0
## Nonhomologous End Joining Nhej 0
## Nonsense Mediated Decay Nmd 0
## Norepinephrine Neurotransmitter Release Cycle 0
## Nostrin Mediated Enos Trafficking 0
## Notch Hlh Transcription Pathway 0
## Notch1 Intracellular Domain Regulates Transcription 0
## Notch2 Activation And Transmission Of Signal To The Nucleus 0
## Notch3 Intracellular Domain Regulates Transcription 0
## Notch4 Activation And Transmission Of Signal To The Nucleus 0
## Notch4 Intracellular Domain Regulates Transcription 0
## Nr1h2 And Nr1h3 Mediated Signaling 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 0
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 0
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 0
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 0
## Nrcam Interactions 0
## Nrif Signals Cell Death From The Nucleus 0
## Ns1 Mediated Effects On Host Pathways 0
## Ntrk2 Activates Rac1 0
## Nuclear Import Of Rev Protein 0
## Nuclear Receptor Transcription Pathway 0
## Nuclear Signaling By Erbb4 0
## Nucleobase Biosynthesis 0
## Nucleobase Catabolism 0
## Nucleotide Excision Repair 0
## Nucleotide Like Purinergic Receptors 0
## Nucleotide Salvage 0
## O Glycosylation Of Tsr Domain Containing Proteins 0
## Oas Antiviral Response 0
## Olfactory Signaling Pathway 0
## Oncogene Induced Senescence 0
## Oncogenic Mapk Signaling 0
## Opsins 0
## Orc1 Removal From Chromatin 0
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 0
## Organic Anion Transport 0
## Organic Anion Transporters 0
## Organic Cation Anion Zwitterion Transport 0
## Organic Cation Transport 0
## Other Interleukin Signaling 0
## Other Semaphorin Interactions 0
## P130cas Linkage To Mapk Signaling For Integrins 0
## P2y Receptors 0
## P38mapk Events 0
## P75ntr Negatively Regulates Cell Cycle Via Sc1 0
## P75ntr Recruits Signalling Complexes 0
## P75ntr Signals Via Nf Kb 0
## Passive Transport By Aquaporins 0
## Pcna Dependent Long Patch Base Excision Repair 0
## Pecam1 Interactions 0
## Pentose Phosphate Pathway 0
## Peptide Hormone Biosynthesis 0
## Peptide Hormone Metabolism 0
## Peroxisomal Lipid Metabolism 0
## Peroxisomal Protein Import 0
## Pexophagy 0
## Phase 0 Rapid Depolarisation 0
## Phase 1 Inactivation Of Fast Na Channels 0
## Phase 2 Plateau Phase 0
## Phase 3 Rapid Repolarisation 0
## Phase I Functionalization Of Compounds 0
## Phase Ii Conjugation Of Compounds 0
## Phenylalanine And Tyrosine Metabolism 0
## Phenylalanine Metabolism 0
## Phosphate Bond Hydrolysis By Ntpdase Proteins 0
## Phosphate Bond Hydrolysis By Nudt Proteins 0
## Phospholipase C Mediated Cascade Fgfr2 0
## Phospholipase C Mediated Cascade Fgfr4 0
## Phospholipid Metabolism 0
## Physiological Factors 0
## Pi 3k Cascade Fgfr1 0
## Pi 3k Cascade Fgfr2 0
## Pi 3k Cascade Fgfr3 0
## Pi 3k Cascade Fgfr4 0
## Pi Metabolism 0
## Pi3k Akt Activation 0
## Pi3k Events In Erbb4 Signaling 0
## Pi5p Regulates Tp53 Acetylation 0
## Pink1 Prkn Mediated Mitophagy 0
## Piwi Interacting Rna Pirna Biogenesis 0
## Pka Activation In Glucagon Signalling 0
## Pka Mediated Phosphorylation Of Key Metabolic Factors 0
## Pkmts Methylate Histone Lysines 0
## Plasma Lipoprotein Assembly 0
## Plasma Lipoprotein Remodeling 0
## Platelet Adhesion To Exposed Collagen 0
## Platelet Aggregation Plug Formation 0
## Platelet Calcium Homeostasis 0
## Platelet Homeostasis 0
## Platelet Sensitization By Ldl 0
## Polb Dependent Long Patch Base Excision Repair 0
## Polo Like Kinase Mediated Events 0
## Polymerase Switching 0
## Polymerase Switching On The C Strand Of The Telomere 0
## Positive Epigenetic Regulation Of Rrna Expression 0
## Post Chaperonin Tubulin Folding Pathway 0
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 0
## Postmitotic Nuclear Pore Complex Npc Reformation 0
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 0
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 0
## Pre Notch Expression And Processing 0
## Pre Notch Processing In Golgi 0
## Pre Notch Processing In The Endoplasmic Reticulum 0
## Pregnenolone Biosynthesis 0
## Presynaptic Depolarization And Calcium Channel Opening 0
## Presynaptic Function Of Kainate Receptors 0
## Prevention Of Phagosomal Lysosomal Fusion 0
## Processing And Activation Of Sumo 0
## Processing Of Capped Intron Containing Pre Mrna 0
## Processing Of Capped Intronless Pre Mrna 0
## Processing Of Dna Double Strand Break Ends 0
## Processing Of Intronless Pre Mrnas 0
## Processing Of Smdt1 0
## Processive Synthesis On The C Strand Of The Telomere 0
## Processive Synthesis On The Lagging Strand 0
## Prolactin Receptor Signaling 0
## Prolonged Erk Activation Events 0
## Propionyl Coa Catabolism 0
## Prostacyclin Signalling Through Prostacyclin Receptor 0
## Prostanoid Ligand Receptors 0
## Protein Localization 0
## Protein Methylation 0
## Protein Protein Interactions At Synapses 0
## Protein Repair 0
## Protein Ubiquitination 0
## Proton Coupled Monocarboxylate Transport 0
## Pten Regulation 0
## Ptk6 Expression 0
## Ptk6 Regulates Cell Cycle 0
## Ptk6 Regulates Proteins Involved In Rna Processing 0
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 0
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 0
## Purine Catabolism 0
## Purine Ribonucleoside Monophosphate Biosynthesis 0
## Purine Salvage 0
## Pyrimidine Catabolism 0
## Pyrimidine Salvage 0
## Pyruvate Metabolism 0
## Pyruvate Metabolism And Citric Acid Tca Cycle 0
## Ra Biosynthesis Pathway 0
## Rab Gefs Exchange Gtp For Gdp On Rabs 0
## Rab Geranylgeranylation 0
## Rab Regulation Of Trafficking 0
## Raf Activation 0
## Rap1 Signalling 0
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 0
## Ras Processing 0
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 0
## Reactions Specific To The Complex N Glycan Synthesis Pathway 0
## Receptor Mediated Mitophagy 0
## Receptor Type Tyrosine Protein Phosphatases 0
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 0
## Recognition Of Dna Damage By Pcna Containing Replication Complex 0
## Recycling Of Bile Acids And Salts 0
## Recycling Of Eif2 Gdp 0
## Recycling Pathway Of L1 0
## Reduction Of Cytosolic Ca Levels 0
## Reelin Signalling Pathway 0
## Regulated Proteolysis Of P75ntr 0
## Regulation By C Flip 0
## Regulation Of Bach1 Activity 0
## Regulation Of Beta Cell Development 0
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 0
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 0
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 0
## Regulation Of Expression Of Slits And Robos 0
## Regulation Of Foxo Transcriptional Activity By Acetylation 0
## Regulation Of Fzd By Ubiquitination 0
## Regulation Of Gene Expression By Hypoxia Inducible Factor 0
## Regulation Of Gene Expression In Beta Cells 0
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 0
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 0
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 0
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 0
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 0
## Regulation Of Hmox1 Expression And Activity 0
## Regulation Of Hsf1 Mediated Heat Shock Response 0
## Regulation Of Ifna Signaling 0
## Regulation Of Ifng Signaling 0
## Regulation Of Innate Immune Responses To Cytosolic Dna 0
## Regulation Of Insulin Secretion 0
## Regulation Of Kit Signaling 0
## Regulation Of Lipid Metabolism By Pparalpha 0
## Regulation Of Localization Of Foxo Transcription Factors 0
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 0
## Regulation Of Pten Gene Transcription 0
## Regulation Of Pten Localization 0
## Regulation Of Pten Mrna Translation 0
## Regulation Of Pten Stability And Activity 0
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 0
## Regulation Of Ras By Gaps 0
## Regulation Of Runx1 Expression And Activity 0
## Regulation Of Runx3 Expression And Activity 0
## Regulation Of Signaling By Cbl 0
## Regulation Of Signaling By Nodal 0
## Regulation Of Tp53 Activity Through Acetylation 0
## Regulation Of Tp53 Activity Through Association With Co Factors 0
## Regulation Of Tp53 Activity Through Methylation 0
## Regulation Of Tp53 Activity Through Phosphorylation 0
## Relaxin Receptors 0
## Release Of Apoptotic Factors From The Mitochondria 0
## Release Of Hh Np From The Secreting Cell 0
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 0
## Repression Of Wnt Target Genes 0
## Reproduction 0
## Resolution Of Abasic Sites Ap Sites 0
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 0
## Resolution Of D Loop Structures 0
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 0
## Respiratory Electron Transport 0
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 0
## Response Of Eif2ak1 Hri To Heme Deficiency 0
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 0
## Response Of Mtb To Phagocytosis 0
## Response To Metal Ions 0
## Ret Signaling 0
## Retinoid Cycle Disease Events 0
## Retrograde Neurotrophin Signalling 0
## Reversible Hydration Of Carbon Dioxide 0
## Rho Gtpase Effectors 0
## Rho Gtpases Activate Cit 0
## Rho Gtpases Activate Formins 0
## Rho Gtpases Activate Iqgaps 0
## Rho Gtpases Activate Ktn1 0
## Rho Gtpases Activate Nadph Oxidases 0
## Rho Gtpases Activate Paks 0
## Rho Gtpases Activate Pkns 0
## Rho Gtpases Activate Rhotekin And Rhophilins 0
## Rho Gtpases Activate Rocks 0
## Rho Gtpases Activate Wasps And Waves 0
## Rhobtb Gtpase Cycle 0
## Rhobtb1 Gtpase Cycle 0
## Rhobtb2 Gtpase Cycle 0
## Rhobtb3 Atpase Cycle 0
## Rhot1 Gtpase Cycle 0
## Rhou Gtpase Cycle 0
## Rhov Gtpase Cycle 0
## Rna Polymerase I Promoter Escape 0
## Rna Polymerase I Transcription 0
## Rna Polymerase I Transcription Initiation 0
## Rna Polymerase I Transcription Termination 0
## Rna Polymerase Ii Transcribes Snrna Genes 0
## Rna Polymerase Ii Transcription Termination 0
## Rna Polymerase Iii Chain Elongation 0
## Rna Polymerase Iii Transcription 0
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 0
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 0
## Rna Polymerase Iii Transcription Termination 0
## Rnd1 Gtpase Cycle 0
## Rnd2 Gtpase Cycle 0
## Rnd3 Gtpase Cycle 0
## Robo Receptors Bind Akap5 0
## Role Of Abl In Robo Slit Signaling 0
## Role Of Lat2 Ntal Lab On Calcium Mobilization 0
## Role Of Phospholipids In Phagocytosis 0
## Role Of Second Messengers In Netrin 1 Signaling 0
## Rora Activates Gene Expression 0
## Ros And Rns Production In Phagocytes 0
## Rrna Modification In The Mitochondrion 0
## Rrna Modification In The Nucleus And Cytosol 0
## Rrna Processing 0
## Rrna Processing In The Mitochondrion 0
## Rsk Activation 0
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 0
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 0
## Runx1 Regulates Estrogen Receptor Mediated Transcription 0
## Runx1 Regulates Expression Of Components Of Tight Junctions 0
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 0
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 0
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 0
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 0
## Runx3 Regulates Bcl2l11 Bim Transcription 0
## Runx3 Regulates Cdkn1a Transcription 0
## Runx3 Regulates Immune Response And Cell Migration 0
## Runx3 Regulates Notch Signaling 0
## Runx3 Regulates P14 Arf 0
## Runx3 Regulates Wnt Signaling 0
## Runx3 Regulates Yap1 Mediated Transcription 0
## S Phase 0
## Sars Cov 1 Genome Replication And Transcription 0
## Sars Cov 1 Infection 0
## Sars Cov 2 Infection 0
## Scavenging By Class A Receptors 0
## Scavenging By Class B Receptors 0
## Scavenging By Class F Receptors 0
## Scavenging Of Heme From Plasma 0
## Scf Skp2 Mediated Degradation Of P27 P21 0
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 0
## Selective Autophagy 0
## Selenoamino Acid Metabolism 0
## Sema3a Pak Dependent Axon Repulsion 0
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 0
## Sema4d In Semaphorin Signaling 0
## Sema4d Induced Cell Migration And Growth Cone Collapse 0
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 0
## Semaphorin Interactions 0
## Sensing Of Dna Double Strand Breaks 0
## Sensory Perception 0
## Sensory Processing Of Sound 0
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 0
## Separation Of Sister Chromatids 0
## Serine Biosynthesis 0
## Serotonin And Melatonin Biosynthesis 0
## Serotonin Neurotransmitter Release Cycle 0
## Serotonin Receptors 0
## Shc Mediated Cascade Fgfr1 0
## Shc Mediated Cascade Fgfr3 0
## Shc Mediated Cascade Fgfr4 0
## Shc Related Events Triggered By Igf1r 0
## Shc1 Events In Erbb4 Signaling 0
## Signal Amplification 0
## Signal Attenuation 0
## Signal Regulatory Protein Family Interactions 0
## Signaling By Activin 0
## Signaling By Bmp 0
## Signaling By Braf And Raf Fusions 0
## Signaling By Ctnnb1 Phospho Site Mutants 0
## Signaling By Erythropoietin 0
## Signaling By Fgfr 0
## Signaling By Fgfr1 0
## Signaling By Fgfr2 0
## Signaling By Fgfr2 Iiia Tm 0
## Signaling By Fgfr2 In Disease 0
## Signaling By Fgfr3 0
## Signaling By Fgfr3 Fusions In Cancer 0
## Signaling By Fgfr4 0
## Signaling By Fgfr4 In Disease 0
## Signaling By Flt3 Fusion Proteins 0
## Signaling By Flt3 Itd And Tkd Mutants 0
## Signaling By Hedgehog 0
## Signaling By Hippo 0
## Signaling By Lrp5 Mutants 0
## Signaling By Mapk Mutants 0
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 0
## Signaling By Moderate Kinase Activity Braf Mutants 0
## Signaling By Mras Complex Mutants 0
## Signaling By Mst1 0
## Signaling By Nodal 0
## Signaling By Notch1 0
## Signaling By Notch1 Hd Domain Mutants In Cancer 0
## Signaling By Notch1 Pest Domain Mutants In Cancer 0
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 0
## Signaling By Notch4 0
## Signaling By Ntrk2 Trkb 0
## Signaling By Ntrk3 Trkc 0
## Signaling By Retinoic Acid 0
## Signaling By Rnf43 Mutants 0
## Signaling By Robo Receptors 0
## Signaling By Tgf Beta Receptor Complex In Cancer 0
## Signaling By Wnt In Cancer 0
## Signalling To Erks 0
## Signalling To P38 Via Rit And Rin 0
## Signalling To Ras 0
## Sirt1 Negatively Regulates Rrna Expression 0
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 0
## Slc Mediated Transmembrane Transport 0
## Slc Transporter Disorders 0
## Smac Xiap Regulated Apoptotic Response 0
## Small Interfering Rna Sirna Biogenesis 0
## Smooth Muscle Contraction 0
## Snrnp Assembly 0
## Sodium Calcium Exchangers 0
## Sodium Coupled Phosphate Cotransporters 0
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 0
## Sodium Proton Exchangers 0
## Sos Mediated Signalling 0
## Sperm Motility And Taxes 0
## Sphingolipid De Novo Biosynthesis 0
## Sphingolipid Metabolism 0
## Spry Regulation Of Fgf Signaling 0
## Srp Dependent Cotranslational Protein Targeting To Membrane 0
## Stabilization Of P53 0
## Stat5 Activation 0
## Stat5 Activation Downstream Of Flt3 Itd Mutants 0
## Striated Muscle Contraction 0
## Sulfide Oxidation To Sulfate 0
## Sulfur Amino Acid Metabolism 0
## Sumo Is Conjugated To E1 Uba2 Sae1 0
## Sumo Is Proteolytically Processed 0
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 0
## Sumoylation Of Chromatin Organization Proteins 0
## Sumoylation Of Dna Damage Response And Repair Proteins 0
## Sumoylation Of Dna Replication Proteins 0
## Sumoylation Of Immune Response Proteins 0
## Sumoylation Of Intracellular Receptors 0
## Sumoylation Of Rna Binding Proteins 0
## Sumoylation Of Sumoylation Proteins 0
## Sumoylation Of Transcription Factors 0
## Sumoylation Of Ubiquitinylation Proteins 0
## Suppression Of Apoptosis 0
## Suppression Of Phagosomal Maturation 0
## Surfactant Metabolism 0
## Switching Of Origins To A Post Replicative State 0
## Synaptic Adhesion Like Molecules 0
## Syndecan Interactions 0
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 0
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 0
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 0
## Synthesis Of 5 Eicosatetraenoic Acids 0
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 0
## Synthesis Of Bile Acids And Bile Salts 0
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 0
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 0
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 0
## Synthesis Of Diphthamide Eef2 0
## Synthesis Of Dolichyl Phosphate 0
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 0
## Synthesis Of Gdp Mannose 0
## Synthesis Of Glycosylphosphatidylinositol Gpi 0
## Synthesis Of Ip2 Ip And Ins In The Cytosol 0
## Synthesis Of Ip3 And Ip4 In The Cytosol 0
## Synthesis Of Ketone Bodies 0
## Synthesis Of Leukotrienes Lt And Eoxins Ex 0
## Synthesis Of Lipoxins Lx 0
## Synthesis Of Pa 0
## Synthesis Of Pc 0
## Synthesis Of Pe 0
## Synthesis Of Pg 0
## Synthesis Of Pi 0
## Synthesis Of Pips At The Early Endosome Membrane 0
## Synthesis Of Pips At The Er Membrane 0
## Synthesis Of Pips At The Golgi Membrane 0
## Synthesis Of Pips At The Late Endosome Membrane 0
## Synthesis Of Pips At The Plasma Membrane 0
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 0
## Synthesis Of Pyrophosphates In The Cytosol 0
## Synthesis Of Udp N Acetyl Glucosamine 0
## Synthesis Of Very Long Chain Fatty Acyl Coas 0
## Synthesis Of Wybutosine At G37 Of Trna Phe 0
## Synthesis Secretion And Deacylation Of Ghrelin 0
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 0
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 0
## Tachykinin Receptors Bind Tachykinins 0
## Tbc Rabgaps 0
## Telomere C Strand Lagging Strand Synthesis 0
## Telomere C Strand Synthesis Initiation 0
## Telomere Extension By Telomerase 0
## Telomere Maintenance 0
## Terminal Pathway Of Complement 0
## Termination Of Translesion Dna Synthesis 0
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 0
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 0
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 0
## Tgf Beta Receptor Signaling Activates Smads 0
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 0
## The Activation Of Arylsulfatases 0
## The Canonical Retinoid Cycle In Rods Twilight Vision 0
## The Citric Acid Tca Cycle And Respiratory Electron Transport 0
## The Fatty Acid Cycling Model 0
## The Phototransduction Cascade 0
## The Retinoid Cycle In Cones Daylight Vision 0
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 0
## Thrombin Signalling Through Proteinase Activated Receptors Pars 0
## Thromboxane Signalling Through Tp Receptor 0
## Thyroxine Biosynthesis 0
## Tie2 Signaling 0
## Tight Junction Interactions 0
## Tnfr1 Induced Proapoptotic Signaling 0
## Tnfr1 Mediated Ceramide Production 0
## Toxicity Of Botulinum Toxin Type D Botd 0
## Tp53 Regulates Metabolic Genes 0
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 0
## Tp53 Regulates Transcription Of Death Receptors And Ligands 0
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 0
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 0
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 0
## Traf3 Dependent Irf Activation Pathway 0
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 0
## Traf6 Mediated Irf7 Activation 0
## Trafficking Of Ampa Receptors 0
## Trafficking Of Glur2 Containing Ampa Receptors 0
## Trafficking Of Myristoylated Proteins To The Cilium 0
## Trail Signaling 0
## Trans Golgi Network Vesicle Budding 0
## Transcription Coupled Nucleotide Excision Repair Tc Ner 0
## Transcription Of E2f Targets Under Negative Control By Dream Complex 0
## Transcription Of The Hiv Genome 0
## Transcriptional Regulation By E2f6 0
## Transcriptional Regulation By Runx3 0
## Transcriptional Regulation By Small Rnas 0
## Transcriptional Regulation Of Testis Differentiation 0
## Transcriptional Regulation Of White Adipocyte Differentiation 0
## Transferrin Endocytosis And Recycling 0
## Translation 0
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 0
## Translation Of Sars Cov 1 Structural Proteins 0
## Translation Of Sars Cov 2 Structural Proteins 0
## Translesion Synthesis By Polh 0
## Translesion Synthesis By Polk 0
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 0
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 0
## Transport And Synthesis Of Paps 0
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 0
## Transport Of Connexons To The Plasma Membrane 0
## Transport Of Fatty Acids 0
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 0
## Transport Of Mature Mrnas Derived From Intronless Transcripts 0
## Transport Of Mature Transcript To Cytoplasm 0
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 0
## Transport Of Nucleotide Sugars 0
## Transport Of Organic Anions 0
## Transport Of The Slbp Dependant Mature Mrna 0
## Transport Of Vitamins Nucleosides And Related Molecules 0
## Trif Mediated Programmed Cell Death 0
## Triglyceride Biosynthesis 0
## Triglyceride Catabolism 0
## Triglyceride Metabolism 0
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 0
## Trna Aminoacylation 0
## Trna Modification In The Mitochondrion 0
## Trna Modification In The Nucleus And Cytosol 0
## Trna Processing 0
## Trna Processing In The Mitochondrion 0
## Trna Processing In The Nucleus 0
## Trp Channels 0
## Tryptophan Catabolism 0
## Type I Hemidesmosome Assembly 0
## Tyrosine Catabolism 0
## Tysnd1 Cleaves Peroxisomal Proteins 0
## Ubiquinol Biosynthesis 0
## Uch Proteinases 0
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 0
## Unwinding Of Dna 0
## Uptake And Actions Of Bacterial Toxins 0
## Uptake And Function Of Anthrax Toxins 0
## Uptake And Function Of Diphtheria Toxin 0
## Urea Cycle 0
## Vasopressin Like Receptors 0
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 0
## Vegf Ligand Receptor Interactions 0
## Vegfr2 Mediated Cell Proliferation 0
## Viral Messenger Rna Synthesis 0
## Visual Phototransduction 0
## Vitamin B1 Thiamin Metabolism 0
## Vitamin B2 Riboflavin Metabolism 0
## Vitamin B5 Pantothenate Metabolism 0
## Vitamin C Ascorbate Metabolism 0
## Vitamin D Calciferol Metabolism 0
## Vitamins 0
## Vldl Assembly 0
## Vldl Clearance 0
## Voltage Gated Potassium Channels 0
## Vxpx Cargo Targeting To Cilium 0
## Wax And Plasmalogen Biosynthesis 0
## Wnt Mediated Activation Of Dvl 0
## Xenobiotics 0
## Zinc Efflux And Compartmentalization By The Slc30 Family 0
## Zinc Influx Into Cells By The Slc39 Gene Family 0
## Zinc Transporters 0
## background
## Cytokine Signaling In Immune System 23467
## Interleukin 10 Signaling 23467
## Signaling By Interleukins 23467
## Innate Immune System 23467
## Interleukin 4 And Interleukin 13 Signaling 23467
## Chemokine Receptors Bind Chemokines 23467
## Signaling By Gpcr 23467
## Peptide Ligand Binding Receptors 23467
## Neutrophil Degranulation 23467
## Leishmania Infection 23467
## Regulated Necrosis 23467
## Purinergic Signaling In Leishmaniasis Infection 23467
## Pyroptosis 23467
## Gpcr Ligand Binding 23467
## Interleukin 1 Processing 23467
## Extra Nuclear Estrogen Signaling 23467
## Interleukin 1 Family Signaling 23467
## G Alpha I Signalling Events 23467
## Adaptive Immune System 23467
## Class A 1 Rhodopsin Like Receptors 23467
## Toll Like Receptor Cascades 23467
## Tnfr2 Non Canonical Nf Kb Pathway 23467
## Pi3k Akt Signaling In Cancer 23467
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 23467
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 23467
## Negative Regulation Of The Pi3k Akt Network 23467
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 23467
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 23467
## Inflammasomes 23467
## Programmed Cell Death 23467
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 23467
## Costimulation By The Cd28 Family 23467
## Constitutive Signaling By Aberrant Pi3k In Cancer 23467
## Tnfs Bind Their Physiological Receptors 23467
## Infectious Disease 23467
## Activation Of Matrix Metalloproteinases 23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 23467
## Toll Like Receptor 9 Tlr9 Cascade 23467
## Myd88 Independent Tlr4 Cascade 23467
## Cd163 Mediating An Anti Inflammatory Response 23467
## Egfr Transactivation By Gastrin 23467
## Extracellular Matrix Organization 23467
## Dap12 Interactions 23467
## Intracellular Signaling By Second Messengers 23467
## Mapk3 Erk1 Activation 23467
## Senescence Associated Secretory Phenotype Sasp 23467
## Post Translational Protein Modification 23467
## Complement Cascade 23467
## Interleukin 6 Signaling 23467
## Cd28 Dependent Vav1 Pathway 23467
## Esr Mediated Signaling 23467
## Trafficking And Processing Of Endosomal Tlr 23467
## Interleukin 12 Family Signaling 23467
## Signaling By Receptor Tyrosine Kinases 23467
## Collagen Degradation 23467
## The Nlrp3 Inflammasome 23467
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 23467
## Interleukin 17 Signaling 23467
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 23467
## Ctla4 Inhibitory Signaling 23467
## Interleukin 37 Signaling 23467
## Signal Transduction By L1 23467
## Cd28 Dependent Pi3k Akt Signaling 23467
## Raf Independent Mapk1 3 Activation 23467
## Signaling By Nuclear Receptors 23467
## Interleukin 6 Family Signaling 23467
## Interferon Gamma Signaling 23467
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 23467
## Cellular Senescence 23467
## Pd 1 Signaling 23467
## Toll Like Receptor Tlr1 Tlr2 Cascade 23467
## Diseases Of Immune System 23467
## Mapk Targets Nuclear Events Mediated By Map Kinases 23467
## Cargo Recognition For Clathrin Mediated Endocytosis 23467
## Antigen Processing Cross Presentation 23467
## Perk Regulates Gene Expression 23467
## Cd28 Co Stimulation 23467
## Nod1 2 Signaling Pathway 23467
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 23467
## Ngf Stimulated Transcription 23467
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 23467
## Signaling By Scf Kit 23467
## Interleukin 2 Family Signaling 23467
## Signaling By Ntrks 23467
## Interleukin 12 Signaling 23467
## Degradation Of The Extracellular Matrix 23467
## Death Receptor Signalling 23467
## Clathrin Mediated Endocytosis 23467
## Eph Ephrin Mediated Repulsion Of Cells 23467
## Signaling By Ptk6 23467
## Deubiquitination 23467
## G2 M Dna Replication Checkpoint 23467
## Mecp2 Regulates Transcription Factors 23467
## Runx2 Regulates Chondrocyte Maturation 23467
## Assembly Of Collagen Fibrils And Other Multimeric Structures 23467
## Cytosolic Sensors Of Pathogen Associated Dna 23467
## Nuclear Events Kinase And Transcription Factor Activation 23467
## Clec7a Inflammasome Pathway 23467
## Fibronectin Matrix Formation 23467
## Hemostasis 23467
## Mapk Family Signaling Cascades 23467
## Phosphorylation Of Emi1 23467
## Ptk6 Promotes Hif1a Stabilization 23467
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 23467
## Circadian Clock 23467
## Rhob Gtpase Cycle 23467
## Activation Of Nima Kinases Nek9 Nek6 Nek7 23467
## Creb Phosphorylation 23467
## Rhoc Gtpase Cycle 23467
## Rhog Gtpase Cycle 23467
## Cell Surface Interactions At The Vascular Wall 23467
## Cellular Responses To External Stimuli 23467
## Activation Of C3 And C5 23467
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 23467
## Interferon Signaling 23467
## Interleukin 18 Signaling 23467
## Mecp2 Regulates Transcription Of Neuronal Ligands 23467
## Runx2 Regulates Genes Involved In Cell Migration 23467
## Rna Polymerase Ii Transcription 23467
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 23467
## E2f Enabled Inhibition Of Pre Replication Complex Formation 23467
## Egfr Interacts With Phospholipase C Gamma 23467
## Interleukin 23 Signaling 23467
## Interleukin 9 Signaling 23467
## Mapk1 Erk2 Activation 23467
## Fceri Mediated Mapk Activation 23467
## G Alpha Q Signalling Events 23467
## Activation Of The Ap 1 Family Of Transcription Factors 23467
## Akt Phosphorylates Targets In The Nucleus 23467
## Camk Iv Mediated Phosphorylation Of Creb 23467
## Interleukin 21 Signaling 23467
## Mastl Facilitates Mitotic Progression 23467
## P75ntr Regulates Axonogenesis 23467
## Rac2 Gtpase Cycle 23467
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 23467
## Collagen Formation 23467
## Transcriptional Regulation Of Granulopoiesis 23467
## Eph Ephrin Signaling 23467
## Unfolded Protein Response Upr 23467
## Condensation Of Prometaphase Chromosomes 23467
## Endosomal Vacuolar Pathway 23467
## Interleukin 27 Signaling 23467
## Signaling By Leptin 23467
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 23467
## Class B 2 Secretin Family Receptors 23467
## Fcgr3a Mediated Il10 Synthesis 23467
## Rac3 Gtpase Cycle 23467
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 23467
## Interleukin 35 Signalling 23467
## Killing Mechanisms 23467
## Notch2 Intracellular Domain Regulates Transcription 23467
## P75 Ntr Receptor Mediated Signalling 23467
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 23467
## Tandem Pore Domain Potassium Channels 23467
## Ticam1 Dependent Activation Of Irf3 Irf7 23467
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 23467
## Vldlr Internalisation And Degradation 23467
## Advanced Glycosylation Endproduct Receptor Signaling 23467
## Apoptosis Induced Dna Fragmentation 23467
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 23467
## Copi Mediated Anterograde Transport 23467
## Dissolution Of Fibrin Clot 23467
## Erbb2 Activates Ptk6 Signaling 23467
## Interleukin 1 Signaling 23467
## Irf3 Mediated Induction Of Type I Ifn 23467
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 23467
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 23467
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 23467
## Golgi Cisternae Pericentriolar Stack Reorganization 23467
## Interleukin 15 Signaling 23467
## Shc1 Events In Egfr Signaling 23467
## Constitutive Signaling By Egfrviii 23467
## Depolymerisation Of The Nuclear Lamina 23467
## Erbb2 Regulates Cell Motility 23467
## Membrane Trafficking 23467
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 23467
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 23467
## Wnt5a Dependent Internalization Of Fzd4 23467
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 23467
## Platelet Activation Signaling And Aggregation 23467
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 23467
## Grb2 Events In Erbb2 Signaling 23467
## Pi3k Events In Erbb2 Signaling 23467
## Signaling By Erbb2 Ecd Mutants 23467
## Sting Mediated Induction Of Host Immune Responses 23467
## Sumoylation Of Dna Methylation Proteins 23467
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 23467
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 23467
## Gab1 Signalosome 23467
## Rip Mediated Nfkb Activation Via Zbp1 23467
## Transcriptional Regulation By Runx2 23467
## Irak4 Deficiency Tlr2 4 23467
## L1cam Interactions 23467
## Mecp2 Regulates Neuronal Receptors And Channels 23467
## Signaling By Cytosolic Fgfr1 Fusion Mutants 23467
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 23467
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 23467
## Cytoprotection By Hmox1 23467
## Initiation Of Nuclear Envelope Ne Reformation 23467
## Ldl Clearance 23467
## Phase 4 Resting Membrane Potential 23467
## Phosphorylation Of The Apc C 23467
## Pka Mediated Phosphorylation Of Creb 23467
## Signaling By Kit In Disease 23467
## Signaling By Pdgfr In Disease 23467
## Regulation Of Tlr By Endogenous Ligand 23467
## Zbp1 Dai Mediated Induction Of Type I Ifns 23467
## Response To Elevated Platelet Cytosolic Ca2 23467
## Adora2b Mediated Anti Inflammatory Cytokines Production 23467
## E2f Mediated Regulation Of Dna Replication 23467
## Shc1 Events In Erbb2 Signaling 23467
## Hcmv Early Events 23467
## Ikk Complex Recruitment Mediated By Rip1 23467
## Termination Of O Glycan Biosynthesis 23467
## Asparagine N Linked Glycosylation 23467
## C Type Lectin Receptors Clrs 23467
## Apc C Cdc20 Mediated Degradation Of Cyclin B 23467
## Growth Hormone Receptor Signaling 23467
## Runx2 Regulates Osteoblast Differentiation 23467
## Traf6 Mediated Nf Kb Activation 23467
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 23467
## Cyclin A B1 B2 Associated Events During G2 M Transition 23467
## Inactivation Of Csf3 G Csf Signaling 23467
## Notch3 Activation And Transmission Of Signal To The Nucleus 23467
## Signaling By Egfr In Cancer 23467
## Vesicle Mediated Transport 23467
## Constitutive Signaling By Akt1 E17k In Cancer 23467
## Dectin 2 Family 23467
## Interleukin 20 Family Signaling 23467
## Signaling By Erbb2 In Cancer 23467
## Wnt Ligand Biogenesis And Trafficking 23467
## Rhoa Gtpase Cycle 23467
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 23467
## G0 And Early G1 23467
## Interleukin Receptor Shc Signaling 23467
## Vegfr2 Mediated Vascular Permeability 23467
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 23467
## Er To Golgi Anterograde Transport 23467
## Dap12 Signaling 23467
## Downregulation Of Erbb2 Signaling 23467
## Downstream Signal Transduction 23467
## G1 S Specific Transcription 23467
## Ripk1 Mediated Regulated Necrosis 23467
## Cdc42 Gtpase Cycle 23467
## Cellular Response To Chemical Stress 23467
## Signaling By Csf3 G Csf 23467
## Tnfr1 Induced Nfkappab Signaling Pathway 23467
## Hcmv Infection 23467
## Egfr Downregulation 23467
## Fgfr1 Mutant Receptor Activation 23467
## Runx2 Regulates Bone Development 23467
## Transcriptional Regulation Of Pluripotent Stem Cells 23467
## Regulation Of Mecp2 Expression And Activity 23467
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 23467
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 23467
## Cargo Concentration In The Er 23467
## Plasma Lipoprotein Clearance 23467
## Sialic Acid Metabolism 23467
## Signaling By Notch2 23467
## Gpvi Mediated Activation Cascade 23467
## Regulation Of Tnfr1 Signaling 23467
## Transcriptional Regulation By Tp53 23467
## Apoptosis 23467
## Association Of Tric Cct With Target Proteins During Biosynthesis 23467
## Ca Dependent Events 23467
## Class I Mhc Mediated Antigen Processing Presentation 23467
## Fc Epsilon Receptor Fceri Signaling 23467
## Generation Of Second Messenger Molecules 23467
## Interleukin 7 Signaling 23467
## Metalloprotease Dubs 23467
## Nervous System Development 23467
## Nuclear Pore Complex Npc Disassembly 23467
## Ovarian Tumor Domain Proteases 23467
## Rac1 Gtpase Cycle 23467
## Regulation Of Tp53 Expression And Degradation 23467
## Rhoh Gtpase Cycle 23467
## Signaling By Fgfr1 In Disease 23467
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 23467
## Transport To The Golgi And Subsequent Modification 23467
## Beta Defensins 23467
## Dag And Ip3 Signaling 23467
## Rhof Gtpase Cycle 23467
## Sumoylation 23467
## Transcriptional Regulation By Ventx 23467
## Sumoylation Of Transcription Cofactors 23467
## Tnf Signaling 23467
## Tp53 Regulates Transcription Of Cell Death Genes 23467
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 23467
## Heme Signaling 23467
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 23467
## Irs Mediated Signalling 23467
## Retrograde Transport At The Trans Golgi Network 23467
## Signaling By Egfr 23467
## Signaling By Erbb2 23467
## Signaling By Notch3 23467
## Tp53 Regulates Transcription Of Cell Cycle Genes 23467
## Apoptotic Execution Phase 23467
## Defensins 23467
## Nuclear Envelope Breakdown 23467
## Rhod Gtpase Cycle 23467
## Ub Specific Processing Proteases 23467
## G Protein Mediated Events 23467
## Insulin Receptor Signalling Cascade 23467
## Intrinsic Pathway For Apoptosis 23467
## Rhoj Gtpase Cycle 23467
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 23467
## Transcriptional Activation Of Mitochondrial Biogenesis 23467
## Nrage Signals Death Through Jnk 23467
## Rhoq Gtpase Cycle 23467
## Signaling By Erbb4 23467
## Signaling By Pdgf 23467
## Transcriptional Regulation By Runx1 23467
## Asymmetric Localization Of Pcp Proteins 23467
## Ca2 Pathway 23467
## Dna Methylation 23467
## Ncam Signaling For Neurite Out Growth 23467
## O Linked Glycosylation Of Mucins 23467
## Signaling By Fgfr In Disease 23467
## Signaling By Notch 23467
## Synthesis Of Substrates In N Glycan Biosythesis 23467
## Tp53 Regulates Transcription Of Dna Repair Genes 23467
## Transcriptional Regulation By Mecp2 23467
## Copii Mediated Vesicle Transport 23467
## Diseases Associated With O Glycosylation Of Proteins 23467
## Aurka Activation By Tpx2 23467
## Interferon Alpha Beta Signaling 23467
## Plasma Lipoprotein Assembly Remodeling And Clearance 23467
## Prc2 Methylates Histones And Dna 23467
## Regulation Of Runx2 Expression And Activity 23467
## Signaling By Tgf Beta Receptor Complex 23467
## Cell Death Signalling Via Nrage Nrif And Nade 23467
## Condensation Of Prophase Chromosomes 23467
## Ecm Proteoglycans 23467
## Nuclear Envelope Ne Reassembly 23467
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 23467
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 23467
## G Alpha 12 13 Signalling Events 23467
## Initial Triggering Of Complement 23467
## Potential Therapeutics For Sars 23467
## Recruitment Of Mitotic Centrosome Proteins And Complexes 23467
## Rmts Methylate Histone Arginines 23467
## Signaling By Insulin Receptor 23467
## Signaling By Met 23467
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 23467
## Integrin Cell Surface Interactions 23467
## Organelle Biogenesis And Maintenance 23467
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 23467
## Apc C Mediated Degradation Of Cell Cycle Proteins 23467
## Fceri Mediated Ca 2 Mobilization 23467
## Opioid Signalling 23467
## Regulation Of Plk1 Activity At G2 M Transition 23467
## Activation Of Nmda Receptors And Postsynaptic Events 23467
## Mapk6 Mapk4 Signaling 23467
## Mitochondrial Biogenesis 23467
## Pcp Ce Pathway 23467
## Anchoring Of The Basal Body To The Plasma Membrane 23467
## Antimicrobial Peptides 23467
## G2 M Dna Damage Checkpoint 23467
## Protein Folding 23467
## Recruitment Of Numa To Mitotic Centrosomes 23467
## Clec7a Dectin 1 Signaling 23467
## Diseases Of Programmed Cell Death 23467
## Signaling By Tgfb Family Members 23467
## Developmental Biology 23467
## Potassium Channels 23467
## Signaling By Vegf 23467
## Stimuli Sensing Channels 23467
## Amyloid Fiber Formation 23467
## O Linked Glycosylation 23467
## Parasite Infection 23467
## Tcr Signaling 23467
## Cardiac Conduction 23467
## Mhc Class Ii Antigen Presentation 23467
## Oxidative Stress Induced Senescence 23467
## Resolution Of Sister Chromatid Cohesion 23467
## Diseases Of Glycosylation 23467
## Fcgamma Receptor Fcgr Dependent Phagocytosis 23467
## Mitotic Prophase 23467
## Beta Catenin Independent Wnt Signaling 23467
## Epigenetic Regulation Of Gene Expression 23467
## Estrogen Dependent Gene Expression 23467
## Mitotic G1 Phase And G1 S Transition 23467
## Neuronal System 23467
## Sars Cov Infections 23467
## Regulation Of Tp53 Activity 23467
## Rho Gtpase Cycle 23467
## Signaling By The B Cell Receptor Bcr 23467
## G2 M Checkpoints 23467
## Ion Channel Transport 23467
## Muscle Contraction 23467
## Cilium Assembly 23467
## Intra Golgi And Retrograde Golgi To Er Traffic 23467
## Mitotic G2 G2 M Phases 23467
## Mitotic Prometaphase 23467
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 23467
## Mitotic Metaphase And Anaphase 23467
## Tcf Dependent Signaling In Response To Wnt 23467
## Diseases Of Metabolism 23467
## Transmission Across Chemical Synapses 23467
## Chromatin Modifying Enzymes 23467
## Cell Cycle Checkpoints 23467
## Signaling By Wnt 23467
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 23467
## Transport Of Small Molecules 23467
## M Phase 23467
## Cell Cycle Mitotic 23467
## Cell Cycle 23467
## 2 Ltr Circle Formation 23467
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 23467
## Abacavir Metabolism 23467
## Abacavir Transmembrane Transport 23467
## Abacavir Transport And Metabolism 23467
## Abc Family Proteins Mediated Transport 23467
## Abc Transporter Disorders 23467
## Abc Transporters In Lipid Homeostasis 23467
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 23467
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 23467
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 23467
## Acetylcholine Binding And Downstream Events 23467
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 23467
## Acetylcholine Neurotransmitter Release Cycle 23467
## Acetylcholine Regulates Insulin Secretion 23467
## Acrosome Reaction And Sperm Oocyte Membrane Binding 23467
## Activated Notch1 Transmits Signal To The Nucleus 23467
## Activated Ntrk2 Signals Through Cdk5 23467
## Activated Ntrk2 Signals Through Frs2 And Frs3 23467
## Activated Ntrk2 Signals Through Fyn 23467
## Activated Ntrk2 Signals Through Pi3k 23467
## Activated Ntrk2 Signals Through Ras 23467
## Activated Ntrk3 Signals Through Pi3k 23467
## Activated Ntrk3 Signals Through Ras 23467
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 23467
## Activated Tak1 Mediates P38 Mapk Activation 23467
## Activation Of Ampk Downstream Of Nmdars 23467
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 23467
## Activation Of Atr In Response To Replication Stress 23467
## Activation Of Bad And Translocation To Mitochondria 23467
## Activation Of Bh3 Only Proteins 23467
## Activation Of Caspases Through Apoptosome Mediated Cleavage 23467
## Activation Of Gene Expression By Srebf Srebp 23467
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 23467
## Activation Of Kainate Receptors Upon Glutamate Binding 23467
## Activation Of Noxa And Translocation To Mitochondria 23467
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 23467
## Activation Of Puma And Translocation To Mitochondria 23467
## Activation Of Rac1 23467
## Activation Of Rac1 Downstream Of Nmdars 23467
## Activation Of Ras In B Cells 23467
## Activation Of Smo 23467
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 23467
## Activation Of The Phototransduction Cascade 23467
## Activation Of The Pre Replicative Complex 23467
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 23467
## Activation Of Trka Receptors 23467
## Acyl Chain Remodeling Of Cl 23467
## Acyl Chain Remodeling Of Dag And Tag 23467
## Acyl Chain Remodelling Of Pc 23467
## Acyl Chain Remodelling Of Pe 23467
## Acyl Chain Remodelling Of Pg 23467
## Acyl Chain Remodelling Of Pi 23467
## Acyl Chain Remodelling Of Ps 23467
## Adenylate Cyclase Activating Pathway 23467
## Adenylate Cyclase Inhibitory Pathway 23467
## Adherens Junctions Interactions 23467
## Adp Signalling Through P2y Purinoceptor 1 23467
## Adp Signalling Through P2y Purinoceptor 12 23467
## Adrenaline Noradrenaline Inhibits Insulin Secretion 23467
## Adrenoceptors 23467
## Aflatoxin Activation And Detoxification 23467
## Aggrephagy 23467
## Akt Phosphorylates Targets In The Cytosol 23467
## Alpha Defensins 23467
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 23467
## Alpha Oxidation Of Phytanate 23467
## Alpha Protein Kinase 1 Signaling Pathway 23467
## Alternative Complement Activation 23467
## Amine Ligand Binding Receptors 23467
## Amino Acid Conjugation 23467
## Amino Acid Transport Across The Plasma Membrane 23467
## Amino Acids Regulate Mtorc1 23467
## Ampk Inhibits Chrebp Transcriptional Activation Activity 23467
## Anchoring Fibril Formation 23467
## Androgen Biosynthesis 23467
## Antigen Processing Ubiquitination Proteasome Degradation 23467
## Antiviral Mechanism By Ifn Stimulated Genes 23467
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 23467
## Apc Cdc20 Mediated Degradation Of Nek2a 23467
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 23467
## Apobec3g Mediated Resistance To Hiv 1 Infection 23467
## Apoptotic Cleavage Of Cell Adhesion Proteins 23467
## Apoptotic Cleavage Of Cellular Proteins 23467
## Apoptotic Factor Mediated Response 23467
## Aquaporin Mediated Transport 23467
## Arachidonate Production From Dag 23467
## Arachidonic Acid Metabolism 23467
## Arms Mediated Activation 23467
## Aryl Hydrocarbon Receptor Signalling 23467
## Aspartate And Asparagine Metabolism 23467
## Assembly And Cell Surface Presentation Of Nmda Receptors 23467
## Assembly Of Active Lpl And Lipc Lipase Complexes 23467
## Assembly Of The Hiv Virion 23467
## Assembly Of The Orc Complex At The Origin Of Replication 23467
## Assembly Of The Pre Replicative Complex 23467
## Atf6 Atf6 Alpha Activates Chaperone Genes 23467
## Atf6 Atf6 Alpha Activates Chaperones 23467
## Attachment And Entry 23467
## Attachment Of Gpi Anchor To Upar 23467
## Attenuation Phase 23467
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 23467
## Autophagy 23467
## B Wich Complex Positively Regulates Rrna Expression 23467
## Base Excision Repair 23467
## Base Excision Repair Ap Site Formation 23467
## Basigin Interactions 23467
## Bbsome Mediated Cargo Targeting To Cilium 23467
## Beta Catenin Phosphorylation Cascade 23467
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 23467
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 23467
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 23467
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 23467
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 23467
## Beta Oxidation Of Pristanoyl Coa 23467
## Beta Oxidation Of Very Long Chain Fatty Acids 23467
## Bicarbonate Transporters 23467
## Bile Acid And Bile Salt Metabolism 23467
## Binding And Uptake Of Ligands By Scavenger Receptors 23467
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 23467
## Biological Oxidations 23467
## Biosynthesis Of Epa Derived Spms 23467
## Biosynthesis Of Maresin Like Spms 23467
## Biosynthesis Of Maresins 23467
## Biosynthesis Of Specialized Proresolving Mediators Spms 23467
## Biotin Transport And Metabolism 23467
## Blood Group Systems Biosynthesis 23467
## Branched Chain Amino Acid Catabolism 23467
## Budding And Maturation Of Hiv Virion 23467
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 23467
## Butyrophilin Btn Family Interactions 23467
## Ca2 Activated K Channels 23467
## Calcineurin Activates Nfat 23467
## Calcitonin Like Ligand Receptors 23467
## Calnexin Calreticulin Cycle 23467
## Carboxyterminal Post Translational Modifications Of Tubulin 23467
## Cargo Trafficking To The Periciliary Membrane 23467
## Carnitine Metabolism 23467
## Caspase Activation Via Death Receptors In The Presence Of Ligand 23467
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 23467
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 23467
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 23467
## Cation Coupled Chloride Cotransporters 23467
## Cd209 Dc Sign Signaling 23467
## Cd22 Mediated Bcr Regulation 23467
## Cdc6 Association With The Orc Origin Complex 23467
## Cell Cell Communication 23467
## Cell Cell Junction Organization 23467
## Cell Extracellular Matrix Interactions 23467
## Cell Junction Organization 23467
## Cellular Hexose Transport 23467
## Cellular Response To Heat Stress 23467
## Cellular Response To Hypoxia 23467
## Cellular Response To Starvation 23467
## Cgmp Effects 23467
## Chaperone Mediated Autophagy 23467
## Chl1 Interactions 23467
## Cholesterol Biosynthesis 23467
## Choline Catabolism 23467
## Chondroitin Sulfate Biosynthesis 23467
## Chondroitin Sulfate Dermatan Sulfate Metabolism 23467
## Chrebp Activates Metabolic Gene Expression 23467
## Chromosome Maintenance 23467
## Chylomicron Assembly 23467
## Chylomicron Clearance 23467
## Chylomicron Remodeling 23467
## Citric Acid Cycle Tca Cycle 23467
## Class C 3 Metabotropic Glutamate Pheromone Receptors 23467
## Class I Peroxisomal Membrane Protein Import 23467
## Clec7a Dectin 1 Induces Nfat Activation 23467
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 23467
## Coenzyme A Biosynthesis 23467
## Cohesin Loading Onto Chromatin 23467
## Collagen Biosynthesis And Modifying Enzymes 23467
## Collagen Chain Trimerization 23467
## Common Pathway Of Fibrin Clot Formation 23467
## Competing Endogenous Rnas Cernas Regulate Pten Translation 23467
## Complex I Biogenesis 23467
## Conjugation Of Benzoate With Glycine 23467
## Constitutive Signaling By Overexpressed Erbb2 23467
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 23467
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 23467
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 23467
## Copi Dependent Golgi To Er Retrograde Traffic 23467
## Copi Independent Golgi To Er Retrograde Traffic 23467
## Creatine Metabolism 23467
## Creation Of C4 And C2 Activators 23467
## Creb3 Factors Activate Genes 23467
## Cristae Formation 23467
## Crmps In Sema3a Signaling 23467
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 23467
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 23467
## Crosslinking Of Collagen Fibrils 23467
## Cs Ds Degradation 23467
## Cyclin A Cdk2 Associated Events At S Phase Entry 23467
## Cyclin D Associated Events In G1 23467
## Cyp2e1 Reactions 23467
## Cytochrome C Mediated Apoptotic Response 23467
## Cytochrome P450 Arranged By Substrate Type 23467
## Cytosolic Iron Sulfur Cluster Assembly 23467
## Cytosolic Sulfonation Of Small Molecules 23467
## Cytosolic Trna Aminoacylation 23467
## Darpp 32 Events 23467
## Dcc Mediated Attractive Signaling 23467
## Deactivation Of The Beta Catenin Transactivating Complex 23467
## Deadenylation Dependent Mrna Decay 23467
## Deadenylation Of Mrna 23467
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 23467
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 23467
## Defective B4galt7 Causes Eds Progeroid Type 23467
## Defective Cftr Causes Cystic Fibrosis 23467
## Defective Chst14 Causes Eds Musculocontractural Type 23467
## Defective Chst3 Causes Sedcjd 23467
## Defective Chst6 Causes Mcdc1 23467
## Defective Chsy1 Causes Tpbs 23467
## Defective Csf2rb Causes Smdp5 23467
## Defective Ext2 Causes Exostoses 2 23467
## Defective F9 Activation 23467
## Defective Factor Ix Causes Hemophilia B 23467
## Defective Factor Viii Causes Hemophilia A 23467
## Defective Lfng Causes Scdo3 23467
## Defective Ripk1 Mediated Regulated Necrosis 23467
## Defective St3gal3 Causes Mct12 And Eiee15 23467
## Defects In Biotin Btn Metabolism 23467
## Defects In Cobalamin B12 Metabolism 23467
## Defects In Vitamin And Cofactor Metabolism 23467
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 23467
## Degradation Of Axin 23467
## Degradation Of Beta Catenin By The Destruction Complex 23467
## Degradation Of Cysteine And Homocysteine 23467
## Degradation Of Dvl 23467
## Degradation Of Gli1 By The Proteasome 23467
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 23467
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 23467
## Dermatan Sulfate Biosynthesis 23467
## Detoxification Of Reactive Oxygen Species 23467
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 23467
## Digestion 23467
## Digestion And Absorption 23467
## Digestion Of Dietary Carbohydrate 23467
## Digestion Of Dietary Lipid 23467
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 23467
## Diseases Associated With Glycosaminoglycan Metabolism 23467
## Diseases Associated With Glycosylation Precursor Biosynthesis 23467
## Diseases Associated With N Glycosylation Of Proteins 23467
## Diseases Associated With Surfactant Metabolism 23467
## Diseases Of Base Excision Repair 23467
## Diseases Of Carbohydrate Metabolism 23467
## Diseases Of Dna Repair 23467
## Diseases Of Mismatch Repair Mmr 23467
## Diseases Of Mitotic Cell Cycle 23467
## Disinhibition Of Snare Formation 23467
## Disorders Of Transmembrane Transporters 23467
## Displacement Of Dna Glycosylase By Apex1 23467
## Dna Damage Bypass 23467
## Dna Damage Recognition In Gg Ner 23467
## Dna Damage Reversal 23467
## Dna Damage Telomere Stress Induced Senescence 23467
## Dna Double Strand Break Repair 23467
## Dna Double Strand Break Response 23467
## Dna Repair 23467
## Dna Replication 23467
## Dna Replication Initiation 23467
## Dna Replication Pre Initiation 23467
## Dna Strand Elongation 23467
## Dopamine Neurotransmitter Release Cycle 23467
## Dopamine Receptors 23467
## Downregulation Of Erbb2 Erbb3 Signaling 23467
## Downregulation Of Erbb4 Signaling 23467
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 23467
## Downregulation Of Tgf Beta Receptor Signaling 23467
## Downstream Signaling Events Of B Cell Receptor Bcr 23467
## Downstream Signaling Of Activated Fgfr1 23467
## Downstream Signaling Of Activated Fgfr2 23467
## Downstream Signaling Of Activated Fgfr3 23467
## Downstream Signaling Of Activated Fgfr4 23467
## Dscam Interactions 23467
## Dual Incision In Gg Ner 23467
## Dual Incision In Tc Ner 23467
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 23467
## Early Phase Of Hiv Life Cycle 23467
## Effects Of Pip2 Hydrolysis 23467
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 23467
## Eicosanoid Ligand Binding Receptors 23467
## Eicosanoids 23467
## Elastic Fibre Formation 23467
## Electric Transmission Across Gap Junctions 23467
## Elevation Of Cytosolic Ca2 Levels 23467
## Endogenous Sterols 23467
## Endosomal Sorting Complex Required For Transport Escrt 23467
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 23467
## Enos Activation 23467
## Epha Mediated Growth Cone Collapse 23467
## Ephb Mediated Forward Signaling 23467
## Ephrin Signaling 23467
## Er Quality Control Compartment Erqc 23467
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 23467
## Erk Mapk Targets 23467
## Erks Are Inactivated 23467
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 23467
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 23467
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 23467
## Erythropoietin Activates Phospholipase C Gamma Plcg 23467
## Erythropoietin Activates Ras 23467
## Erythropoietin Activates Stat5 23467
## Establishment Of Sister Chromatid Cohesion 23467
## Estrogen Biosynthesis 23467
## Estrogen Stimulated Signaling Through Prkcz 23467
## Ethanol Oxidation 23467
## Eukaryotic Translation Elongation 23467
## Eukaryotic Translation Initiation 23467
## Export Of Viral Ribonucleoproteins From Nucleus 23467
## Extension Of Telomeres 23467
## Extrinsic Pathway Of Fibrin Clot Formation 23467
## Factors Involved In Megakaryocyte Development And Platelet Production 23467
## Fanconi Anemia Pathway 23467
## Fasl Cd95l Signaling 23467
## Fatty Acid Metabolism 23467
## Fatty Acids 23467
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 23467
## Fatty Acyl Coa Biosynthesis 23467
## Fbxw7 Mutants And Notch1 In Cancer 23467
## Fceri Mediated Nf Kb Activation 23467
## Fcgr Activation 23467
## Fertilization 23467
## Fgfr1 Ligand Binding And Activation 23467
## Fgfr1b Ligand Binding And Activation 23467
## Fgfr1c Ligand Binding And Activation 23467
## Fgfr2 Alternative Splicing 23467
## Fgfr2 Ligand Binding And Activation 23467
## Fgfr2 Mutant Receptor Activation 23467
## Fgfr2b Ligand Binding And Activation 23467
## Fgfr2c Ligand Binding And Activation 23467
## Fgfr3 Ligand Binding And Activation 23467
## Fgfr3b Ligand Binding And Activation 23467
## Fgfrl1 Modulation Of Fgfr1 Signaling 23467
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 23467
## Flt3 Signaling 23467
## Flt3 Signaling By Cbl Mutants 23467
## Flt3 Signaling In Disease 23467
## Flt3 Signaling Through Src Family Kinases 23467
## Folding Of Actin By Cct Tric 23467
## Formation Of Apoptosome 23467
## Formation Of Atp By Chemiosmotic Coupling 23467
## Formation Of Fibrin Clot Clotting Cascade 23467
## Formation Of Incision Complex In Gg Ner 23467
## Formation Of Rna Pol Ii Elongation Complex 23467
## Formation Of Senescence Associated Heterochromatin Foci Sahf 23467
## Formation Of Tc Ner Pre Incision Complex 23467
## Formation Of The Beta Catenin Tcf Transactivating Complex 23467
## Formation Of The Cornified Envelope 23467
## Formation Of The Early Elongation Complex 23467
## Formation Of Tubulin Folding Intermediates By Cct Tric 23467
## Formation Of Xylulose 5 Phosphate 23467
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 23467
## Foxo Mediated Transcription 23467
## Foxo Mediated Transcription Of Cell Cycle Genes 23467
## Foxo Mediated Transcription Of Cell Death Genes 23467
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 23467
## Free Fatty Acid Receptors 23467
## Free Fatty Acids Regulate Insulin Secretion 23467
## Frs Mediated Fgfr1 Signaling 23467
## Frs Mediated Fgfr2 Signaling 23467
## Frs Mediated Fgfr3 Signaling 23467
## Frs Mediated Fgfr4 Signaling 23467
## Fructose Catabolism 23467
## Fructose Metabolism 23467
## G Alpha S Signalling Events 23467
## G Alpha Z Signalling Events 23467
## G Beta Gamma Signalling Through Cdc42 23467
## G Beta Gamma Signalling Through Pi3kgamma 23467
## G Protein Activation 23467
## G Protein Beta Gamma Signalling 23467
## G1 S Dna Damage Checkpoints 23467
## G2 Phase 23467
## Gaba B Receptor Activation 23467
## Gaba Receptor Activation 23467
## Gaba Synthesis Release Reuptake And Degradation 23467
## Galactose Catabolism 23467
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 23467
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 23467
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 23467
## Gap Junction Assembly 23467
## Gap Junction Degradation 23467
## Gap Junction Trafficking And Regulation 23467
## Gdp Fucose Biosynthesis 23467
## Gene Silencing By Rna 23467
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 23467
## Global Genome Nucleotide Excision Repair Gg Ner 23467
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 23467
## Glucagon Signaling In Metabolic Regulation 23467
## Glucagon Type Ligand Receptors 23467
## Glucocorticoid Biosynthesis 23467
## Gluconeogenesis 23467
## Glucose Metabolism 23467
## Glucuronidation 23467
## Glutamate And Glutamine Metabolism 23467
## Glutamate Neurotransmitter Release Cycle 23467
## Glutathione Conjugation 23467
## Glutathione Synthesis And Recycling 23467
## Glycerophospholipid Biosynthesis 23467
## Glycerophospholipid Catabolism 23467
## Glycogen Breakdown Glycogenolysis 23467
## Glycogen Metabolism 23467
## Glycogen Storage Diseases 23467
## Glycogen Synthesis 23467
## Glycolysis 23467
## Glycosaminoglycan Metabolism 23467
## Glycosphingolipid Metabolism 23467
## Glyoxylate Metabolism And Glycine Degradation 23467
## Golgi Associated Vesicle Biogenesis 23467
## Golgi To Er Retrograde Transport 23467
## Gp1b Ix V Activation Signalling 23467
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 23467
## Grb7 Events In Erbb2 Signaling 23467
## Hats Acetylate Histones 23467
## Hcmv Late Events 23467
## Hdacs Deacetylate Histones 23467
## Hdl Assembly 23467
## Hdl Clearance 23467
## Hdl Remodeling 23467
## Hdms Demethylate Histones 23467
## Hdr Through Homologous Recombination Hrr 23467
## Hdr Through Mmej Alt Nhej 23467
## Hdr Through Single Strand Annealing Ssa 23467
## Hedgehog Ligand Biogenesis 23467
## Hedgehog Off State 23467
## Hedgehog On State 23467
## Heme Biosynthesis 23467
## Heme Degradation 23467
## Heparan Sulfate Heparin Hs Gag Metabolism 23467
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 23467
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 23467
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 23467
## Histidine Catabolism 23467
## Hiv Elongation Arrest And Recovery 23467
## Hiv Infection 23467
## Hiv Life Cycle 23467
## Hiv Transcription Elongation 23467
## Hiv Transcription Initiation 23467
## Homologous Dna Pairing And Strand Exchange 23467
## Homology Directed Repair 23467
## Hormone Ligand Binding Receptors 23467
## Host Interactions Of Hiv Factors 23467
## Hs Gag Biosynthesis 23467
## Hs Gag Degradation 23467
## Hsf1 Activation 23467
## Hsf1 Dependent Transactivation 23467
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 23467
## Hur Elavl1 Binds And Stabilizes Mrna 23467
## Hyaluronan Biosynthesis And Export 23467
## Hyaluronan Metabolism 23467
## Hyaluronan Uptake And Degradation 23467
## Hydrolysis Of Lpc 23467
## Ikba Variant Leads To Eda Id 23467
## Il 6 Type Cytokine Receptor Ligand Interactions 23467
## Inactivation Of Cdc42 And Rac1 23467
## Incretin Synthesis Secretion And Inactivation 23467
## Infection With Mycobacterium Tuberculosis 23467
## Influenza Infection 23467
## Inhibition Of Dna Recombination At Telomere 23467
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 23467
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 23467
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 23467
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 23467
## Inositol Phosphate Metabolism 23467
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 23467
## Insulin Processing 23467
## Insulin Receptor Recycling 23467
## Integration Of Energy Metabolism 23467
## Integration Of Provirus 23467
## Integrin Signaling 23467
## Interaction Between L1 And Ankyrins 23467
## Interaction With Cumulus Cells And The Zona Pellucida 23467
## Interactions Of Rev With Host Cellular Proteins 23467
## Interactions Of Vpr With Host Cellular Proteins 23467
## Interconversion Of Nucleotide Di And Triphosphates 23467
## Interleukin 2 Signaling 23467
## Interleukin 36 Pathway 23467
## Intestinal Absorption 23467
## Intra Golgi Traffic 23467
## Intraflagellar Transport 23467
## Intrinsic Pathway Of Fibrin Clot Formation 23467
## Inwardly Rectifying K Channels 23467
## Ion Homeostasis 23467
## Ion Transport By P Type Atpases 23467
## Ionotropic Activity Of Kainate Receptors 23467
## Irak1 Recruits Ikk Complex 23467
## Irak2 Mediated Activation Of Tak1 Complex 23467
## Ire1alpha Activates Chaperones 23467
## Irf3 Mediated Activation Of Type 1 Ifn 23467
## Iron Uptake And Transport 23467
## Irs Activation 23467
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 23467
## Josephin Domain Dubs 23467
## Keratan Sulfate Biosynthesis 23467
## Keratan Sulfate Degradation 23467
## Keratan Sulfate Keratin Metabolism 23467
## Keratinization 23467
## Ketone Body Metabolism 23467
## Kinesins 23467
## Ksrp Khsrp Binds And Destabilizes Mrna 23467
## Lagging Strand Synthesis 23467
## Laminin Interactions 23467
## Late Endosomal Microautophagy 23467
## Lectin Pathway Of Complement Activation 23467
## Leukotriene Receptors 23467
## Lgi Adam Interactions 23467
## Ligand Receptor Interactions 23467
## Linoleic Acid La Metabolism 23467
## Lipid Particle Organization 23467
## Lipophagy 23467
## Listeria Monocytogenes Entry Into Host Cells 23467
## Long Term Potentiation 23467
## Loss Of Function Of Mecp2 In Rett Syndrome 23467
## Loss Of Function Of Smad2 3 In Cancer 23467
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 23467
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 23467
## Ltc4 Cysltr Mediated Il4 Production 23467
## Lysine Catabolism 23467
## Lysosome Vesicle Biogenesis 23467
## Lysosphingolipid And Lpa Receptors 23467
## Map2k And Mapk Activation 23467
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 23467
## Maturation Of Nucleoprotein 23467
## Maturation Of Protein 3a 23467
## Maturation Of Sars Cov 1 Spike Protein 23467
## Maturation Of Sars Cov 2 Spike Protein 23467
## Meiosis 23467
## Meiotic Recombination 23467
## Meiotic Synapsis 23467
## Melanin Biosynthesis 23467
## Met Activates Pi3k Akt Signaling 23467
## Met Activates Ptk2 Signaling 23467
## Met Activates Ptpn11 23467
## Met Activates Rap1 And Rac1 23467
## Met Activates Ras Signaling 23467
## Met Interacts With Tns Proteins 23467
## Met Promotes Cell Motility 23467
## Met Receptor Activation 23467
## Met Receptor Recycling 23467
## Metabolic Disorders Of Biological Oxidation Enzymes 23467
## Metabolism Of Amine Derived Hormones 23467
## Metabolism Of Amino Acids And Derivatives 23467
## Metabolism Of Angiotensinogen To Angiotensins 23467
## Metabolism Of Carbohydrates 23467
## Metabolism Of Cofactors 23467
## Metabolism Of Fat Soluble Vitamins 23467
## Metabolism Of Folate And Pterines 23467
## Metabolism Of Ingested Semet Sec Mesec Into H2se 23467
## Metabolism Of Lipids 23467
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 23467
## Metabolism Of Nucleotides 23467
## Metabolism Of Polyamines 23467
## Metabolism Of Porphyrins 23467
## Metabolism Of Rna 23467
## Metabolism Of Steroid Hormones 23467
## Metabolism Of Steroids 23467
## Metabolism Of Vitamins And Cofactors 23467
## Metabolism Of Water Soluble Vitamins And Cofactors 23467
## Metal Ion Slc Transporters 23467
## Metal Sequestration By Antimicrobial Proteins 23467
## Metallothioneins Bind Metals 23467
## Methionine Salvage Pathway 23467
## Methylation 23467
## Microrna Mirna Biogenesis 23467
## Mineralocorticoid Biosynthesis 23467
## Miro Gtpase Cycle 23467
## Miscellaneous Substrates 23467
## Miscellaneous Transport And Binding Events 23467
## Mismatch Repair 23467
## Mitochondrial Calcium Ion Transport 23467
## Mitochondrial Fatty Acid Beta Oxidation 23467
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 23467
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 23467
## Mitochondrial Iron Sulfur Cluster Biogenesis 23467
## Mitochondrial Protein Import 23467
## Mitochondrial Translation 23467
## Mitochondrial Trna Aminoacylation 23467
## Mitochondrial Uncoupling 23467
## Mitophagy 23467
## Mitotic Spindle Checkpoint 23467
## Mitotic Telophase Cytokinesis 23467
## Modulation By Mtb Of Host Immune System 23467
## Molecules Associated With Elastic Fibres 23467
## Molybdenum Cofactor Biosynthesis 23467
## Mrna Capping 23467
## Mrna Decay By 3 To 5 Exoribonuclease 23467
## Mrna Decay By 5 To 3 Exoribonuclease 23467
## Mrna Editing 23467
## Mrna Editing C To U Conversion 23467
## Mrna Splicing 23467
## Mrna Splicing Minor Pathway 23467
## Mtor Signalling 23467
## Mtorc1 Mediated Signalling 23467
## Mucopolysaccharidoses 23467
## Multifunctional Anion Exchangers 23467
## Muscarinic Acetylcholine Receptors 23467
## Myoclonic Epilepsy Of Lafora 23467
## Myogenesis 23467
## N Glycan Antennae Elongation 23467
## N Glycan Antennae Elongation In The Medial Trans Golgi 23467
## N Glycan Trimming And Elongation In The Cis Golgi 23467
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 23467
## Na Cl Dependent Neurotransmitter Transporters 23467
## Nade Modulates Death Signalling 23467
## Ncam1 Interactions 23467
## Nectin Necl Trans Heterodimerization 23467
## Neddylation 23467
## Nef And Signal Transduction 23467
## Nef Mediated Cd4 Down Regulation 23467
## Nef Mediated Cd8 Down Regulation 23467
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 23467
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 23467
## Negative Epigenetic Regulation Of Rrna Expression 23467
## Negative Feedback Regulation Of Mapk Pathway 23467
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 23467
## Negative Regulation Of Fgfr1 Signaling 23467
## Negative Regulation Of Fgfr2 Signaling 23467
## Negative Regulation Of Fgfr3 Signaling 23467
## Negative Regulation Of Fgfr4 Signaling 23467
## Negative Regulation Of Flt3 23467
## Negative Regulation Of Mapk Pathway 23467
## Negative Regulation Of Met Activity 23467
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 23467
## Negative Regulation Of Notch4 Signaling 23467
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 23467
## Negative Regulators Of Ddx58 Ifih1 Signaling 23467
## Nephrin Family Interactions 23467
## Netrin 1 Signaling 23467
## Netrin Mediated Repulsion Signals 23467
## Neurexins And Neuroligins 23467
## Neurofascin Interactions 23467
## Neurotoxicity Of Clostridium Toxins 23467
## Neurotransmitter Clearance 23467
## Neurotransmitter Release Cycle 23467
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 23467
## Nf Kb Is Activated And Signals Survival 23467
## Ngf Independant Trka Activation 23467
## Nicotinamide Salvaging 23467
## Nicotinate Metabolism 23467
## Nitric Oxide Stimulates Guanylate Cyclase 23467
## Non Integrin Membrane Ecm Interactions 23467
## Noncanonical Activation Of Notch3 23467
## Nonhomologous End Joining Nhej 23467
## Nonsense Mediated Decay Nmd 23467
## Norepinephrine Neurotransmitter Release Cycle 23467
## Nostrin Mediated Enos Trafficking 23467
## Notch Hlh Transcription Pathway 23467
## Notch1 Intracellular Domain Regulates Transcription 23467
## Notch2 Activation And Transmission Of Signal To The Nucleus 23467
## Notch3 Intracellular Domain Regulates Transcription 23467
## Notch4 Activation And Transmission Of Signal To The Nucleus 23467
## Notch4 Intracellular Domain Regulates Transcription 23467
## Nr1h2 And Nr1h3 Mediated Signaling 23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 23467
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 23467
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 23467
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 23467
## Nrcam Interactions 23467
## Nrif Signals Cell Death From The Nucleus 23467
## Ns1 Mediated Effects On Host Pathways 23467
## Ntrk2 Activates Rac1 23467
## Nuclear Import Of Rev Protein 23467
## Nuclear Receptor Transcription Pathway 23467
## Nuclear Signaling By Erbb4 23467
## Nucleobase Biosynthesis 23467
## Nucleobase Catabolism 23467
## Nucleotide Excision Repair 23467
## Nucleotide Like Purinergic Receptors 23467
## Nucleotide Salvage 23467
## O Glycosylation Of Tsr Domain Containing Proteins 23467
## Oas Antiviral Response 23467
## Olfactory Signaling Pathway 23467
## Oncogene Induced Senescence 23467
## Oncogenic Mapk Signaling 23467
## Opsins 23467
## Orc1 Removal From Chromatin 23467
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 23467
## Organic Anion Transport 23467
## Organic Anion Transporters 23467
## Organic Cation Anion Zwitterion Transport 23467
## Organic Cation Transport 23467
## Other Interleukin Signaling 23467
## Other Semaphorin Interactions 23467
## P130cas Linkage To Mapk Signaling For Integrins 23467
## P2y Receptors 23467
## P38mapk Events 23467
## P75ntr Negatively Regulates Cell Cycle Via Sc1 23467
## P75ntr Recruits Signalling Complexes 23467
## P75ntr Signals Via Nf Kb 23467
## Passive Transport By Aquaporins 23467
## Pcna Dependent Long Patch Base Excision Repair 23467
## Pecam1 Interactions 23467
## Pentose Phosphate Pathway 23467
## Peptide Hormone Biosynthesis 23467
## Peptide Hormone Metabolism 23467
## Peroxisomal Lipid Metabolism 23467
## Peroxisomal Protein Import 23467
## Pexophagy 23467
## Phase 0 Rapid Depolarisation 23467
## Phase 1 Inactivation Of Fast Na Channels 23467
## Phase 2 Plateau Phase 23467
## Phase 3 Rapid Repolarisation 23467
## Phase I Functionalization Of Compounds 23467
## Phase Ii Conjugation Of Compounds 23467
## Phenylalanine And Tyrosine Metabolism 23467
## Phenylalanine Metabolism 23467
## Phosphate Bond Hydrolysis By Ntpdase Proteins 23467
## Phosphate Bond Hydrolysis By Nudt Proteins 23467
## Phospholipase C Mediated Cascade Fgfr2 23467
## Phospholipase C Mediated Cascade Fgfr4 23467
## Phospholipid Metabolism 23467
## Physiological Factors 23467
## Pi 3k Cascade Fgfr1 23467
## Pi 3k Cascade Fgfr2 23467
## Pi 3k Cascade Fgfr3 23467
## Pi 3k Cascade Fgfr4 23467
## Pi Metabolism 23467
## Pi3k Akt Activation 23467
## Pi3k Events In Erbb4 Signaling 23467
## Pi5p Regulates Tp53 Acetylation 23467
## Pink1 Prkn Mediated Mitophagy 23467
## Piwi Interacting Rna Pirna Biogenesis 23467
## Pka Activation In Glucagon Signalling 23467
## Pka Mediated Phosphorylation Of Key Metabolic Factors 23467
## Pkmts Methylate Histone Lysines 23467
## Plasma Lipoprotein Assembly 23467
## Plasma Lipoprotein Remodeling 23467
## Platelet Adhesion To Exposed Collagen 23467
## Platelet Aggregation Plug Formation 23467
## Platelet Calcium Homeostasis 23467
## Platelet Homeostasis 23467
## Platelet Sensitization By Ldl 23467
## Polb Dependent Long Patch Base Excision Repair 23467
## Polo Like Kinase Mediated Events 23467
## Polymerase Switching 23467
## Polymerase Switching On The C Strand Of The Telomere 23467
## Positive Epigenetic Regulation Of Rrna Expression 23467
## Post Chaperonin Tubulin Folding Pathway 23467
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 23467
## Postmitotic Nuclear Pore Complex Npc Reformation 23467
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 23467
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 23467
## Pre Notch Expression And Processing 23467
## Pre Notch Processing In Golgi 23467
## Pre Notch Processing In The Endoplasmic Reticulum 23467
## Pregnenolone Biosynthesis 23467
## Presynaptic Depolarization And Calcium Channel Opening 23467
## Presynaptic Function Of Kainate Receptors 23467
## Prevention Of Phagosomal Lysosomal Fusion 23467
## Processing And Activation Of Sumo 23467
## Processing Of Capped Intron Containing Pre Mrna 23467
## Processing Of Capped Intronless Pre Mrna 23467
## Processing Of Dna Double Strand Break Ends 23467
## Processing Of Intronless Pre Mrnas 23467
## Processing Of Smdt1 23467
## Processive Synthesis On The C Strand Of The Telomere 23467
## Processive Synthesis On The Lagging Strand 23467
## Prolactin Receptor Signaling 23467
## Prolonged Erk Activation Events 23467
## Propionyl Coa Catabolism 23467
## Prostacyclin Signalling Through Prostacyclin Receptor 23467
## Prostanoid Ligand Receptors 23467
## Protein Localization 23467
## Protein Methylation 23467
## Protein Protein Interactions At Synapses 23467
## Protein Repair 23467
## Protein Ubiquitination 23467
## Proton Coupled Monocarboxylate Transport 23467
## Pten Regulation 23467
## Ptk6 Expression 23467
## Ptk6 Regulates Cell Cycle 23467
## Ptk6 Regulates Proteins Involved In Rna Processing 23467
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 23467
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 23467
## Purine Catabolism 23467
## Purine Ribonucleoside Monophosphate Biosynthesis 23467
## Purine Salvage 23467
## Pyrimidine Catabolism 23467
## Pyrimidine Salvage 23467
## Pyruvate Metabolism 23467
## Pyruvate Metabolism And Citric Acid Tca Cycle 23467
## Ra Biosynthesis Pathway 23467
## Rab Gefs Exchange Gtp For Gdp On Rabs 23467
## Rab Geranylgeranylation 23467
## Rab Regulation Of Trafficking 23467
## Raf Activation 23467
## Rap1 Signalling 23467
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 23467
## Ras Processing 23467
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 23467
## Reactions Specific To The Complex N Glycan Synthesis Pathway 23467
## Receptor Mediated Mitophagy 23467
## Receptor Type Tyrosine Protein Phosphatases 23467
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 23467
## Recognition Of Dna Damage By Pcna Containing Replication Complex 23467
## Recycling Of Bile Acids And Salts 23467
## Recycling Of Eif2 Gdp 23467
## Recycling Pathway Of L1 23467
## Reduction Of Cytosolic Ca Levels 23467
## Reelin Signalling Pathway 23467
## Regulated Proteolysis Of P75ntr 23467
## Regulation By C Flip 23467
## Regulation Of Bach1 Activity 23467
## Regulation Of Beta Cell Development 23467
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 23467
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 23467
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 23467
## Regulation Of Expression Of Slits And Robos 23467
## Regulation Of Foxo Transcriptional Activity By Acetylation 23467
## Regulation Of Fzd By Ubiquitination 23467
## Regulation Of Gene Expression By Hypoxia Inducible Factor 23467
## Regulation Of Gene Expression In Beta Cells 23467
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 23467
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 23467
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 23467
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 23467
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 23467
## Regulation Of Hmox1 Expression And Activity 23467
## Regulation Of Hsf1 Mediated Heat Shock Response 23467
## Regulation Of Ifna Signaling 23467
## Regulation Of Ifng Signaling 23467
## Regulation Of Innate Immune Responses To Cytosolic Dna 23467
## Regulation Of Insulin Secretion 23467
## Regulation Of Kit Signaling 23467
## Regulation Of Lipid Metabolism By Pparalpha 23467
## Regulation Of Localization Of Foxo Transcription Factors 23467
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 23467
## Regulation Of Pten Gene Transcription 23467
## Regulation Of Pten Localization 23467
## Regulation Of Pten Mrna Translation 23467
## Regulation Of Pten Stability And Activity 23467
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 23467
## Regulation Of Ras By Gaps 23467
## Regulation Of Runx1 Expression And Activity 23467
## Regulation Of Runx3 Expression And Activity 23467
## Regulation Of Signaling By Cbl 23467
## Regulation Of Signaling By Nodal 23467
## Regulation Of Tp53 Activity Through Acetylation 23467
## Regulation Of Tp53 Activity Through Association With Co Factors 23467
## Regulation Of Tp53 Activity Through Methylation 23467
## Regulation Of Tp53 Activity Through Phosphorylation 23467
## Relaxin Receptors 23467
## Release Of Apoptotic Factors From The Mitochondria 23467
## Release Of Hh Np From The Secreting Cell 23467
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 23467
## Repression Of Wnt Target Genes 23467
## Reproduction 23467
## Resolution Of Abasic Sites Ap Sites 23467
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 23467
## Resolution Of D Loop Structures 23467
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 23467
## Respiratory Electron Transport 23467
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 23467
## Response Of Eif2ak1 Hri To Heme Deficiency 23467
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 23467
## Response Of Mtb To Phagocytosis 23467
## Response To Metal Ions 23467
## Ret Signaling 23467
## Retinoid Cycle Disease Events 23467
## Retrograde Neurotrophin Signalling 23467
## Reversible Hydration Of Carbon Dioxide 23467
## Rho Gtpase Effectors 23467
## Rho Gtpases Activate Cit 23467
## Rho Gtpases Activate Formins 23467
## Rho Gtpases Activate Iqgaps 23467
## Rho Gtpases Activate Ktn1 23467
## Rho Gtpases Activate Nadph Oxidases 23467
## Rho Gtpases Activate Paks 23467
## Rho Gtpases Activate Pkns 23467
## Rho Gtpases Activate Rhotekin And Rhophilins 23467
## Rho Gtpases Activate Rocks 23467
## Rho Gtpases Activate Wasps And Waves 23467
## Rhobtb Gtpase Cycle 23467
## Rhobtb1 Gtpase Cycle 23467
## Rhobtb2 Gtpase Cycle 23467
## Rhobtb3 Atpase Cycle 23467
## Rhot1 Gtpase Cycle 23467
## Rhou Gtpase Cycle 23467
## Rhov Gtpase Cycle 23467
## Rna Polymerase I Promoter Escape 23467
## Rna Polymerase I Transcription 23467
## Rna Polymerase I Transcription Initiation 23467
## Rna Polymerase I Transcription Termination 23467
## Rna Polymerase Ii Transcribes Snrna Genes 23467
## Rna Polymerase Ii Transcription Termination 23467
## Rna Polymerase Iii Chain Elongation 23467
## Rna Polymerase Iii Transcription 23467
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 23467
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 23467
## Rna Polymerase Iii Transcription Termination 23467
## Rnd1 Gtpase Cycle 23467
## Rnd2 Gtpase Cycle 23467
## Rnd3 Gtpase Cycle 23467
## Robo Receptors Bind Akap5 23467
## Role Of Abl In Robo Slit Signaling 23467
## Role Of Lat2 Ntal Lab On Calcium Mobilization 23467
## Role Of Phospholipids In Phagocytosis 23467
## Role Of Second Messengers In Netrin 1 Signaling 23467
## Rora Activates Gene Expression 23467
## Ros And Rns Production In Phagocytes 23467
## Rrna Modification In The Mitochondrion 23467
## Rrna Modification In The Nucleus And Cytosol 23467
## Rrna Processing 23467
## Rrna Processing In The Mitochondrion 23467
## Rsk Activation 23467
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 23467
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 23467
## Runx1 Regulates Estrogen Receptor Mediated Transcription 23467
## Runx1 Regulates Expression Of Components Of Tight Junctions 23467
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 23467
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 23467
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 23467
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 23467
## Runx3 Regulates Bcl2l11 Bim Transcription 23467
## Runx3 Regulates Cdkn1a Transcription 23467
## Runx3 Regulates Immune Response And Cell Migration 23467
## Runx3 Regulates Notch Signaling 23467
## Runx3 Regulates P14 Arf 23467
## Runx3 Regulates Wnt Signaling 23467
## Runx3 Regulates Yap1 Mediated Transcription 23467
## S Phase 23467
## Sars Cov 1 Genome Replication And Transcription 23467
## Sars Cov 1 Infection 23467
## Sars Cov 2 Infection 23467
## Scavenging By Class A Receptors 23467
## Scavenging By Class B Receptors 23467
## Scavenging By Class F Receptors 23467
## Scavenging Of Heme From Plasma 23467
## Scf Skp2 Mediated Degradation Of P27 P21 23467
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 23467
## Selective Autophagy 23467
## Selenoamino Acid Metabolism 23467
## Sema3a Pak Dependent Axon Repulsion 23467
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 23467
## Sema4d In Semaphorin Signaling 23467
## Sema4d Induced Cell Migration And Growth Cone Collapse 23467
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 23467
## Semaphorin Interactions 23467
## Sensing Of Dna Double Strand Breaks 23467
## Sensory Perception 23467
## Sensory Processing Of Sound 23467
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 23467
## Separation Of Sister Chromatids 23467
## Serine Biosynthesis 23467
## Serotonin And Melatonin Biosynthesis 23467
## Serotonin Neurotransmitter Release Cycle 23467
## Serotonin Receptors 23467
## Shc Mediated Cascade Fgfr1 23467
## Shc Mediated Cascade Fgfr3 23467
## Shc Mediated Cascade Fgfr4 23467
## Shc Related Events Triggered By Igf1r 23467
## Shc1 Events In Erbb4 Signaling 23467
## Signal Amplification 23467
## Signal Attenuation 23467
## Signal Regulatory Protein Family Interactions 23467
## Signaling By Activin 23467
## Signaling By Bmp 23467
## Signaling By Braf And Raf Fusions 23467
## Signaling By Ctnnb1 Phospho Site Mutants 23467
## Signaling By Erythropoietin 23467
## Signaling By Fgfr 23467
## Signaling By Fgfr1 23467
## Signaling By Fgfr2 23467
## Signaling By Fgfr2 Iiia Tm 23467
## Signaling By Fgfr2 In Disease 23467
## Signaling By Fgfr3 23467
## Signaling By Fgfr3 Fusions In Cancer 23467
## Signaling By Fgfr4 23467
## Signaling By Fgfr4 In Disease 23467
## Signaling By Flt3 Fusion Proteins 23467
## Signaling By Flt3 Itd And Tkd Mutants 23467
## Signaling By Hedgehog 23467
## Signaling By Hippo 23467
## Signaling By Lrp5 Mutants 23467
## Signaling By Mapk Mutants 23467
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 23467
## Signaling By Moderate Kinase Activity Braf Mutants 23467
## Signaling By Mras Complex Mutants 23467
## Signaling By Mst1 23467
## Signaling By Nodal 23467
## Signaling By Notch1 23467
## Signaling By Notch1 Hd Domain Mutants In Cancer 23467
## Signaling By Notch1 Pest Domain Mutants In Cancer 23467
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 23467
## Signaling By Notch4 23467
## Signaling By Ntrk2 Trkb 23467
## Signaling By Ntrk3 Trkc 23467
## Signaling By Retinoic Acid 23467
## Signaling By Rnf43 Mutants 23467
## Signaling By Robo Receptors 23467
## Signaling By Tgf Beta Receptor Complex In Cancer 23467
## Signaling By Wnt In Cancer 23467
## Signalling To Erks 23467
## Signalling To P38 Via Rit And Rin 23467
## Signalling To Ras 23467
## Sirt1 Negatively Regulates Rrna Expression 23467
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 23467
## Slc Mediated Transmembrane Transport 23467
## Slc Transporter Disorders 23467
## Smac Xiap Regulated Apoptotic Response 23467
## Small Interfering Rna Sirna Biogenesis 23467
## Smooth Muscle Contraction 23467
## Snrnp Assembly 23467
## Sodium Calcium Exchangers 23467
## Sodium Coupled Phosphate Cotransporters 23467
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 23467
## Sodium Proton Exchangers 23467
## Sos Mediated Signalling 23467
## Sperm Motility And Taxes 23467
## Sphingolipid De Novo Biosynthesis 23467
## Sphingolipid Metabolism 23467
## Spry Regulation Of Fgf Signaling 23467
## Srp Dependent Cotranslational Protein Targeting To Membrane 23467
## Stabilization Of P53 23467
## Stat5 Activation 23467
## Stat5 Activation Downstream Of Flt3 Itd Mutants 23467
## Striated Muscle Contraction 23467
## Sulfide Oxidation To Sulfate 23467
## Sulfur Amino Acid Metabolism 23467
## Sumo Is Conjugated To E1 Uba2 Sae1 23467
## Sumo Is Proteolytically Processed 23467
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 23467
## Sumoylation Of Chromatin Organization Proteins 23467
## Sumoylation Of Dna Damage Response And Repair Proteins 23467
## Sumoylation Of Dna Replication Proteins 23467
## Sumoylation Of Immune Response Proteins 23467
## Sumoylation Of Intracellular Receptors 23467
## Sumoylation Of Rna Binding Proteins 23467
## Sumoylation Of Sumoylation Proteins 23467
## Sumoylation Of Transcription Factors 23467
## Sumoylation Of Ubiquitinylation Proteins 23467
## Suppression Of Apoptosis 23467
## Suppression Of Phagosomal Maturation 23467
## Surfactant Metabolism 23467
## Switching Of Origins To A Post Replicative State 23467
## Synaptic Adhesion Like Molecules 23467
## Syndecan Interactions 23467
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 23467
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 23467
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 23467
## Synthesis Of 5 Eicosatetraenoic Acids 23467
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 23467
## Synthesis Of Bile Acids And Bile Salts 23467
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 23467
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 23467
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 23467
## Synthesis Of Diphthamide Eef2 23467
## Synthesis Of Dolichyl Phosphate 23467
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 23467
## Synthesis Of Gdp Mannose 23467
## Synthesis Of Glycosylphosphatidylinositol Gpi 23467
## Synthesis Of Ip2 Ip And Ins In The Cytosol 23467
## Synthesis Of Ip3 And Ip4 In The Cytosol 23467
## Synthesis Of Ketone Bodies 23467
## Synthesis Of Leukotrienes Lt And Eoxins Ex 23467
## Synthesis Of Lipoxins Lx 23467
## Synthesis Of Pa 23467
## Synthesis Of Pc 23467
## Synthesis Of Pe 23467
## Synthesis Of Pg 23467
## Synthesis Of Pi 23467
## Synthesis Of Pips At The Early Endosome Membrane 23467
## Synthesis Of Pips At The Er Membrane 23467
## Synthesis Of Pips At The Golgi Membrane 23467
## Synthesis Of Pips At The Late Endosome Membrane 23467
## Synthesis Of Pips At The Plasma Membrane 23467
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 23467
## Synthesis Of Pyrophosphates In The Cytosol 23467
## Synthesis Of Udp N Acetyl Glucosamine 23467
## Synthesis Of Very Long Chain Fatty Acyl Coas 23467
## Synthesis Of Wybutosine At G37 Of Trna Phe 23467
## Synthesis Secretion And Deacylation Of Ghrelin 23467
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 23467
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 23467
## Tachykinin Receptors Bind Tachykinins 23467
## Tbc Rabgaps 23467
## Telomere C Strand Lagging Strand Synthesis 23467
## Telomere C Strand Synthesis Initiation 23467
## Telomere Extension By Telomerase 23467
## Telomere Maintenance 23467
## Terminal Pathway Of Complement 23467
## Termination Of Translesion Dna Synthesis 23467
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 23467
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 23467
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 23467
## Tgf Beta Receptor Signaling Activates Smads 23467
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 23467
## The Activation Of Arylsulfatases 23467
## The Canonical Retinoid Cycle In Rods Twilight Vision 23467
## The Citric Acid Tca Cycle And Respiratory Electron Transport 23467
## The Fatty Acid Cycling Model 23467
## The Phototransduction Cascade 23467
## The Retinoid Cycle In Cones Daylight Vision 23467
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 23467
## Thrombin Signalling Through Proteinase Activated Receptors Pars 23467
## Thromboxane Signalling Through Tp Receptor 23467
## Thyroxine Biosynthesis 23467
## Tie2 Signaling 23467
## Tight Junction Interactions 23467
## Tnfr1 Induced Proapoptotic Signaling 23467
## Tnfr1 Mediated Ceramide Production 23467
## Toxicity Of Botulinum Toxin Type D Botd 23467
## Tp53 Regulates Metabolic Genes 23467
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 23467
## Tp53 Regulates Transcription Of Death Receptors And Ligands 23467
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 23467
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 23467
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 23467
## Traf3 Dependent Irf Activation Pathway 23467
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 23467
## Traf6 Mediated Irf7 Activation 23467
## Trafficking Of Ampa Receptors 23467
## Trafficking Of Glur2 Containing Ampa Receptors 23467
## Trafficking Of Myristoylated Proteins To The Cilium 23467
## Trail Signaling 23467
## Trans Golgi Network Vesicle Budding 23467
## Transcription Coupled Nucleotide Excision Repair Tc Ner 23467
## Transcription Of E2f Targets Under Negative Control By Dream Complex 23467
## Transcription Of The Hiv Genome 23467
## Transcriptional Regulation By E2f6 23467
## Transcriptional Regulation By Runx3 23467
## Transcriptional Regulation By Small Rnas 23467
## Transcriptional Regulation Of Testis Differentiation 23467
## Transcriptional Regulation Of White Adipocyte Differentiation 23467
## Transferrin Endocytosis And Recycling 23467
## Translation 23467
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 23467
## Translation Of Sars Cov 1 Structural Proteins 23467
## Translation Of Sars Cov 2 Structural Proteins 23467
## Translesion Synthesis By Polh 23467
## Translesion Synthesis By Polk 23467
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 23467
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 23467
## Transport And Synthesis Of Paps 23467
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 23467
## Transport Of Connexons To The Plasma Membrane 23467
## Transport Of Fatty Acids 23467
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 23467
## Transport Of Mature Mrnas Derived From Intronless Transcripts 23467
## Transport Of Mature Transcript To Cytoplasm 23467
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 23467
## Transport Of Nucleotide Sugars 23467
## Transport Of Organic Anions 23467
## Transport Of The Slbp Dependant Mature Mrna 23467
## Transport Of Vitamins Nucleosides And Related Molecules 23467
## Trif Mediated Programmed Cell Death 23467
## Triglyceride Biosynthesis 23467
## Triglyceride Catabolism 23467
## Triglyceride Metabolism 23467
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 23467
## Trna Aminoacylation 23467
## Trna Modification In The Mitochondrion 23467
## Trna Modification In The Nucleus And Cytosol 23467
## Trna Processing 23467
## Trna Processing In The Mitochondrion 23467
## Trna Processing In The Nucleus 23467
## Trp Channels 23467
## Tryptophan Catabolism 23467
## Type I Hemidesmosome Assembly 23467
## Tyrosine Catabolism 23467
## Tysnd1 Cleaves Peroxisomal Proteins 23467
## Ubiquinol Biosynthesis 23467
## Uch Proteinases 23467
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 23467
## Unwinding Of Dna 23467
## Uptake And Actions Of Bacterial Toxins 23467
## Uptake And Function Of Anthrax Toxins 23467
## Uptake And Function Of Diphtheria Toxin 23467
## Urea Cycle 23467
## Vasopressin Like Receptors 23467
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 23467
## Vegf Ligand Receptor Interactions 23467
## Vegfr2 Mediated Cell Proliferation 23467
## Viral Messenger Rna Synthesis 23467
## Visual Phototransduction 23467
## Vitamin B1 Thiamin Metabolism 23467
## Vitamin B2 Riboflavin Metabolism 23467
## Vitamin B5 Pantothenate Metabolism 23467
## Vitamin C Ascorbate Metabolism 23467
## Vitamin D Calciferol Metabolism 23467
## Vitamins 23467
## Vldl Assembly 23467
## Vldl Clearance 23467
## Voltage Gated Potassium Channels 23467
## Vxpx Cargo Targeting To Cilium 23467
## Wax And Plasmalogen Biosynthesis 23467
## Wnt Mediated Activation Of Dvl 23467
## Xenobiotics 23467
## Zinc Efflux And Compartmentalization By The Slc30 Family 23467
## Zinc Influx Into Cells By The Slc39 Gene Family 23467
## Zinc Transporters 23467
## hits
## Cytokine Signaling In Immune System BIRC3,CASP1,CCL2,CCL20,CD40,CD70,CD80,CD86,CREB1,CSF2,CXCL10,CXCL8,FOS,HLA-B,HLA-DQB1,HMGB1,ICAM1,IL10,IL17A,IL18,IL1B,IL33,IL6,MIF,MMP3,MMP9,STAT3,TNFRSF11B,TNFSF11
## Interleukin 10 Signaling CCL2,CCL20,CD80,CD86,CSF2,CXCL10,CXCL8,ICAM1,IL10,IL18,IL1B,IL6,STAT3
## Signaling By Interleukins CASP1,CCL2,CCL20,CD80,CD86,CREB1,CSF2,CXCL10,CXCL8,FOS,HMGB1,ICAM1,IL10,IL17A,IL18,IL1B,IL33,IL6,MIF,MMP3,MMP9,STAT3
## Innate Immune System AIM2,BIRC3,C4B,CASP1,CD19,CD55,CD59,CD63,CEACAM8,CREB1,CST3,DEFB4A,FOS,HLA-B,HMGB1,IFI16,IL1B,MIF,MMP8,MMP9,MUC5B,NLRP3,SLPI,TLR3,TLR9,TREM1,VAV2
## Interleukin 4 And Interleukin 13 Signaling CCL2,CXCL8,FOS,ICAM1,IL10,IL17A,IL18,IL1B,IL6,MMP3,MMP9,STAT3
## Chemokine Receptors Bind Chemokines CCL2,CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL6,CXCL8
## Signaling By Gpcr CCL2,CCL20,CCL25,CCR9,CD55,CREB1,CXCL10,CXCL11,CXCL6,CXCL8,EGFR,MMP3,VAV2,WNT5A
## Peptide Ligand Binding Receptors CCL2,CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL6,CXCL8
## Neutrophil Degranulation CD55,CD59,CD63,CEACAM8,CST3,HLA-B,HMGB1,MIF,MMP8,MMP9,SLPI
## Leishmania Infection CASP1,CREB1,IL10,IL18,IL1B,IL6,NLRP3,VAV2,WNT5A
## Regulated Necrosis BIRC3,CASP1,HMGB1,IL18,IL1B
## Purinergic Signaling In Leishmaniasis Infection CASP1,IL18,IL1B,NLRP3
## Pyroptosis CASP1,HMGB1,IL18,IL1B
## Gpcr Ligand Binding CCL2,CCL20,CCL25,CCR9,CD55,CXCL10,CXCL11,CXCL6,CXCL8,WNT5A
## Interleukin 1 Processing CASP1,IL18,IL1B
## Extra Nuclear Estrogen Signaling CREB1,EGFR,FOS,MMP3,MMP9
## Interleukin 1 Family Signaling CASP1,HMGB1,IL18,IL1B,IL33,STAT3
## G Alpha I Signalling Events CCL20,CCL25,CCR9,CREB1,CXCL10,CXCL11,CXCL6,CXCL8
## Adaptive Immune System CD19,CD40,CD80,CD86,FCGR2B,HLA-B,HLA-DQB1,HMGB1,ICAM1,PDCD1LG2,TREM1,VAMP3
## Class A 1 Rhodopsin Like Receptors CCL2,CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL6,CXCL8
## Toll Like Receptor Cascades BIRC3,CREB1,FOS,HMGB1,TLR3,TLR9
## Tnfr2 Non Canonical Nf Kb Pathway BIRC3,CD40,CD70,TNFRSF11B,TNFSF11
## Pi3k Akt Signaling In Cancer CD19,CD80,CD86,CREB1,EGFR
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway BIRC3,CD40,TNFSF11
## Gastrin Creb Signalling Pathway Via Pkc And Mapk CREB1,EGFR,MMP3
## Negative Regulation Of The Pi3k Akt Network CD19,CD80,CD86,EGFR,IL33
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways AIM2,BIRC3,CASP1,NLRP3
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell CD19,CD40,FCGR2B,HLA-B,ICAM1,TREM1
## Inflammasomes AIM2,CASP1,NLRP3
## Programmed Cell Death BIRC3,CASP1,HMGB1,IL18,IL1B,STAT3
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling CREB1,EGFR,FOS
## Costimulation By The Cd28 Family CD80,CD86,HLA-DQB1,PDCD1LG2
## Constitutive Signaling By Aberrant Pi3k In Cancer CD19,CD80,CD86,EGFR
## Tnfs Bind Their Physiological Receptors CD70,TNFRSF11B,TNFSF11
## Infectious Disease CASP1,CREB1,EGFR,IL10,IL18,IL1B,IL6,NLRP3,TLR9,VAV2,WNT5A
## Activation Of Matrix Metalloproteinases MMP3,MMP8,MMP9
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells CSF2,RUNX2
## Toll Like Receptor 9 Tlr9 Cascade CREB1,FOS,HMGB1,TLR9
## Myd88 Independent Tlr4 Cascade BIRC3,CREB1,FOS,HMGB1
## Cd163 Mediating An Anti Inflammatory Response IL10,IL6
## Egfr Transactivation By Gastrin EGFR,MMP3
## Extracellular Matrix Organization CEACAM8,ICAM1,MMP3,MMP8,MMP9,SERPINE1
## Dap12 Interactions HLA-B,TREM1,VAV2
## Intracellular Signaling By Second Messengers CD19,CD80,CD86,CREB1,EGFR,IL33
## Mapk3 Erk1 Activation CDK1,IL6
## Senescence Associated Secretory Phenotype Sasp CXCL8,FOS,IL6,STAT3
## Post Translational Protein Modification BIRC3,CD55,CD59,CDK1,CST3,DNMT3A,IL33,IL6,MUC5B,NANP,NLRP3,PCSK9,UHRF2
## Complement Cascade C4B,CD19,CD55,CD59
## Interleukin 6 Signaling IL6,STAT3
## Cd28 Dependent Vav1 Pathway CD80,CD86
## Esr Mediated Signaling CREB1,EGFR,FOS,MMP3,MMP9
## Trafficking And Processing Of Endosomal Tlr TLR3,TLR9
## Interleukin 12 Family Signaling IL10,MIF,STAT3
## Signaling By Receptor Tyrosine Kinases CREB1,EGFR,FOS,MMP9,STAT3,TLR9,VAV2
## Collagen Degradation MMP3,MMP8,MMP9
## The Nlrp3 Inflammasome CASP1,NLRP3
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers CD19,CD80,CD86,CREB1,EGFR,STAT3
## Interleukin 17 Signaling CREB1,FOS,IL17A
## Ticam1 Rip1 Mediated Ikk Complex Recruitment BIRC3,TLR3
## Ctla4 Inhibitory Signaling CD80,CD86
## Interleukin 37 Signaling CASP1,STAT3
## Signal Transduction By L1 EGFR,VAV2
## Cd28 Dependent Pi3k Akt Signaling CD80,CD86
## Raf Independent Mapk1 3 Activation CDK1,IL6
## Signaling By Nuclear Receptors CREB1,EGFR,FOS,MMP3,MMP9
## Interleukin 6 Family Signaling IL6,STAT3
## Interferon Gamma Signaling HLA-B,HLA-DQB1,ICAM1
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress CCL2,CXCL8
## Cellular Senescence CXCL8,FOS,IL6,STAT3
## Pd 1 Signaling HLA-DQB1,PDCD1LG2
## Toll Like Receptor Tlr1 Tlr2 Cascade CREB1,FOS,HMGB1
## Diseases Of Immune System HMGB1,TLR3
## Mapk Targets Nuclear Events Mediated By Map Kinases CREB1,FOS
## Cargo Recognition For Clathrin Mediated Endocytosis EGFR,VAMP3,WNT5A
## Antigen Processing Cross Presentation HLA-B,HMGB1,VAMP3
## Perk Regulates Gene Expression CCL2,CXCL8
## Cd28 Co Stimulation CD80,CD86
## Nod1 2 Signaling Pathway BIRC3,CASP1
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation IL10,MIF
## Ngf Stimulated Transcription CREB1,FOS
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps CST3,IL6,PCSK9
## Signaling By Scf Kit MMP9,STAT3
## Interleukin 2 Family Signaling CSF2,STAT3
## Signaling By Ntrks CREB1,FOS,STAT3
## Interleukin 12 Signaling IL10,MIF
## Degradation Of The Extracellular Matrix MMP3,MMP8,MMP9
## Death Receptor Signalling BIRC3,OMG,VAV2
## Clathrin Mediated Endocytosis EGFR,VAMP3,WNT5A
## Eph Ephrin Mediated Repulsion Of Cells MMP9,VAV2
## Signaling By Ptk6 EGFR,STAT3
## Deubiquitination BIRC3,CDK1,IL33,NLRP3
## G2 M Dna Replication Checkpoint CDK1
## Mecp2 Regulates Transcription Factors CREB1
## Runx2 Regulates Chondrocyte Maturation RUNX2
## Assembly Of Collagen Fibrils And Other Multimeric Structures MMP3,MMP9
## Cytosolic Sensors Of Pathogen Associated Dna IFI16,TLR3
## Nuclear Events Kinase And Transcription Factor Activation CREB1,FOS
## Clec7a Inflammasome Pathway IL1B
## Fibronectin Matrix Formation CEACAM8
## Hemostasis CD63,CEACAM8,MIF,SERPINE1,TREM1,VAV2
## Mapk Family Signaling Cascades CDK1,CSF2,EGFR,IL6
## Phosphorylation Of Emi1 CDK1
## Ptk6 Promotes Hif1a Stabilization EGFR
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death TLR3
## Circadian Clock CREB1,SERPINE1
## Rhob Gtpase Cycle VAMP3,VAV2
## Activation Of Nima Kinases Nek9 Nek6 Nek7 CDK1
## Creb Phosphorylation CREB1
## Rhoc Gtpase Cycle VAMP3,VAV2
## Rhog Gtpase Cycle VAMP3,VAV2
## Cell Surface Interactions At The Vascular Wall CEACAM8,MIF,TREM1
## Cellular Responses To External Stimuli CREB1,CXCL8,FOS,IL6,NLRP3,STAT3
## Activation Of C3 And C5 C4B
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde CREB1
## Interferon Signaling HLA-B,HLA-DQB1,ICAM1
## Interleukin 18 Signaling IL18
## Mecp2 Regulates Transcription Of Neuronal Ligands CREB1
## Runx2 Regulates Genes Involved In Cell Migration RUNX2
## Rna Polymerase Ii Transcription CASP1,CDK1,CREB1,CSF2,EGFR,FOS,IL6,RUNX2,SERPINE1
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members STAT3
## E2f Enabled Inhibition Of Pre Replication Complex Formation CDK1
## Egfr Interacts With Phospholipase C Gamma EGFR
## Interleukin 23 Signaling STAT3
## Interleukin 9 Signaling STAT3
## Mapk1 Erk2 Activation IL6
## Fceri Mediated Mapk Activation FOS,VAV2
## G Alpha Q Signalling Events CREB1,EGFR,MMP3
## Activation Of The Ap 1 Family Of Transcription Factors FOS
## Akt Phosphorylates Targets In The Nucleus CREB1
## Camk Iv Mediated Phosphorylation Of Creb CREB1
## Interleukin 21 Signaling STAT3
## Mastl Facilitates Mitotic Progression CDK1
## P75ntr Regulates Axonogenesis OMG
## Rac2 Gtpase Cycle VAMP3,VAV2
## Anti Inflammatory Response Favouring Leishmania Parasite Infection CREB1,IL10,IL6
## Collagen Formation MMP3,MMP9
## Transcriptional Regulation Of Granulopoiesis CREB1,STAT3
## Eph Ephrin Signaling MMP9,VAV2
## Unfolded Protein Response Upr CCL2,CXCL8
## Condensation Of Prometaphase Chromosomes CDK1
## Endosomal Vacuolar Pathway HLA-B
## Interleukin 27 Signaling STAT3
## Signaling By Leptin STAT3
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex TLR3
## Class B 2 Secretin Family Receptors CD55,WNT5A
## Fcgr3a Mediated Il10 Synthesis CREB1,IL10
## Rac3 Gtpase Cycle VAMP3,VAV2
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase CREB1
## Interleukin 35 Signalling STAT3
## Killing Mechanisms WNT5A
## Notch2 Intracellular Domain Regulates Transcription CREB1
## P75 Ntr Receptor Mediated Signalling OMG,VAV2
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants STAT3
## Tandem Pore Domain Potassium Channels KCNK1
## Ticam1 Dependent Activation Of Irf3 Irf7 TLR3
## Tp53 Regulates Transcription Of Caspase Activators And Caspases CASP1
## Vldlr Internalisation And Degradation PCSK9
## Advanced Glycosylation Endproduct Receptor Signaling HMGB1
## Apoptosis Induced Dna Fragmentation HMGB1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex CDK1
## Copi Mediated Anterograde Transport CD55,CD59
## Dissolution Of Fibrin Clot SERPINE1
## Erbb2 Activates Ptk6 Signaling EGFR
## Interleukin 1 Signaling HMGB1,IL1B
## Irf3 Mediated Induction Of Type I Ifn IFI16
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation STAT3
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling TLR9
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 WNT5A
## Golgi Cisternae Pericentriolar Stack Reorganization CDK1
## Interleukin 15 Signaling STAT3
## Shc1 Events In Egfr Signaling EGFR
## Constitutive Signaling By Egfrviii EGFR
## Depolymerisation Of The Nuclear Lamina CDK1
## Erbb2 Regulates Cell Motility EGFR
## Membrane Trafficking CD55,CD59,EGFR,VAMP3,WNT5A
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists WNT5A
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors EGFR
## Wnt5a Dependent Internalization Of Fzd4 WNT5A
## Yap1 And Wwtr1 Taz Stimulated Gene Expression RUNX2
## Platelet Activation Signaling And Aggregation CD63,SERPINE1,VAV2
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc MUC5B
## Grb2 Events In Erbb2 Signaling EGFR
## Pi3k Events In Erbb2 Signaling EGFR
## Signaling By Erbb2 Ecd Mutants EGFR
## Sting Mediated Induction Of Host Immune Responses IFI16
## Sumoylation Of Dna Methylation Proteins DNMT3A
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 CDK1
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps MUC5B
## Gab1 Signalosome EGFR
## Rip Mediated Nfkb Activation Via Zbp1 TLR3
## Transcriptional Regulation By Runx2 CDK1,RUNX2
## Irak4 Deficiency Tlr2 4 HMGB1
## L1cam Interactions EGFR,VAV2
## Mecp2 Regulates Neuronal Receptors And Channels CREB1
## Signaling By Cytosolic Fgfr1 Fusion Mutants STAT3
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest CDK1
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants EGFR
## Cytoprotection By Hmox1 NLRP3,STAT3
## Initiation Of Nuclear Envelope Ne Reformation CDK1
## Ldl Clearance PCSK9
## Phase 4 Resting Membrane Potential KCNK1
## Phosphorylation Of The Apc C CDK1
## Pka Mediated Phosphorylation Of Creb CREB1
## Signaling By Kit In Disease STAT3
## Signaling By Pdgfr In Disease STAT3
## Regulation Of Tlr By Endogenous Ligand HMGB1
## Zbp1 Dai Mediated Induction Of Type I Ifns TLR3
## Response To Elevated Platelet Cytosolic Ca2 CD63,SERPINE1
## Adora2b Mediated Anti Inflammatory Cytokines Production CREB1,IL6
## E2f Mediated Regulation Of Dna Replication CDK1
## Shc1 Events In Erbb2 Signaling EGFR
## Hcmv Early Events CREB1,EGFR
## Ikk Complex Recruitment Mediated By Rip1 BIRC3
## Termination Of O Glycan Biosynthesis MUC5B
## Asparagine N Linked Glycosylation CD55,CD59,NANP
## C Type Lectin Receptors Clrs IL1B,MUC5B
## Apc C Cdc20 Mediated Degradation Of Cyclin B CDK1
## Growth Hormone Receptor Signaling STAT3
## Runx2 Regulates Osteoblast Differentiation RUNX2
## Traf6 Mediated Nf Kb Activation HMGB1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc HLA-B
## Cyclin A B1 B2 Associated Events During G2 M Transition CDK1
## Inactivation Of Csf3 G Csf Signaling STAT3
## Notch3 Activation And Transmission Of Signal To The Nucleus EGFR
## Signaling By Egfr In Cancer EGFR
## Vesicle Mediated Transport CD55,CD59,EGFR,VAMP3,WNT5A
## Constitutive Signaling By Akt1 E17k In Cancer CREB1
## Dectin 2 Family MUC5B
## Interleukin 20 Family Signaling STAT3
## Signaling By Erbb2 In Cancer EGFR
## Wnt Ligand Biogenesis And Trafficking WNT5A
## Rhoa Gtpase Cycle VAMP3,VAV2
## Bmal1 Clock Npas2 Activates Circadian Gene Expression SERPINE1
## G0 And Early G1 CDK1
## Interleukin Receptor Shc Signaling CSF2
## Vegfr2 Mediated Vascular Permeability VAV2
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling CREB1
## Er To Golgi Anterograde Transport CD55,CD59
## Dap12 Signaling VAV2
## Downregulation Of Erbb2 Signaling EGFR
## Downstream Signal Transduction STAT3
## G1 S Specific Transcription CDK1
## Ripk1 Mediated Regulated Necrosis BIRC3
## Cdc42 Gtpase Cycle VAMP3,VAV2
## Cellular Response To Chemical Stress NLRP3,STAT3
## Signaling By Csf3 G Csf STAT3
## Tnfr1 Induced Nfkappab Signaling Pathway BIRC3
## Hcmv Infection CREB1,EGFR
## Egfr Downregulation EGFR
## Fgfr1 Mutant Receptor Activation STAT3
## Runx2 Regulates Bone Development RUNX2
## Transcriptional Regulation Of Pluripotent Stem Cells STAT3
## Regulation Of Mecp2 Expression And Activity CREB1
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription SERPINE1
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex HMGB1
## Cargo Concentration In The Er CD59
## Plasma Lipoprotein Clearance PCSK9
## Sialic Acid Metabolism NANP
## Signaling By Notch2 CREB1
## Gpvi Mediated Activation Cascade VAV2
## Regulation Of Tnfr1 Signaling BIRC3
## Transcriptional Regulation By Tp53 CASP1,CDK1,FOS
## Apoptosis HMGB1,STAT3
## Association Of Tric Cct With Target Proteins During Biosynthesis STAT3
## Ca Dependent Events CREB1
## Class I Mhc Mediated Antigen Processing Presentation HLA-B,HMGB1,VAMP3
## Fc Epsilon Receptor Fceri Signaling FOS,VAV2
## Generation Of Second Messenger Molecules HLA-DQB1
## Interleukin 7 Signaling STAT3
## Metalloprotease Dubs NLRP3
## Nervous System Development CREB1,EGFR,MMP9,VAV2
## Nuclear Pore Complex Npc Disassembly CDK1
## Ovarian Tumor Domain Proteases CDK1
## Rac1 Gtpase Cycle VAMP3,VAV2
## Regulation Of Tp53 Expression And Degradation CDK1
## Rhoh Gtpase Cycle VAMP3
## Signaling By Fgfr1 In Disease STAT3
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors EGFR
## Transport To The Golgi And Subsequent Modification CD55,CD59
## Beta Defensins DEFB4A
## Dag And Ip3 Signaling CREB1
## Rhof Gtpase Cycle VAMP3
## Sumoylation DNMT3A,UHRF2
## Transcriptional Regulation By Ventx IL6
## Sumoylation Of Transcription Cofactors UHRF2
## Tnf Signaling BIRC3
## Tp53 Regulates Transcription Of Cell Death Genes CASP1
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer SERPINE1
## Heme Signaling CREB1
## Interleukin 3 Interleukin 5 And Gm Csf Signaling CSF2
## Irs Mediated Signalling TLR9
## Retrograde Transport At The Trans Golgi Network VAMP3
## Signaling By Egfr EGFR
## Signaling By Erbb2 EGFR
## Signaling By Notch3 EGFR
## Tp53 Regulates Transcription Of Cell Cycle Genes CDK1
## Apoptotic Execution Phase HMGB1
## Defensins DEFB4A
## Nuclear Envelope Breakdown CDK1
## Rhod Gtpase Cycle VAMP3
## Ub Specific Processing Proteases BIRC3,IL33
## G Protein Mediated Events CREB1
## Insulin Receptor Signalling Cascade TLR9
## Intrinsic Pathway For Apoptosis STAT3
## Rhoj Gtpase Cycle VAMP3
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r TLR9
## Transcriptional Activation Of Mitochondrial Biogenesis CREB1
## Nrage Signals Death Through Jnk VAV2
## Rhoq Gtpase Cycle VAMP3
## Signaling By Erbb4 EGFR
## Signaling By Pdgf STAT3
## Transcriptional Regulation By Runx1 CSF2,RUNX2
## Asymmetric Localization Of Pcp Proteins WNT5A
## Ca2 Pathway WNT5A
## Dna Methylation DNMT3A
## Ncam Signaling For Neurite Out Growth CREB1
## O Linked Glycosylation Of Mucins MUC5B
## Signaling By Fgfr In Disease STAT3
## Signaling By Notch CREB1,EGFR
## Synthesis Of Substrates In N Glycan Biosythesis NANP
## Tp53 Regulates Transcription Of Dna Repair Genes FOS
## Transcriptional Regulation By Mecp2 CREB1
## Copii Mediated Vesicle Transport CD59
## Diseases Associated With O Glycosylation Of Proteins MUC5B
## Aurka Activation By Tpx2 CDK1
## Interferon Alpha Beta Signaling HLA-B
## Plasma Lipoprotein Assembly Remodeling And Clearance PCSK9
## Prc2 Methylates Histones And Dna DNMT3A
## Regulation Of Runx2 Expression And Activity RUNX2
## Signaling By Tgf Beta Receptor Complex SERPINE1
## Cell Death Signalling Via Nrage Nrif And Nade VAV2
## Condensation Of Prophase Chromosomes CDK1
## Ecm Proteoglycans SERPINE1
## Nuclear Envelope Ne Reassembly CDK1
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein NANP
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta HMGB1
## G Alpha 12 13 Signalling Events VAV2
## Initial Triggering Of Complement C4B
## Potential Therapeutics For Sars TLR9
## Recruitment Of Mitotic Centrosome Proteins And Complexes CDK1
## Rmts Methylate Histone Arginines DNMT3A
## Signaling By Insulin Receptor TLR9
## Signaling By Met STAT3
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint CDK1
## Integrin Cell Surface Interactions ICAM1
## Organelle Biogenesis And Maintenance CDK1,CREB1
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers CD19
## Apc C Mediated Degradation Of Cell Cycle Proteins CDK1
## Fceri Mediated Ca 2 Mobilization VAV2
## Opioid Signalling CREB1
## Regulation Of Plk1 Activity At G2 M Transition CDK1
## Activation Of Nmda Receptors And Postsynaptic Events CREB1
## Mapk6 Mapk4 Signaling CDK1
## Mitochondrial Biogenesis CREB1
## Pcp Ce Pathway WNT5A
## Anchoring Of The Basal Body To The Plasma Membrane CDK1
## Antimicrobial Peptides DEFB4A
## G2 M Dna Damage Checkpoint CDK1
## Protein Folding STAT3
## Recruitment Of Numa To Mitotic Centrosomes CDK1
## Clec7a Dectin 1 Signaling IL1B
## Diseases Of Programmed Cell Death DNMT3A
## Signaling By Tgfb Family Members SERPINE1
## Developmental Biology CREB1,EGFR,MMP9,STAT3,VAV2
## Potassium Channels KCNK1
## Signaling By Vegf VAV2
## Stimuli Sensing Channels BEST2
## Amyloid Fiber Formation CST3
## O Linked Glycosylation MUC5B
## Parasite Infection VAV2
## Tcr Signaling HLA-DQB1
## Cardiac Conduction KCNK1
## Mhc Class Ii Antigen Presentation HLA-DQB1
## Oxidative Stress Induced Senescence FOS
## Resolution Of Sister Chromatid Cohesion CDK1
## Diseases Of Glycosylation MUC5B
## Fcgamma Receptor Fcgr Dependent Phagocytosis VAV2
## Mitotic Prophase CDK1
## Beta Catenin Independent Wnt Signaling WNT5A
## Epigenetic Regulation Of Gene Expression DNMT3A
## Estrogen Dependent Gene Expression FOS
## Mitotic G1 Phase And G1 S Transition CDK1
## Neuronal System CREB1,KCNK1
## Sars Cov Infections TLR9
## Regulation Of Tp53 Activity CDK1
## Rho Gtpase Cycle VAMP3,VAV2
## Signaling By The B Cell Receptor Bcr CD19
## G2 M Checkpoints CDK1
## Ion Channel Transport BEST2
## Muscle Contraction KCNK1
## Cilium Assembly CDK1
## Intra Golgi And Retrograde Golgi To Er Traffic VAMP3
## Mitotic G2 G2 M Phases CDK1
## Mitotic Prometaphase CDK1
## Neurotransmitter Receptors And Postsynaptic Signal Transmission CREB1
## Mitotic Metaphase And Anaphase CDK1
## Tcf Dependent Signaling In Response To Wnt WNT5A
## Diseases Of Metabolism MUC5B
## Transmission Across Chemical Synapses CREB1
## Chromatin Modifying Enzymes DNMT3A
## Cell Cycle Checkpoints CDK1
## Signaling By Wnt WNT5A
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 VAMP3,VAV2
## Transport Of Small Molecules BEST2,PCSK9
## M Phase CDK1
## Cell Cycle Mitotic CDK1
## Cell Cycle CDK1
## 2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism
## Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism
## Abc Family Proteins Mediated Transport
## Abc Transporter Disorders
## Abc Transporters In Lipid Homeostasis
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Fyn
## Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Pi3k
## Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activated Tak1 Mediates P38 Mapk Activation
## Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria
## Activation Of Bh3 Only Proteins
## Activation Of Caspases Through Apoptosome Mediated Cleavage
## Activation Of Gene Expression By Srebf Srebp
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon
## Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells
## Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps
## Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions
## Adp Signalling Through P2y Purinoceptor 1
## Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors
## Aflatoxin Activation And Detoxification
## Aggrephagy
## Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway
## Alternative Complement Activation
## Amine Ligand Binding Receptors
## Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity
## Anchoring Fibril Formation
## Androgen Biosynthesis
## Antigen Processing Ubiquitination Proteasome Degradation
## Antiviral Mechanism By Ifn Stimulated Genes
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection
## Apoptotic Cleavage Of Cell Adhesion Proteins
## Apoptotic Cleavage Of Cellular Proteins
## Apoptotic Factor Mediated Response
## Aquaporin Mediated Transport
## Arachidonate Production From Dag
## Arachidonic Acid Metabolism
## Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling
## Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex
## Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry
## Attachment Of Gpi Anchor To Upar
## Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## Autophagy
## B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair
## Base Excision Repair Ap Site Formation
## Basigin Interactions
## Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Phosphorylation Cascade
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids
## Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism
## Binding And Uptake Of Ligands By Scavenger Receptors
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters
## Biological Oxidations
## Biosynthesis Of Epa Derived Spms
## Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins
## Biosynthesis Of Specialized Proresolving Mediators Spms
## Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis
## Branched Chain Amino Acid Catabolism
## Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions
## Ca2 Activated K Channels
## Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin
## Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism
## Caspase Activation Via Death Receptors In The Presence Of Ligand
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway
## Caspase Mediated Cleavage Of Cytoskeletal Proteins
## Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation
## Cdc6 Association With The Orc Origin Complex
## Cell Cell Communication
## Cell Cell Junction Organization
## Cell Extracellular Matrix Interactions
## Cell Junction Organization
## Cellular Hexose Transport
## Cellular Response To Heat Stress
## Cellular Response To Hypoxia
## Cellular Response To Starvation
## Cgmp Effects
## Chaperone Mediated Autophagy
## Chl1 Interactions
## Cholesterol Biosynthesis
## Choline Catabolism
## Chondroitin Sulfate Biosynthesis
## Chondroitin Sulfate Dermatan Sulfate Metabolism
## Chrebp Activates Metabolic Gene Expression
## Chromosome Maintenance
## Chylomicron Assembly
## Chylomicron Clearance
## Chylomicron Remodeling
## Citric Acid Cycle Tca Cycle
## Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Peroxisomal Membrane Protein Import
## Clec7a Dectin 1 Induces Nfat Activation
## Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization
## Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complex I Biogenesis
## Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic
## Creatine Metabolism
## Creation Of C4 And C2 Activators
## Creb3 Factors Activate Genes
## Cristae Formation
## Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Crosslinking Of Collagen Fibrils
## Cs Ds Degradation
## Cyclin A Cdk2 Associated Events At S Phase Entry
## Cyclin D Associated Events In G1
## Cyp2e1 Reactions
## Cytochrome C Mediated Apoptotic Response
## Cytochrome P450 Arranged By Substrate Type
## Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation
## Darpp 32 Events
## Dcc Mediated Attractive Signaling
## Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna
## Dectin 1 Mediated Noncanonical Nf Kb Signaling
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type
## Defective Cftr Causes Cystic Fibrosis
## Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2
## Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B
## Defective Factor Viii Causes Hemophilia A
## Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks
## Degradation Of Axin
## Degradation Of Beta Catenin By The Destruction Complex
## Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models
## Dermatan Sulfate Biosynthesis
## Detoxification Of Reactive Oxygen Species
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production
## Digestion
## Digestion And Absorption
## Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane
## Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With Glycosylation Precursor Biosynthesis
## Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair
## Diseases Of Mismatch Repair Mmr
## Diseases Of Mitotic Cell Cycle
## Disinhibition Of Snare Formation
## Disorders Of Transmembrane Transporters
## Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass
## Dna Damage Recognition In Gg Ner
## Dna Damage Reversal
## Dna Damage Telomere Stress Induced Senescence
## Dna Double Strand Break Repair
## Dna Double Strand Break Response
## Dna Repair
## Dna Replication
## Dna Replication Initiation
## Dna Replication Pre Initiation
## Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Erbb4 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signaling Events Of B Cell Receptor Bcr
## Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4
## Dscam Interactions
## Dual Incision In Gg Ner
## Dual Incision In Tc Ner
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Early Phase Of Hiv Life Cycle
## Effects Of Pip2 Hydrolysis
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors
## Eicosanoids
## Elastic Fibre Formation
## Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Enos Activation
## Epha Mediated Growth Cone Collapse
## Ephb Mediated Forward Signaling
## Ephrin Signaling
## Er Quality Control Compartment Erqc
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets
## Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras
## Erythropoietin Activates Stat5
## Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis
## Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation
## Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus
## Extension Of Telomeres
## Extrinsic Pathway Of Fibrin Clot Formation
## Factors Involved In Megakaryocyte Development And Platelet Production
## Fanconi Anemia Pathway
## Fasl Cd95l Signaling
## Fatty Acid Metabolism
## Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer
## Fceri Mediated Nf Kb Activation
## Fcgr Activation
## Fertilization
## Fgfr1 Ligand Binding And Activation
## Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling
## Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric
## Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling
## Formation Of Fibrin Clot Clotting Cascade
## Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex
## Formation Of The Beta Catenin Tcf Transactivating Complex
## Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription
## Foxo Mediated Transcription Of Cell Cycle Genes
## Foxo Mediated Transcription Of Cell Death Genes
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling
## Fructose Catabolism
## Fructose Metabolism
## G Alpha S Signalling Events
## G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Cdc42
## G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation
## G Protein Beta Gamma Signalling
## G1 S Dna Damage Checkpoints
## G2 Phase
## Gaba B Receptor Activation
## Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation
## Galactose Catabolism
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly
## Gap Junction Degradation
## Gap Junction Trafficking And Regulation
## Gdp Fucose Biosynthesis
## Gene Silencing By Rna
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis
## Gluconeogenesis
## Glucose Metabolism
## Glucuronidation
## Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation
## Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism
## Glycogen Storage Diseases
## Glycogen Synthesis
## Glycolysis
## Glycosaminoglycan Metabolism
## Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis
## Golgi To Er Retrograde Transport
## Gp1b Ix V Activation Signalling
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins
## Grb7 Events In Erbb2 Signaling
## Hats Acetylate Histones
## Hcmv Late Events
## Hdacs Deacetylate Histones
## Hdl Assembly
## Hdl Clearance
## Hdl Remodeling
## Hdms Demethylate Histones
## Hdr Through Homologous Recombination Hrr
## Hdr Through Mmej Alt Nhej
## Hdr Through Single Strand Annealing Ssa
## Hedgehog Ligand Biogenesis
## Hedgehog Off State
## Hedgehog On State
## Heme Biosynthesis
## Heme Degradation
## Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism
## Hiv Elongation Arrest And Recovery
## Hiv Infection
## Hiv Life Cycle
## Hiv Transcription Elongation
## Hiv Transcription Initiation
## Homologous Dna Pairing And Strand Exchange
## Homology Directed Repair
## Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis
## Hs Gag Degradation
## Hsf1 Activation
## Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc
## Ikba Variant Leads To Eda Id
## Il 6 Type Cytokine Receptor Ligand Interactions
## Inactivation Of Cdc42 And Rac1
## Incretin Synthesis Secretion And Inactivation
## Infection With Mycobacterium Tuberculosis
## Influenza Infection
## Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Inositol Phosphate Metabolism
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane
## Insulin Processing
## Insulin Receptor Recycling
## Integration Of Energy Metabolism
## Integration Of Provirus
## Integrin Signaling
## Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates
## Interleukin 2 Signaling
## Interleukin 36 Pathway
## Intestinal Absorption
## Intra Golgi Traffic
## Intraflagellar Transport
## Intrinsic Pathway Of Fibrin Clot Formation
## Inwardly Rectifying K Channels
## Ion Homeostasis
## Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors
## Irak1 Recruits Ikk Complex
## Irak2 Mediated Activation Of Tak1 Complex
## Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn
## Iron Uptake And Transport
## Irs Activation
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1
## Josephin Domain Dubs
## Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism
## Keratinization
## Ketone Body Metabolism
## Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna
## Lagging Strand Synthesis
## Laminin Interactions
## Late Endosomal Microautophagy
## Lectin Pathway Of Complement Activation
## Leukotriene Receptors
## Lgi Adam Interactions
## Ligand Receptor Interactions
## Linoleic Acid La Metabolism
## Lipid Particle Organization
## Lipophagy
## Listeria Monocytogenes Entry Into Host Cells
## Long Term Potentiation
## Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism
## Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors
## Map2k And Mapk Activation
## Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Maturation Of Nucleoprotein
## Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein
## Meiosis
## Meiotic Recombination
## Meiotic Synapsis
## Melanin Biosynthesis
## Met Activates Pi3k Akt Signaling
## Met Activates Ptk2 Signaling
## Met Activates Ptpn11
## Met Activates Rap1 And Rac1
## Met Activates Ras Signaling
## Met Interacts With Tns Proteins
## Met Promotes Cell Motility
## Met Receptor Activation
## Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones
## Metabolism Of Amino Acids And Derivatives
## Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Carbohydrates
## Metabolism Of Cofactors
## Metabolism Of Fat Soluble Vitamins
## Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Lipids
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation
## Metabolism Of Nucleotides
## Metabolism Of Polyamines
## Metabolism Of Porphyrins
## Metabolism Of Rna
## Metabolism Of Steroid Hormones
## Metabolism Of Steroids
## Metabolism Of Vitamins And Cofactors
## Metabolism Of Water Soluble Vitamins And Cofactors
## Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins
## Metallothioneins Bind Metals
## Methionine Salvage Pathway
## Methylation
## Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle
## Miscellaneous Substrates
## Miscellaneous Transport And Binding Events
## Mismatch Repair
## Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import
## Mitochondrial Translation
## Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling
## Mitophagy
## Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis
## Modulation By Mtb Of Host Immune System
## Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis
## Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing
## Mrna Editing C To U Conversion
## Mrna Splicing
## Mrna Splicing Minor Pathway
## Mtor Signalling
## Mtorc1 Mediated Signalling
## Mucopolysaccharidoses
## Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors
## Myoclonic Epilepsy Of Lafora
## Myogenesis
## N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters
## Nade Modulates Death Signalling
## Ncam1 Interactions
## Nectin Necl Trans Heterodimerization
## Neddylation
## Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Epigenetic Regulation Of Rrna Expression
## Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Fgfr1 Signaling
## Negative Regulation Of Fgfr2 Signaling
## Negative Regulation Of Fgfr3 Signaling
## Negative Regulation Of Fgfr4 Signaling
## Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Negative Regulators Of Ddx58 Ifih1 Signaling
## Nephrin Family Interactions
## Netrin 1 Signaling
## Netrin Mediated Repulsion Signals
## Neurexins And Neuroligins
## Neurofascin Interactions
## Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance
## Neurotransmitter Release Cycle
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10
## Nf Kb Is Activated And Signals Survival
## Ngf Independant Trka Activation
## Nicotinamide Salvaging
## Nicotinate Metabolism
## Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3
## Nonhomologous End Joining Nhej
## Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle
## Nostrin Mediated Enos Trafficking
## Notch Hlh Transcription Pathway
## Notch1 Intracellular Domain Regulates Transcription
## Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch3 Intracellular Domain Regulates Transcription
## Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrcam Interactions
## Nrif Signals Cell Death From The Nucleus
## Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1
## Nuclear Import Of Rev Protein
## Nuclear Receptor Transcription Pathway
## Nuclear Signaling By Erbb4
## Nucleobase Biosynthesis
## Nucleobase Catabolism
## Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors
## Nucleotide Salvage
## O Glycosylation Of Tsr Domain Containing Proteins
## Oas Antiviral Response
## Olfactory Signaling Pathway
## Oncogene Induced Senescence
## Oncogenic Mapk Signaling
## Opsins
## Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organic Anion Transport
## Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport
## Organic Cation Transport
## Other Interleukin Signaling
## Other Semaphorin Interactions
## P130cas Linkage To Mapk Signaling For Integrins
## P2y Receptors
## P38mapk Events
## P75ntr Negatively Regulates Cell Cycle Via Sc1
## P75ntr Recruits Signalling Complexes
## P75ntr Signals Via Nf Kb
## Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair
## Pecam1 Interactions
## Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis
## Peptide Hormone Metabolism
## Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import
## Pexophagy
## Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation
## Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4
## Phospholipid Metabolism
## Physiological Factors
## Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4
## Pi Metabolism
## Pi3k Akt Activation
## Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation
## Pink1 Prkn Mediated Mitophagy
## Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines
## Plasma Lipoprotein Assembly
## Plasma Lipoprotein Remodeling
## Platelet Adhesion To Exposed Collagen
## Platelet Aggregation Plug Formation
## Platelet Calcium Homeostasis
## Platelet Homeostasis
## Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events
## Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway
## Post Translational Modification Synthesis Of Gpi Anchored Proteins
## Postmitotic Nuclear Pore Complex Npc Reformation
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Pre Notch Expression And Processing
## Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna
## Processing Of Dna Double Strand Break Ends
## Processing Of Intronless Pre Mrnas
## Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand
## Prolactin Receptor Signaling
## Prolonged Erk Activation Events
## Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors
## Protein Localization
## Protein Methylation
## Protein Protein Interactions At Synapses
## Protein Repair
## Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport
## Pten Regulation
## Ptk6 Expression
## Ptk6 Regulates Cell Cycle
## Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis
## Purine Salvage
## Pyrimidine Catabolism
## Pyrimidine Salvage
## Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway
## Rab Gefs Exchange Gtp For Gdp On Rabs
## Rab Geranylgeranylation
## Rab Regulation Of Trafficking
## Raf Activation
## Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Mediated Mitophagy
## Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp
## Recycling Pathway Of L1
## Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr
## Regulation By C Flip
## Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Commissural Axon Pathfinding By Slit And Robo
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos
## Regulation Of Foxo Transcriptional Activity By Acetylation
## Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Hmox1 Expression And Activity
## Regulation Of Hsf1 Mediated Heat Shock Response
## Regulation Of Ifna Signaling
## Regulation Of Ifng Signaling
## Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Secretion
## Regulation Of Kit Signaling
## Regulation Of Lipid Metabolism By Pparalpha
## Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps
## Regulation Of Runx1 Expression And Activity
## Regulation Of Runx3 Expression And Activity
## Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal
## Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors
## Regulation Of Tp53 Activity Through Methylation
## Regulation Of Tp53 Activity Through Phosphorylation
## Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Repression Of Wnt Target Genes
## Reproduction
## Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Resolution Of D Loop Structures
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa
## Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis
## Response To Metal Ions
## Ret Signaling
## Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling
## Reversible Hydration Of Carbon Dioxide
## Rho Gtpase Effectors
## Rho Gtpases Activate Cit
## Rho Gtpases Activate Formins
## Rho Gtpases Activate Iqgaps
## Rho Gtpases Activate Ktn1
## Rho Gtpases Activate Nadph Oxidases
## Rho Gtpases Activate Paks
## Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks
## Rho Gtpases Activate Wasps And Waves
## Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle
## Rhot1 Gtpase Cycle
## Rhou Gtpase Cycle
## Rhov Gtpase Cycle
## Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination
## Rnd1 Gtpase Cycle
## Rnd2 Gtpase Cycle
## Rnd3 Gtpase Cycle
## Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression
## Ros And Rns Production In Phagocytes
## Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol
## Rrna Processing
## Rrna Processing In The Mitochondrion
## Rsk Activation
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Expression Of Components Of Tight Junctions
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf
## Runx3 Regulates Wnt Signaling
## Runx3 Regulates Yap1 Mediated Transcription
## S Phase
## Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection
## Sars Cov 2 Infection
## Scavenging By Class A Receptors
## Scavenging By Class B Receptors
## Scavenging By Class F Receptors
## Scavenging Of Heme From Plasma
## Scf Skp2 Mediated Degradation Of P27 P21
## Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selective Autophagy
## Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Semaphorin Interactions
## Sensing Of Dna Double Strand Breaks
## Sensory Perception
## Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids
## Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors
## Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r
## Shc1 Events In Erbb4 Signaling
## Signal Amplification
## Signal Attenuation
## Signal Regulatory Protein Family Interactions
## Signaling By Activin
## Signaling By Bmp
## Signaling By Braf And Raf Fusions
## Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Erythropoietin
## Signaling By Fgfr
## Signaling By Fgfr1
## Signaling By Fgfr2
## Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease
## Signaling By Fgfr3
## Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4
## Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Hedgehog
## Signaling By Hippo
## Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Moderate Kinase Activity Braf Mutants
## Signaling By Mras Complex Mutants
## Signaling By Mst1
## Signaling By Nodal
## Signaling By Notch1
## Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 Pest Domain Mutants In Cancer
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch4
## Signaling By Ntrk2 Trkb
## Signaling By Ntrk3 Trkc
## Signaling By Retinoic Acid
## Signaling By Rnf43 Mutants
## Signaling By Robo Receptors
## Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By Wnt In Cancer
## Signalling To Erks
## Signalling To P38 Via Rit And Rin
## Signalling To Ras
## Sirt1 Negatively Regulates Rrna Expression
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport
## Slc Transporter Disorders
## Smac Xiap Regulated Apoptotic Response
## Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction
## Snrnp Assembly
## Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers
## Sos Mediated Signalling
## Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism
## Spry Regulation Of Fgf Signaling
## Srp Dependent Cotranslational Protein Targeting To Membrane
## Stabilization Of P53
## Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants
## Striated Muscle Contraction
## Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins
## Sumoylation Of Immune Response Proteins
## Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation
## Surfactant Metabolism
## Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules
## Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx
## Synthesis Of Pa
## Synthesis Of Pc
## Synthesis Of Pe
## Synthesis Of Pg
## Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pips At The Plasma Membrane
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx
## Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip
## Tachykinin Receptors Bind Tachykinins
## Tbc Rabgaps
## Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation
## Telomere Extension By Telomerase
## Telomere Maintenance
## Terminal Pathway Of Complement
## Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model
## The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thrombin Signalling Through Proteinase Activated Receptors Pars
## Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis
## Tie2 Signaling
## Tight Junction Interactions
## Tnfr1 Induced Proapoptotic Signaling
## Tnfr1 Mediated Ceramide Production
## Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Traf3 Dependent Irf Activation Pathway
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex
## Traf6 Mediated Irf7 Activation
## Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling
## Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of E2f Targets Under Negative Control By Dream Complex
## Transcription Of The Hiv Genome
## Transcriptional Regulation By E2f6
## Transcriptional Regulation By Runx3
## Transcriptional Regulation By Small Rnas
## Transcriptional Regulation Of Testis Differentiation
## Transcriptional Regulation Of White Adipocyte Differentiation
## Transferrin Endocytosis And Recycling
## Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh
## Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane
## Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars
## Transport Of Organic Anions
## Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules
## Trif Mediated Programmed Cell Death
## Triglyceride Biosynthesis
## Triglyceride Catabolism
## Triglyceride Metabolism
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation
## Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol
## Trna Processing
## Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus
## Trp Channels
## Tryptophan Catabolism
## Type I Hemidesmosome Assembly
## Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins
## Ubiquinol Biosynthesis
## Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin
## Urea Cycle
## Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions
## Vegfr2 Mediated Cell Proliferation
## Viral Messenger Rna Synthesis
## Visual Phototransduction
## Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism
## Vitamins
## Vldl Assembly
## Vldl Clearance
## Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl
## Xenobiotics
## Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters
##
## $pml
## label
## Cytokine Signaling In Immune System Cytokine Signaling In Immune System
## Signaling By Interleukins Signaling By Interleukins
## Innate Immune System Innate Immune System
## Interleukin 10 Signaling Interleukin 10 Signaling
## Interleukin 4 And Interleukin 13 Signaling Interleukin 4 And Interleukin 13 Signaling
## Chemokine Receptors Bind Chemokines Chemokine Receptors Bind Chemokines
## Peptide Ligand Binding Receptors Peptide Ligand Binding Receptors
## Toll Like Receptor Cascades Toll Like Receptor Cascades
## Signaling By Gpcr Signaling By Gpcr
## Class A 1 Rhodopsin Like Receptors Class A 1 Rhodopsin Like Receptors
## Toll Like Receptor Tlr1 Tlr2 Cascade Toll Like Receptor Tlr1 Tlr2 Cascade
## Gpcr Ligand Binding Gpcr Ligand Binding
## Interleukin 1 Family Signaling Interleukin 1 Family Signaling
## G Alpha I Signalling Events G Alpha I Signalling Events
## Neutrophil Degranulation Neutrophil Degranulation
## Toll Like Receptor 9 Tlr9 Cascade Toll Like Receptor 9 Tlr9 Cascade
## Adaptive Immune System Adaptive Immune System
## Myd88 Independent Tlr4 Cascade Myd88 Independent Tlr4 Cascade
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways
## Diseases Of Immune System Diseases Of Immune System
## Death Receptor Signalling Death Receptor Signalling
## Leishmania Infection Leishmania Infection
## Irak4 Deficiency Tlr2 4 Irak4 Deficiency Tlr2 4
## Extra Nuclear Estrogen Signaling Extra Nuclear Estrogen Signaling
## Nod1 2 Signaling Pathway Nod1 2 Signaling Pathway
## Regulation Of Tlr By Endogenous Ligand Regulation Of Tlr By Endogenous Ligand
## Complement Cascade Complement Cascade
## Purinergic Signaling In Leishmaniasis Infection Purinergic Signaling In Leishmaniasis Infection
## Programmed Cell Death Programmed Cell Death
## Interleukin 17 Signaling Interleukin 17 Signaling
## Tnfr2 Non Canonical Nf Kb Pathway Tnfr2 Non Canonical Nf Kb Pathway
## Tnfs Bind Their Physiological Receptors Tnfs Bind Their Physiological Receptors
## Interleukin 1 Signaling Interleukin 1 Signaling
## Costimulation By The Cd28 Family Costimulation By The Cd28 Family
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex
## Negative Regulation Of The Pi3k Akt Network Negative Regulation Of The Pi3k Akt Network
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell
## Regulated Necrosis Regulated Necrosis
## Ovarian Tumor Domain Proteases Ovarian Tumor Domain Proteases
## Extracellular Matrix Organization Extracellular Matrix Organization
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1
## P75 Ntr Receptor Mediated Signalling P75 Ntr Receptor Mediated Signalling
## Antigen Processing Cross Presentation Antigen Processing Cross Presentation
## Heme Signaling Heme Signaling
## Pyroptosis Pyroptosis
## Deubiquitination Deubiquitination
## Infectious Disease Infectious Disease
## Activation Of Matrix Metalloproteinases Activation Of Matrix Metalloproteinases
## Post Translational Protein Modification Post Translational Protein Modification
## P75ntr Signals Via Nf Kb P75ntr Signals Via Nf Kb
## Esr Mediated Signaling Esr Mediated Signaling
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway
## Fibronectin Matrix Formation Fibronectin Matrix Formation
## Gastrin Creb Signalling Pathway Via Pkc And Mapk Gastrin Creb Signalling Pathway Via Pkc And Mapk
## Pi3k Akt Signaling In Cancer Pi3k Akt Signaling In Cancer
## Beta Defensins Beta Defensins
## Ctla4 Inhibitory Signaling Ctla4 Inhibitory Signaling
## Inflammasomes Inflammasomes
## Interleukin 2 Family Signaling Interleukin 2 Family Signaling
## Dap12 Interactions Dap12 Interactions
## Interleukin 18 Signaling Interleukin 18 Signaling
## Activated Tak1 Mediates P38 Mapk Activation Activated Tak1 Mediates P38 Mapk Activation
## Constitutive Signaling By Aberrant Pi3k In Cancer Constitutive Signaling By Aberrant Pi3k In Cancer
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling
## Mapk Family Signaling Cascades Mapk Family Signaling Cascades
## Cd163 Mediating An Anti Inflammatory Response Cd163 Mediating An Anti Inflammatory Response
## Interleukin 1 Processing Interleukin 1 Processing
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway Caspase Activation Via Extrinsic Apoptotic Signalling Pathway
## Defensins Defensins
## Apoptosis Apoptosis
## Interleukin 12 Family Signaling Interleukin 12 Family Signaling
## Interleukin 6 Signaling Interleukin 6 Signaling
## Signaling By Nuclear Receptors Signaling By Nuclear Receptors
## Antimicrobial Peptides Antimicrobial Peptides
## Cd28 Dependent Vav1 Pathway Cd28 Dependent Vav1 Pathway
## Killing Mechanisms Killing Mechanisms
## Intracellular Signaling By Second Messengers Intracellular Signaling By Second Messengers
## Cell Surface Interactions At The Vascular Wall Cell Surface Interactions At The Vascular Wall
## Cd28 Co Stimulation Cd28 Co Stimulation
## Collagen Degradation Collagen Degradation
## P75ntr Recruits Signalling Complexes P75ntr Recruits Signalling Complexes
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling
## Hemostasis Hemostasis
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers
## Caspase Activation Via Death Receptors In The Presence Of Ligand Caspase Activation Via Death Receptors In The Presence Of Ligand
## The Nlrp3 Inflammasome The Nlrp3 Inflammasome
## Gab1 Signalosome Gab1 Signalosome
## Rip Mediated Nfkb Activation Via Zbp1 Rip Mediated Nfkb Activation Via Zbp1
## Transcriptional Regulation By Runx2 Transcriptional Regulation By Runx2
## Signaling By Scf Kit Signaling By Scf Kit
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta
## Signaling By Receptor Tyrosine Kinases Signaling By Receptor Tyrosine Kinases
## Rna Polymerase Ii Transcription Rna Polymerase Ii Transcription
## Signaling By Kit In Disease Signaling By Kit In Disease
## Zbp1 Dai Mediated Induction Of Type I Ifns Zbp1 Dai Mediated Induction Of Type I Ifns
## Signaling By Egfr Signaling By Egfr
## Eph Ephrin Mediated Repulsion Of Cells Eph Ephrin Mediated Repulsion Of Cells
## Degradation Of The Extracellular Matrix Degradation Of The Extracellular Matrix
## Eph Ephrin Signaling Eph Ephrin Signaling
## Interferon Gamma Signaling Interferon Gamma Signaling
## Ikk Complex Recruitment Mediated By Rip1 Ikk Complex Recruitment Mediated By Rip1
## Cellular Senescence Cellular Senescence
## Rac3 Gtpase Cycle Rac3 Gtpase Cycle
## Cellular Responses To External Stimuli Cellular Responses To External Stimuli
## Signaling By Ptk6 Signaling By Ptk6
## Platelet Activation Signaling And Aggregation Platelet Activation Signaling And Aggregation
## Interleukin 6 Family Signaling Interleukin 6 Family Signaling
## Traf6 Mediated Nf Kb Activation Traf6 Mediated Nf Kb Activation
## Vesicle Mediated Transport Vesicle Mediated Transport
## Rhoq Gtpase Cycle Rhoq Gtpase Cycle
## Assembly Of Collagen Fibrils And Other Multimeric Structures Assembly Of Collagen Fibrils And Other Multimeric Structures
## Cargo Recognition For Clathrin Mediated Endocytosis Cargo Recognition For Clathrin Mediated Endocytosis
## Cytosolic Sensors Of Pathogen Associated Dna Cytosolic Sensors Of Pathogen Associated Dna
## Pd 1 Signaling Pd 1 Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells
## Dap12 Signaling Dap12 Signaling
## Downstream Signal Transduction Downstream Signal Transduction
## Senescence Associated Secretory Phenotype Sasp Senescence Associated Secretory Phenotype Sasp
## Tnfr1 Induced Nfkappab Signaling Pathway Tnfr1 Induced Nfkappab Signaling Pathway
## Activation Of C3 And C5 Activation Of C3 And C5
## Egfr Downregulation Egfr Downregulation
## Mapk Targets Nuclear Events Mediated By Map Kinases Mapk Targets Nuclear Events Mediated By Map Kinases
## Runx2 Regulates Genes Involved In Cell Migration Runx2 Regulates Genes Involved In Cell Migration
## Egfr Interacts With Phospholipase C Gamma Egfr Interacts With Phospholipase C Gamma
## Egfr Transactivation By Gastrin Egfr Transactivation By Gastrin
## Interleukin 9 Signaling Interleukin 9 Signaling
## Trif Mediated Programmed Cell Death Trif Mediated Programmed Cell Death
## Negative Regulators Of Ddx58 Ifih1 Signaling Negative Regulators Of Ddx58 Ifih1 Signaling
## Regulation Of Tnfr1 Signaling Regulation Of Tnfr1 Signaling
## Rhog Gtpase Cycle Rhog Gtpase Cycle
## Activation Of The Ap 1 Family Of Transcription Factors Activation Of The Ap 1 Family Of Transcription Factors
## Interleukin 21 Signaling Interleukin 21 Signaling
## Mapk3 Erk1 Activation Mapk3 Erk1 Activation
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation
## Apoptotic Cleavage Of Cell Adhesion Proteins Apoptotic Cleavage Of Cell Adhesion Proteins
## Initial Triggering Of Complement Initial Triggering Of Complement
## Interleukin 27 Signaling Interleukin 27 Signaling
## Receptor Mediated Mitophagy Receptor Mediated Mitophagy
## Response To Elevated Platelet Cytosolic Ca2 Response To Elevated Platelet Cytosolic Ca2
## Selective Autophagy Selective Autophagy
## Gp1b Ix V Activation Signalling Gp1b Ix V Activation Signalling
## Interleukin 35 Signalling Interleukin 35 Signalling
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants
## Tp53 Regulates Transcription Of Caspase Activators And Caspases Tp53 Regulates Transcription Of Caspase Activators And Caspases
## Nervous System Development Nervous System Development
## C Type Lectin Receptors Clrs C Type Lectin Receptors Clrs
## Interferon Signaling Interferon Signaling
## Apoptosis Induced Dna Fragmentation Apoptosis Induced Dna Fragmentation
## Erbb2 Activates Ptk6 Signaling Erbb2 Activates Ptk6 Signaling
## Nf Kb Is Activated And Signals Survival Nf Kb Is Activated And Signals Survival
## Rac2 Gtpase Cycle Rac2 Gtpase Cycle
## Tnfr1 Induced Proapoptotic Signaling Tnfr1 Induced Proapoptotic Signaling
## Trafficking And Processing Of Endosomal Tlr Trafficking And Processing Of Endosomal Tlr
## Tnf Signaling Tnf Signaling
## Clathrin Mediated Endocytosis Clathrin Mediated Endocytosis
## Collagen Formation Collagen Formation
## Transcriptional Regulation Of Granulopoiesis Transcriptional Regulation Of Granulopoiesis
## Dcc Mediated Attractive Signaling Dcc Mediated Attractive Signaling
## Early Phase Of Hiv Life Cycle Early Phase Of Hiv Life Cycle
## Interleukin 15 Signaling Interleukin 15 Signaling
## Shc1 Events In Egfr Signaling Shc1 Events In Egfr Signaling
## Mapk6 Mapk4 Signaling Mapk6 Mapk4 Signaling
## Interleukin 12 Signaling Interleukin 12 Signaling
## Constitutive Signaling By Egfrviii Constitutive Signaling By Egfrviii
## Erbb2 Regulates Cell Motility Erbb2 Regulates Cell Motility
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins Grb2 Sos Provides Linkage To Mapk Signaling For Integrins
## P130cas Linkage To Mapk Signaling For Integrins P130cas Linkage To Mapk Signaling For Integrins
## Signaling By Notch3 Signaling By Notch3
## Ub Specific Processing Proteases Ub Specific Processing Proteases
## Binding And Uptake Of Ligands By Scavenger Receptors Binding And Uptake Of Ligands By Scavenger Receptors
## Netrin 1 Signaling Netrin 1 Signaling
## Signaling By Erbb2 Signaling By Erbb2
## Grb2 Events In Erbb2 Signaling Grb2 Events In Erbb2 Signaling
## Pi3k Events In Erbb2 Signaling Pi3k Events In Erbb2 Signaling
## Signal Regulatory Protein Family Interactions Signal Regulatory Protein Family Interactions
## Signaling By Erbb2 Ecd Mutants Signaling By Erbb2 Ecd Mutants
## Sumoylation Of Dna Methylation Proteins Sumoylation Of Dna Methylation Proteins
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex
## Cdc42 Gtpase Cycle Cdc42 Gtpase Cycle
## Clec7a Dectin 1 Signaling Clec7a Dectin 1 Signaling
## Class I Mhc Mediated Antigen Processing Presentation Class I Mhc Mediated Antigen Processing Presentation
## Apoptotic Execution Phase Apoptotic Execution Phase
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon
## Intrinsic Pathway For Apoptosis Intrinsic Pathway For Apoptosis
## Rhoj Gtpase Cycle Rhoj Gtpase Cycle
## Signaling By Cytosolic Fgfr1 Fusion Mutants Signaling By Cytosolic Fgfr1 Fusion Mutants
## Signaling By Vegf Signaling By Vegf
## Transcriptional Regulation By Runx1 Transcriptional Regulation By Runx1
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants Constitutive Signaling By Ligand Responsive Egfr Cancer Variants
## Other Semaphorin Interactions Other Semaphorin Interactions
## Scavenging By Class A Receptors Scavenging By Class A Receptors
## Ticam1 Rip1 Mediated Ikk Complex Recruitment Ticam1 Rip1 Mediated Ikk Complex Recruitment
## Signaling By Erbb4 Signaling By Erbb4
## Signaling By Pdgf Signaling By Pdgf
## Signaling By Pdgfr In Disease Signaling By Pdgfr In Disease
## Interleukin 37 Signaling Interleukin 37 Signaling
## Signal Transduction By L1 Signal Transduction By L1
## Cd28 Dependent Pi3k Akt Signaling Cd28 Dependent Pi3k Akt Signaling
## Rac1 Gtpase Cycle Rac1 Gtpase Cycle
## Shc1 Events In Erbb2 Signaling Shc1 Events In Erbb2 Signaling
## Foxo Mediated Transcription Foxo Mediated Transcription
## Raf Independent Mapk1 3 Activation Raf Independent Mapk1 3 Activation
## Growth Hormone Receptor Signaling Growth Hormone Receptor Signaling
## Runx2 Regulates Osteoblast Differentiation Runx2 Regulates Osteoblast Differentiation
## Circadian Clock Circadian Clock
## Inactivation Of Csf3 G Csf Signaling Inactivation Of Csf3 G Csf Signaling
## Notch3 Activation And Transmission Of Signal To The Nucleus Notch3 Activation And Transmission Of Signal To The Nucleus
## Rhob Gtpase Cycle Rhob Gtpase Cycle
## Scavenging Of Heme From Plasma Scavenging Of Heme From Plasma
## Signaling By Egfr In Cancer Signaling By Egfr In Cancer
## Interleukin 20 Family Signaling Interleukin 20 Family Signaling
## Signaling By Erbb2 In Cancer Signaling By Erbb2 In Cancer
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress
## G0 And Early G1 G0 And Early G1
## Integrin Signaling Integrin Signaling
## Interferon Alpha Beta Signaling Interferon Alpha Beta Signaling
## Interleukin Receptor Shc Signaling Interleukin Receptor Shc Signaling
## Membrane Trafficking Membrane Trafficking
## Rhoc Gtpase Cycle Rhoc Gtpase Cycle
## Signaling By Ntrks Signaling By Ntrks
## Vegfr2 Mediated Vascular Permeability Vegfr2 Mediated Vascular Permeability
## Cell Death Signalling Via Nrage Nrif And Nade Cell Death Signalling Via Nrage Nrif And Nade
## Developmental Biology Developmental Biology
## Downregulation Of Erbb2 Signaling Downregulation Of Erbb2 Signaling
## Mitophagy Mitophagy
## Ripk1 Mediated Regulated Necrosis Ripk1 Mediated Regulated Necrosis
## G Alpha Q Signalling Events G Alpha Q Signalling Events
## Signaling By Csf3 G Csf Signaling By Csf3 G Csf
## Fgfr1 Mutant Receptor Activation Fgfr1 Mutant Receptor Activation
## Nicotinate Metabolism Nicotinate Metabolism
## Runx2 Regulates Bone Development Runx2 Regulates Bone Development
## Perk Regulates Gene Expression Perk Regulates Gene Expression
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription
## Anti Inflammatory Response Favouring Leishmania Parasite Infection Anti Inflammatory Response Favouring Leishmania Parasite Infection
## Mitotic G1 Phase And G1 S Transition Mitotic G1 Phase And G1 S Transition
## Autophagy Autophagy
## Cargo Concentration In The Er Cargo Concentration In The Er
## Plasma Lipoprotein Clearance Plasma Lipoprotein Clearance
## Fceri Mediated Mapk Activation Fceri Mediated Mapk Activation
## Gpvi Mediated Activation Cascade Gpvi Mediated Activation Cascade
## Regulation Of Tp53 Expression And Degradation Regulation Of Tp53 Expression And Degradation
## Rhoh Gtpase Cycle Rhoh Gtpase Cycle
## Apoptotic Cleavage Of Cellular Proteins Apoptotic Cleavage Of Cellular Proteins
## Fcgr3a Mediated Il10 Synthesis Fcgr3a Mediated Il10 Synthesis
## Signaling By Fgfr1 In Disease Signaling By Fgfr1 In Disease
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors
## Ngf Stimulated Transcription Ngf Stimulated Transcription
## Platelet Aggregation Plug Formation Platelet Aggregation Plug Formation
## Map2k And Mapk Activation Map2k And Mapk Activation
## Signaling By Notch Signaling By Notch
## Alternative Complement Activation Alternative Complement Activation
## Fasl Cd95l Signaling Fasl Cd95l Signaling
## G2 M Dna Replication Checkpoint G2 M Dna Replication Checkpoint
## Galactose Catabolism Galactose Catabolism
## Hdl Clearance Hdl Clearance
## Mecp2 Regulates Transcription Factors Mecp2 Regulates Transcription Factors
## Nostrin Mediated Enos Trafficking Nostrin Mediated Enos Trafficking
## Runx1 Regulates Expression Of Components Of Tight Junctions Runx1 Regulates Expression Of Components Of Tight Junctions
## Runx2 Regulates Chondrocyte Maturation Runx2 Regulates Chondrocyte Maturation
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors
## Ephb Mediated Forward Signaling Ephb Mediated Forward Signaling
## Rhof Gtpase Cycle Rhof Gtpase Cycle
## Diseases Of Programmed Cell Death Diseases Of Programmed Cell Death
## Tp53 Regulates Transcription Of Cell Death Genes Tp53 Regulates Transcription Of Cell Death Genes
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer
## Activated Ntrk3 Signals Through Pi3k Activated Ntrk3 Signals Through Pi3k
## Activation Of Caspases Through Apoptosome Mediated Cleavage Activation Of Caspases Through Apoptosome Mediated Cleavage
## Biosynthesis Of Epa Derived Spms Biosynthesis Of Epa Derived Spms
## Clec7a Inflammasome Pathway Clec7a Inflammasome Pathway
## Nade Modulates Death Signalling Nade Modulates Death Signalling
## Phosphorylation Of Emi1 Phosphorylation Of Emi1
## Protein Repair Protein Repair
## Ptk6 Promotes Hif1a Stabilization Ptk6 Promotes Hif1a Stabilization
## Ptk6 Regulates Cell Cycle Ptk6 Regulates Cell Cycle
## Scavenging By Class B Receptors Scavenging By Class B Receptors
## Sensing Of Dna Double Strand Breaks Sensing Of Dna Double Strand Breaks
## Signaling By Moderate Kinase Activity Braf Mutants Signaling By Moderate Kinase Activity Braf Mutants
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives Synthesis Of 15 Eicosatetraenoic Acid Derivatives
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death Tlr3 Mediated Ticam1 Dependent Programmed Cell Death
## Tnfr1 Mediated Ceramide Production Tnfr1 Mediated Ceramide Production
## Cyclin D Associated Events In G1 Cyclin D Associated Events In G1
## Fc Epsilon Receptor Fceri Signaling Fc Epsilon Receptor Fceri Signaling
## Interleukin 3 Interleukin 5 And Gm Csf Signaling Interleukin 3 Interleukin 5 And Gm Csf Signaling
## Sumoylation Sumoylation
## Activated Ntrk2 Signals Through Fyn Activated Ntrk2 Signals Through Fyn
## Activation Of Nima Kinases Nek9 Nek6 Nek7 Activation Of Nima Kinases Nek9 Nek6 Nek7
## Creb Phosphorylation Creb Phosphorylation
## Defective Factor Viii Causes Hemophilia A Defective Factor Viii Causes Hemophilia A
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production
## Ikba Variant Leads To Eda Id Ikba Variant Leads To Eda Id
## Modulation By Mtb Of Host Immune System Modulation By Mtb Of Host Immune System
## Parasite Infection Parasite Infection
## Rhod Gtpase Cycle Rhod Gtpase Cycle
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde
## Hdl Assembly Hdl Assembly
## Inactivation Of Cdc42 And Rac1 Inactivation Of Cdc42 And Rac1
## Lectin Pathway Of Complement Activation Lectin Pathway Of Complement Activation
## Mecp2 Regulates Transcription Of Neuronal Ligands Mecp2 Regulates Transcription Of Neuronal Ligands
## Netrin Mediated Repulsion Signals Netrin Mediated Repulsion Signals
## Runx3 Regulates Wnt Signaling Runx3 Regulates Wnt Signaling
## Smac Xiap Regulated Apoptotic Response Smac Xiap Regulated Apoptotic Response
## L1cam Interactions L1cam Interactions
## Cytoprotection By Hmox1 Cytoprotection By Hmox1
## Tcr Signaling Tcr Signaling
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members
## Downregulation Of Erbb4 Signaling Downregulation Of Erbb4 Signaling
## E2f Enabled Inhibition Of Pre Replication Complex Formation E2f Enabled Inhibition Of Pre Replication Complex Formation
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells
## Interleukin 23 Signaling Interleukin 23 Signaling
## Mapk1 Erk2 Activation Mapk1 Erk2 Activation
## Oas Antiviral Response Oas Antiviral Response
## Oxidative Stress Induced Senescence Oxidative Stress Induced Senescence
## Nrage Signals Death Through Jnk Nrage Signals Death Through Jnk
## Akt Phosphorylates Targets In The Nucleus Akt Phosphorylates Targets In The Nucleus
## Camk Iv Mediated Phosphorylation Of Creb Camk Iv Mediated Phosphorylation Of Creb
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand Caspase Activation Via Dependence Receptors In The Absence Of Ligand
## Chylomicron Assembly Chylomicron Assembly
## Chylomicron Remodeling Chylomicron Remodeling
## Hdl Remodeling Hdl Remodeling
## Mastl Facilitates Mitotic Progression Mastl Facilitates Mitotic Progression
## P75ntr Regulates Axonogenesis P75ntr Regulates Axonogenesis
## Regulation Of Commissural Axon Pathfinding By Slit And Robo Regulation Of Commissural Axon Pathfinding By Slit And Robo
## Regulation Of Foxo Transcriptional Activity By Acetylation Regulation Of Foxo Transcriptional Activity By Acetylation
## Nuclear Events Kinase And Transcription Factor Activation Nuclear Events Kinase And Transcription Factor Activation
## Ca2 Pathway Ca2 Pathway
## Tp53 Regulates Transcription Of Dna Repair Genes Tp53 Regulates Transcription Of Dna Repair Genes
## Condensation Of Prometaphase Chromosomes Condensation Of Prometaphase Chromosomes
## Dermatan Sulfate Biosynthesis Dermatan Sulfate Biosynthesis
## Dscam Interactions Dscam Interactions
## Endosomal Vacuolar Pathway Endosomal Vacuolar Pathway
## Enos Activation Enos Activation
## Ncam Signaling For Neurite Out Growth Ncam Signaling For Neurite Out Growth
## Pexophagy Pexophagy
## Regulation By C Flip Regulation By C Flip
## Rho Gtpases Activate Ktn1 Rho Gtpases Activate Ktn1
## Signaling By Fgfr In Disease Signaling By Fgfr In Disease
## Signaling By Leptin Signaling By Leptin
## Sumoylation Of Immune Response Proteins Sumoylation Of Immune Response Proteins
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex Ticam1 Traf6 Dependent Induction Of Tak1 Complex
## Transcriptional Regulation By Mecp2 Transcriptional Regulation By Mecp2
## Semaphorin Interactions Semaphorin Interactions
## Dna Methylation Dna Methylation
## Signaling By Braf And Raf Fusions Signaling By Braf And Raf Fusions
## Caspase Mediated Cleavage Of Cytoskeletal Proteins Caspase Mediated Cleavage Of Cytoskeletal Proteins
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase
## Interleukin 2 Signaling Interleukin 2 Signaling
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10
## Notch2 Intracellular Domain Regulates Transcription Notch2 Intracellular Domain Regulates Transcription
## Pecam1 Interactions Pecam1 Interactions
## Tandem Pore Domain Potassium Channels Tandem Pore Domain Potassium Channels
## Ticam1 Dependent Activation Of Irf3 Irf7 Ticam1 Dependent Activation Of Irf3 Irf7
## Vldlr Internalisation And Degradation Vldlr Internalisation And Degradation
## Fcgamma Receptor Fcgr Dependent Phagocytosis Fcgamma Receptor Fcgr Dependent Phagocytosis
## Copii Mediated Vesicle Transport Copii Mediated Vesicle Transport
## Tcf Dependent Signaling In Response To Wnt Tcf Dependent Signaling In Response To Wnt
## Advanced Glycosylation Endproduct Receptor Signaling Advanced Glycosylation Endproduct Receptor Signaling
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex
## Cytochrome C Mediated Apoptotic Response Cytochrome C Mediated Apoptotic Response
## Dissolution Of Fibrin Clot Dissolution Of Fibrin Clot
## Irf3 Mediated Induction Of Type I Ifn Irf3 Mediated Induction Of Type I Ifn
## P38mapk Events P38mapk Events
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation
## Purine Salvage Purine Salvage
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2
## Epigenetic Regulation Of Gene Expression Epigenetic Regulation Of Gene Expression
## Creation Of C4 And C2 Activators Creation Of C4 And C2 Activators
## Plasma Lipoprotein Assembly Remodeling And Clearance Plasma Lipoprotein Assembly Remodeling And Clearance
## Rhoa Gtpase Cycle Rhoa Gtpase Cycle
## Golgi Cisternae Pericentriolar Stack Reorganization Golgi Cisternae Pericentriolar Stack Reorganization
## Irak1 Recruits Ikk Complex Irak1 Recruits Ikk Complex
## Regulation Of Ifng Signaling Regulation Of Ifng Signaling
## Repression Of Wnt Target Genes Repression Of Wnt Target Genes
## Traf3 Dependent Irf Activation Pathway Traf3 Dependent Irf Activation Pathway
## Prc2 Methylates Histones And Dna Prc2 Methylates Histones And Dna
## Regulation Of Runx2 Expression And Activity Regulation Of Runx2 Expression And Activity
## Signaling By Tgf Beta Receptor Complex Signaling By Tgf Beta Receptor Complex
## Depolymerisation Of The Nuclear Lamina Depolymerisation Of The Nuclear Lamina
## Er To Golgi Anterograde Transport Er To Golgi Anterograde Transport
## Heme Degradation Heme Degradation
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation Metabolism Of Nitric Oxide Nos3 Activation And Regulation
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists
## Platelet Adhesion To Exposed Collagen Platelet Adhesion To Exposed Collagen
## Rho Gtpase Cycle Rho Gtpase Cycle
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx Synthesis Of Prostaglandins Pg And Thromboxanes Tx
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors
## Wnt5a Dependent Internalization Of Fzd4 Wnt5a Dependent Internalization Of Fzd4
## Yap1 And Wwtr1 Taz Stimulated Gene Expression Yap1 And Wwtr1 Taz Stimulated Gene Expression
## Abc Transporter Disorders Abc Transporter Disorders
## Cellular Response To Chemical Stress Cellular Response To Chemical Stress
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks
## Dna Double Strand Break Response Dna Double Strand Break Response
## Foxo Mediated Transcription Of Cell Death Genes Foxo Mediated Transcription Of Cell Death Genes
## Nrif Signals Cell Death From The Nucleus Nrif Signals Cell Death From The Nucleus
## Regulation Of Kit Signaling Regulation Of Kit Signaling
## Rmts Methylate Histone Arginines Rmts Methylate Histone Arginines
## Signaling By Met Signaling By Met
## Spry Regulation Of Fgf Signaling Spry Regulation Of Fgf Signaling
## Sting Mediated Induction Of Host Immune Responses Sting Mediated Induction Of Host Immune Responses
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1
## Abc Transporters In Lipid Homeostasis Abc Transporters In Lipid Homeostasis
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects
## Antiviral Mechanism By Ifn Stimulated Genes Antiviral Mechanism By Ifn Stimulated Genes
## Crosslinking Of Collagen Fibrils Crosslinking Of Collagen Fibrils
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps
## Diseases Associated With Glycosylation Precursor Biosynthesis Diseases Associated With Glycosylation Precursor Biosynthesis
## Foxo Mediated Transcription Of Cell Cycle Genes Foxo Mediated Transcription Of Cell Cycle Genes
## Mecp2 Regulates Neuronal Receptors And Channels Mecp2 Regulates Neuronal Receptors And Channels
## Oncogenic Mapk Signaling Oncogenic Mapk Signaling
## Regulation Of Hsf1 Mediated Heat Shock Response Regulation Of Hsf1 Mediated Heat Shock Response
## Regulation Of Runx1 Expression And Activity Regulation Of Runx1 Expression And Activity
## Signaling By Ntrk3 Trkc Signaling By Ntrk3 Trkc
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest
## Transcriptional Regulation Of White Adipocyte Differentiation Transcriptional Regulation Of White Adipocyte Differentiation
## Apoptotic Factor Mediated Response Apoptotic Factor Mediated Response
## Biosynthesis Of Specialized Proresolving Mediators Spms Biosynthesis Of Specialized Proresolving Mediators Spms
## Cyclin A Cdk2 Associated Events At S Phase Entry Cyclin A Cdk2 Associated Events At S Phase Entry
## Ephrin Signaling Ephrin Signaling
## G Beta Gamma Signalling Through Cdc42 G Beta Gamma Signalling Through Cdc42
## Initiation Of Nuclear Envelope Ne Reformation Initiation Of Nuclear Envelope Ne Reformation
## Integrin Cell Surface Interactions Integrin Cell Surface Interactions
## Ldl Clearance Ldl Clearance
## Listeria Monocytogenes Entry Into Host Cells Listeria Monocytogenes Entry Into Host Cells
## Meiotic Recombination Meiotic Recombination
## Nicotinamide Salvaging Nicotinamide Salvaging
## Phase 4 Resting Membrane Potential Phase 4 Resting Membrane Potential
## Phosphorylation Of The Apc C Phosphorylation Of The Apc C
## Pka Mediated Phosphorylation Of Creb Pka Mediated Phosphorylation Of Creb
## Plasma Lipoprotein Assembly Plasma Lipoprotein Assembly
## Regulation Of Tp53 Activity Through Methylation Regulation Of Tp53 Activity Through Methylation
## Signaling By Hippo Signaling By Hippo
## Signalling To Ras Signalling To Ras
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release
## Transcription Of E2f Targets Under Negative Control By Dream Complex Transcription Of E2f Targets Under Negative Control By Dream Complex
## Vegfr2 Mediated Cell Proliferation Vegfr2 Mediated Cell Proliferation
## Branched Chain Amino Acid Catabolism Branched Chain Amino Acid Catabolism
## Formation Of The Beta Catenin Tcf Transactivating Complex Formation Of The Beta Catenin Tcf Transactivating Complex
## Rho Gtpases Activate Paks Rho Gtpases Activate Paks
## Unfolded Protein Response Upr Unfolded Protein Response Upr
## Activation Of Nmda Receptors And Postsynaptic Events Activation Of Nmda Receptors And Postsynaptic Events
## Chaperone Mediated Autophagy Chaperone Mediated Autophagy
## Class B 2 Secretin Family Receptors Class B 2 Secretin Family Receptors
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models
## E2f Mediated Regulation Of Dna Replication E2f Mediated Regulation Of Dna Replication
## G2 M Dna Damage Checkpoint G2 M Dna Damage Checkpoint
## Incretin Synthesis Secretion And Inactivation Incretin Synthesis Secretion And Inactivation
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane
## Intrinsic Pathway Of Fibrin Clot Formation Intrinsic Pathway Of Fibrin Clot Formation
## Long Term Potentiation Long Term Potentiation
## Nucleotide Salvage Nucleotide Salvage
## Pink1 Prkn Mediated Mitophagy Pink1 Prkn Mediated Mitophagy
## Telomere Extension By Telomerase Telomere Extension By Telomerase
## Termination Of O Glycan Biosynthesis Termination Of O Glycan Biosynthesis
## Transcriptional Regulation By Runx3 Transcriptional Regulation By Runx3
## Transport To The Golgi And Subsequent Modification Transport To The Golgi And Subsequent Modification
## Apc C Cdc20 Mediated Degradation Of Cyclin B Apc C Cdc20 Mediated Degradation Of Cyclin B
## Cellular Response To Heat Stress Cellular Response To Heat Stress
## Metabolism Of Vitamins And Cofactors Metabolism Of Vitamins And Cofactors
## Other Interleukin Signaling Other Interleukin Signaling
## Rho Gtpases Activate Nadph Oxidases Rho Gtpases Activate Nadph Oxidases
## Triglyceride Catabolism Triglyceride Catabolism
## Abc Family Proteins Mediated Transport Abc Family Proteins Mediated Transport
## Adp Signalling Through P2y Purinoceptor 1 Adp Signalling Through P2y Purinoceptor 1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc
## Basigin Interactions Basigin Interactions
## Constitutive Signaling By Akt1 E17k In Cancer Constitutive Signaling By Akt1 E17k In Cancer
## Copi Mediated Anterograde Transport Copi Mediated Anterograde Transport
## Cyclin A B1 B2 Associated Events During G2 M Transition Cyclin A B1 B2 Associated Events During G2 M Transition
## Dectin 2 Family Dectin 2 Family
## Notch3 Intracellular Domain Regulates Transcription Notch3 Intracellular Domain Regulates Transcription
## Regulation Of Ifna Signaling Regulation Of Ifna Signaling
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa
## Signaling By Ntrk2 Trkb Signaling By Ntrk2 Trkb
## Signaling By Tgfb Family Members Signaling By Tgfb Family Members
## Wnt Ligand Biogenesis And Trafficking Wnt Ligand Biogenesis And Trafficking
## Asparagine N Linked Glycosylation Asparagine N Linked Glycosylation
## Bmal1 Clock Npas2 Activates Circadian Gene Expression Bmal1 Clock Npas2 Activates Circadian Gene Expression
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling
## Infection With Mycobacterium Tuberculosis Infection With Mycobacterium Tuberculosis
## Metabolism Of Porphyrins Metabolism Of Porphyrins
## Amyloid Fiber Formation Amyloid Fiber Formation
## Epha Mediated Growth Cone Collapse Epha Mediated Growth Cone Collapse
## G1 S Specific Transcription G1 S Specific Transcription
## Myogenesis Myogenesis
## Negative Epigenetic Regulation Of Rrna Expression Negative Epigenetic Regulation Of Rrna Expression
## Negative Regulation Of Fgfr3 Signaling Negative Regulation Of Fgfr3 Signaling
## Traf6 Mediated Irf7 Activation Traf6 Mediated Irf7 Activation
## Activation Of Bh3 Only Proteins Activation Of Bh3 Only Proteins
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane
## Met Activates Ptk2 Signaling Met Activates Ptk2 Signaling
## Negative Regulation Of Fgfr4 Signaling Negative Regulation Of Fgfr4 Signaling
## Transcriptional Regulation Of Pluripotent Stem Cells Transcriptional Regulation Of Pluripotent Stem Cells
## G Protein Beta Gamma Signalling G Protein Beta Gamma Signalling
## Meiosis Meiosis
## Negative Regulation Of Fgfr1 Signaling Negative Regulation Of Fgfr1 Signaling
## Nuclear Signaling By Erbb4 Nuclear Signaling By Erbb4
## Plasma Lipoprotein Remodeling Plasma Lipoprotein Remodeling
## Regulation Of Mecp2 Expression And Activity Regulation Of Mecp2 Expression And Activity
## Rho Gtpase Effectors Rho Gtpase Effectors
## Rho Gtpases Activate Iqgaps Rho Gtpases Activate Iqgaps
## Rhov Gtpase Cycle Rhov Gtpase Cycle
## Sialic Acid Metabolism Sialic Acid Metabolism
## Signal Amplification Signal Amplification
## Signaling By Notch2 Signaling By Notch2
## Signaling By Robo Receptors Signaling By Robo Receptors
## Thrombin Signalling Through Proteinase Activated Receptors Pars Thrombin Signalling Through Proteinase Activated Receptors Pars
## Late Endosomal Microautophagy Late Endosomal Microautophagy
## Metabolism Of Water Soluble Vitamins And Cofactors Metabolism Of Water Soluble Vitamins And Cofactors
## Negative Regulation Of Fgfr2 Signaling Negative Regulation Of Fgfr2 Signaling
## Oncogene Induced Senescence Oncogene Induced Senescence
## Raf Activation Raf Activation
## Resolution Of D Loop Structures Resolution Of D Loop Structures
## Rhou Gtpase Cycle Rhou Gtpase Cycle
## Signaling By Wnt Signaling By Wnt
## Signalling To Erks Signalling To Erks
## Ca Dependent Events Ca Dependent Events
## Hdr Through Single Strand Annealing Ssa Hdr Through Single Strand Annealing Ssa
## Interleukin 7 Signaling Interleukin 7 Signaling
## Metalloprotease Dubs Metalloprotease Dubs
## Mhc Class Ii Antigen Presentation Mhc Class Ii Antigen Presentation
## Nuclear Pore Complex Npc Disassembly Nuclear Pore Complex Npc Disassembly
## Rho Gtpases Activate Wasps And Waves Rho Gtpases Activate Wasps And Waves
## Ros And Rns Production In Phagocytes Ros And Rns Production In Phagocytes
## Cell Cell Communication Cell Cell Communication
## Diseases Of Mitotic Cell Cycle Diseases Of Mitotic Cell Cycle
## Triglyceride Metabolism Triglyceride Metabolism
## Adora2b Mediated Anti Inflammatory Cytokines Production Adora2b Mediated Anti Inflammatory Cytokines Production
## Association Of Tric Cct With Target Proteins During Biosynthesis Association Of Tric Cct With Target Proteins During Biosynthesis
## Formation Of Fibrin Clot Clotting Cascade Formation Of Fibrin Clot Clotting Cascade
## Generation Of Second Messenger Molecules Generation Of Second Messenger Molecules
## Ret Signaling Ret Signaling
## Signaling By Fgfr3 Signaling By Fgfr3
## Dag And Ip3 Signaling Dag And Ip3 Signaling
## Hcmv Early Events Hcmv Early Events
## Homologous Dna Pairing And Strand Exchange Homologous Dna Pairing And Strand Exchange
## Met Promotes Cell Motility Met Promotes Cell Motility
## Rnd1 Gtpase Cycle Rnd1 Gtpase Cycle
## Rnd3 Gtpase Cycle Rnd3 Gtpase Cycle
## Signaling By Fgfr4 Signaling By Fgfr4
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 Signaling By Rho Gtpases Miro Gtpases And Rhobtb3
## Transcriptional Regulation By Ventx Transcriptional Regulation By Ventx
## Aggrephagy Aggrephagy
## Rho Gtpases Activate Formins Rho Gtpases Activate Formins
## Rnd2 Gtpase Cycle Rnd2 Gtpase Cycle
## Sumoylation Of Transcription Cofactors Sumoylation Of Transcription Cofactors
## Transcriptional Regulation By Tp53 Transcriptional Regulation By Tp53
## Beta Catenin Independent Wnt Signaling Beta Catenin Independent Wnt Signaling
## Diseases Of Glycosylation Diseases Of Glycosylation
## Elastic Fibre Formation Elastic Fibre Formation
## Reproduction Reproduction
## Estrogen Dependent Gene Expression Estrogen Dependent Gene Expression
## Hiv Life Cycle Hiv Life Cycle
## Irs Mediated Signalling Irs Mediated Signalling
## Metabolism Of Fat Soluble Vitamins Metabolism Of Fat Soluble Vitamins
## Notch1 Intracellular Domain Regulates Transcription Notch1 Intracellular Domain Regulates Transcription
## Chondroitin Sulfate Dermatan Sulfate Metabolism Chondroitin Sulfate Dermatan Sulfate Metabolism
## Recycling Pathway Of L1 Recycling Pathway Of L1
## Retrograde Transport At The Trans Golgi Network Retrograde Transport At The Trans Golgi Network
## Signaling By Fgfr1 Signaling By Fgfr1
## Tp53 Regulates Transcription Of Cell Cycle Genes Tp53 Regulates Transcription Of Cell Cycle Genes
## Extension Of Telomeres Extension Of Telomeres
## Gap Junction Trafficking And Regulation Gap Junction Trafficking And Regulation
## Chromatin Modifying Enzymes Chromatin Modifying Enzymes
## G Protein Mediated Events G Protein Mediated Events
## Insulin Receptor Signalling Cascade Insulin Receptor Signalling Cascade
## Nuclear Envelope Breakdown Nuclear Envelope Breakdown
## Regulation Of Tp53 Activity Regulation Of Tp53 Activity
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r
## Synthesis Of Pips At The Plasma Membrane Synthesis Of Pips At The Plasma Membrane
## Hcmv Infection Hcmv Infection
## Regulation Of Runx3 Expression And Activity Regulation Of Runx3 Expression And Activity
## S Phase S Phase
## Transcriptional Activation Of Mitochondrial Biogenesis Transcriptional Activation Of Mitochondrial Biogenesis
## Dna Double Strand Break Repair Dna Double Strand Break Repair
## G2 M Checkpoints G2 M Checkpoints
## Iron Uptake And Transport Iron Uptake And Transport
## Signaling By Notch1 Pest Domain Mutants In Cancer Signaling By Notch1 Pest Domain Mutants In Cancer
## Signaling By The B Cell Receptor Bcr Signaling By The B Cell Receptor Bcr
## Stabilization Of P53 Stabilization Of P53
## Arachidonic Acid Metabolism Arachidonic Acid Metabolism
## Scf Skp2 Mediated Degradation Of P27 P21 Scf Skp2 Mediated Degradation Of P27 P21
## Dectin 1 Mediated Noncanonical Nf Kb Signaling Dectin 1 Mediated Noncanonical Nf Kb Signaling
## Defective Cftr Causes Cystic Fibrosis Defective Cftr Causes Cystic Fibrosis
## Disorders Of Transmembrane Transporters Disorders Of Transmembrane Transporters
## O Linked Glycosylation Of Mucins O Linked Glycosylation Of Mucins
## Asymmetric Localization Of Pcp Proteins Asymmetric Localization Of Pcp Proteins
## Synthesis Of Substrates In N Glycan Biosythesis Synthesis Of Substrates In N Glycan Biosythesis
## Cell Cycle Cell Cycle
## Hdr Through Homologous Recombination Hrr Hdr Through Homologous Recombination Hrr
## Rab Geranylgeranylation Rab Geranylgeranylation
## Regulation Of Hmox1 Expression And Activity Regulation Of Hmox1 Expression And Activity
## Diseases Associated With O Glycosylation Of Proteins Diseases Associated With O Glycosylation Of Proteins
## Fcgr Activation Fcgr Activation
## G1 S Dna Damage Checkpoints G1 S Dna Damage Checkpoints
## Nonhomologous End Joining Nhej Nonhomologous End Joining Nhej
## Sirt1 Negatively Regulates Rrna Expression Sirt1 Negatively Regulates Rrna Expression
## Aurka Activation By Tpx2 Aurka Activation By Tpx2
## Condensation Of Prophase Chromosomes Condensation Of Prophase Chromosomes
## Signaling By Fgfr2 Signaling By Fgfr2
## Signaling By Notch1 Signaling By Notch1
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane Translocation Of Slc2a4 Glut4 To The Plasma Membrane
## Ecm Proteoglycans Ecm Proteoglycans
## Nuclear Envelope Ne Reassembly Nuclear Envelope Ne Reassembly
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein
## Signaling By Insulin Receptor Signaling By Insulin Receptor
## Dna Damage Telomere Stress Induced Senescence Dna Damage Telomere Stress Induced Senescence
## Downstream Signaling Events Of B Cell Receptor Bcr Downstream Signaling Events Of B Cell Receptor Bcr
## G Alpha 12 13 Signalling Events G Alpha 12 13 Signalling Events
## Neurotransmitter Receptors And Postsynaptic Signal Transmission Neurotransmitter Receptors And Postsynaptic Signal Transmission
## Potential Therapeutics For Sars Potential Therapeutics For Sars
## Recruitment Of Mitotic Centrosome Proteins And Complexes Recruitment Of Mitotic Centrosome Proteins And Complexes
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint The Role Of Gtse1 In G2 M Progression After G2 Checkpoint
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers
## Degradation Of Beta Catenin By The Destruction Complex Degradation Of Beta Catenin By The Destruction Complex
## Fceri Mediated Ca 2 Mobilization Fceri Mediated Ca 2 Mobilization
## Pi Metabolism Pi Metabolism
## Apc C Mediated Degradation Of Cell Cycle Proteins Apc C Mediated Degradation Of Cell Cycle Proteins
## Regulation Of Plk1 Activity At G2 M Transition Regulation Of Plk1 Activity At G2 M Transition
## Signaling By Fgfr Signaling By Fgfr
## Opioid Signalling Opioid Signalling
## Peptide Hormone Metabolism Peptide Hormone Metabolism
## Rab Gefs Exchange Gtp For Gdp On Rabs Rab Gefs Exchange Gtp For Gdp On Rabs
## Mitochondrial Biogenesis Mitochondrial Biogenesis
## Pcp Ce Pathway Pcp Ce Pathway
## Post Translational Modification Synthesis Of Gpi Anchored Proteins Post Translational Modification Synthesis Of Gpi Anchored Proteins
## Regulation Of Tp53 Activity Through Phosphorylation Regulation Of Tp53 Activity Through Phosphorylation
## Anchoring Of The Basal Body To The Plasma Membrane Anchoring Of The Basal Body To The Plasma Membrane
## Hiv Infection Hiv Infection
## Recruitment Of Numa To Mitotic Centrosomes Recruitment Of Numa To Mitotic Centrosomes
## Metabolism Of Nucleotides Metabolism Of Nucleotides
## Processing Of Dna Double Strand Break Ends Processing Of Dna Double Strand Break Ends
## Protein Folding Protein Folding
## Visual Phototransduction Visual Phototransduction
## Diseases Of Metabolism Diseases Of Metabolism
## Potassium Channels Potassium Channels
## Stimuli Sensing Channels Stimuli Sensing Channels
## O Linked Glycosylation O Linked Glycosylation
## Telomere Maintenance Telomere Maintenance
## Neuronal System Neuronal System
## Cell Cycle Mitotic Cell Cycle Mitotic
## Regulation Of Lipid Metabolism By Pparalpha Regulation Of Lipid Metabolism By Pparalpha
## Transmission Across Chemical Synapses Transmission Across Chemical Synapses
## Glycosaminoglycan Metabolism Glycosaminoglycan Metabolism
## Rab Regulation Of Trafficking Rab Regulation Of Trafficking
## Cardiac Conduction Cardiac Conduction
## Resolution Of Sister Chromatid Cohesion Resolution Of Sister Chromatid Cohesion
## Transport Of Small Molecules Transport Of Small Molecules
## Cell Cycle Checkpoints Cell Cycle Checkpoints
## Fceri Mediated Nf Kb Activation Fceri Mediated Nf Kb Activation
## Homology Directed Repair Homology Directed Repair
## Metabolism Of Carbohydrates Metabolism Of Carbohydrates
## Organelle Biogenesis And Maintenance Organelle Biogenesis And Maintenance
## Chromosome Maintenance Chromosome Maintenance
## G Alpha S Signalling Events G Alpha S Signalling Events
## Mitotic Prophase Mitotic Prophase
## Sars Cov Infections Sars Cov Infections
## Dna Repair Dna Repair
## Protein Localization Protein Localization
## Factors Involved In Megakaryocyte Development And Platelet Production Factors Involved In Megakaryocyte Development And Platelet Production
## Fatty Acid Metabolism Fatty Acid Metabolism
## Ion Channel Transport Ion Channel Transport
## Muscle Contraction Muscle Contraction
## Cilium Assembly Cilium Assembly
## Intra Golgi And Retrograde Golgi To Er Traffic Intra Golgi And Retrograde Golgi To Er Traffic
## Mitotic G2 G2 M Phases Mitotic G2 G2 M Phases
## Mitotic Prometaphase Mitotic Prometaphase
## Metabolism Of Lipids Metabolism Of Lipids
## Phospholipid Metabolism Phospholipid Metabolism
## Mitotic Metaphase And Anaphase Mitotic Metaphase And Anaphase
## Metabolism Of Amino Acids And Derivatives Metabolism Of Amino Acids And Derivatives
## M Phase M Phase
## Sensory Perception Sensory Perception
## 2 Ltr Circle Formation 2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism Abacavir Metabolism
## Abacavir Transmembrane Transport Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism Abacavir Transport And Metabolism
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5 Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3 Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Pi3k Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Ras Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activation Of Ampk Downstream Of Nmdars Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria Activation Of Bad And Translocation To Mitochondria
## Activation Of Gene Expression By Srebf Srebp Activation Of Gene Expression By Srebf Srebp
## Activation Of Kainate Receptors Upon Glutamate Binding Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Noxa And Translocation To Mitochondria Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1 Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells Activation Of Ras In B Cells
## Activation Of Smo Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps Acyl Chain Remodelling Of Ps
## Adenylate Cyclase Activating Pathway Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions Adherens Junctions Interactions
## Adp Signalling Through P2y Purinoceptor 12 Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors Adrenoceptors
## Aflatoxin Activation And Detoxification Aflatoxin Activation And Detoxification
## Akt Phosphorylates Targets In The Cytosol Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway Alpha Protein Kinase 1 Signaling Pathway
## Amine Ligand Binding Receptors Amine Ligand Binding Receptors
## Amino Acid Conjugation Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1 Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity Ampk Inhibits Chrebp Transcriptional Activation Activity
## Anchoring Fibril Formation Anchoring Fibril Formation
## Androgen Biosynthesis Androgen Biosynthesis
## Antigen Processing Ubiquitination Proteasome Degradation Antigen Processing Ubiquitination Proteasome Degradation
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc Cdc20 Mediated Degradation Of Nek2a Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection Apobec3g Mediated Resistance To Hiv 1 Infection
## Aquaporin Mediated Transport Aquaporin Mediated Transport
## Arachidonate Production From Dag Arachidonate Production From Dag
## Arms Mediated Activation Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling Aryl Hydrocarbon Receptor Signalling
## Aspartate And Asparagine Metabolism Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of The Hiv Virion Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex Assembly Of The Pre Replicative Complex
## Atf6 Atf6 Alpha Activates Chaperone Genes Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry Attachment And Entry
## Attachment Of Gpi Anchor To Upar Attachment Of Gpi Anchor To Upar
## Attenuation Phase Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## B Wich Complex Positively Regulates Rrna Expression B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair Base Excision Repair
## Base Excision Repair Ap Site Formation Base Excision Repair Ap Site Formation
## Bbsome Mediated Cargo Targeting To Cilium Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Phosphorylation Cascade Beta Catenin Phosphorylation Cascade
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids Beta Oxidation Of Very Long Chain Fatty Acids
## Bicarbonate Transporters Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism Bile Acid And Bile Salt Metabolism
## Biological Oxidations Biological Oxidations
## Biosynthesis Of Maresin Like Spms Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins Biosynthesis Of Maresins
## Biotin Transport And Metabolism Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis Blood Group Systems Biosynthesis
## Budding And Maturation Of Hiv Virion Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions Butyrophilin Btn Family Interactions
## Ca2 Activated K Channels Ca2 Activated K Channels
## Calcineurin Activates Nfat Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin Carboxyterminal Post Translational Modifications Of Tubulin
## Cargo Trafficking To The Periciliary Membrane Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism Carnitine Metabolism
## Cation Coupled Chloride Cotransporters Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation Cd22 Mediated Bcr Regulation
## Cdc6 Association With The Orc Origin Complex Cdc6 Association With The Orc Origin Complex
## Cell Cell Junction Organization Cell Cell Junction Organization
## Cell Extracellular Matrix Interactions Cell Extracellular Matrix Interactions
## Cell Junction Organization Cell Junction Organization
## Cellular Hexose Transport Cellular Hexose Transport
## Cellular Response To Hypoxia Cellular Response To Hypoxia
## Cellular Response To Starvation Cellular Response To Starvation
## Cgmp Effects Cgmp Effects
## Chl1 Interactions Chl1 Interactions
## Cholesterol Biosynthesis Cholesterol Biosynthesis
## Choline Catabolism Choline Catabolism
## Chondroitin Sulfate Biosynthesis Chondroitin Sulfate Biosynthesis
## Chrebp Activates Metabolic Gene Expression Chrebp Activates Metabolic Gene Expression
## Chylomicron Clearance Chylomicron Clearance
## Citric Acid Cycle Tca Cycle Citric Acid Cycle Tca Cycle
## Class C 3 Metabotropic Glutamate Pheromone Receptors Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Peroxisomal Membrane Protein Import Class I Peroxisomal Membrane Protein Import
## Clec7a Dectin 1 Induces Nfat Activation Clec7a Dectin 1 Induces Nfat Activation
## Cobalamin Cbl Vitamin B12 Transport And Metabolism Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization Collagen Chain Trimerization
## Common Pathway Of Fibrin Clot Formation Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complex I Biogenesis Complex I Biogenesis
## Conjugation Of Benzoate With Glycine Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Overexpressed Erbb2 Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic Copi Independent Golgi To Er Retrograde Traffic
## Creatine Metabolism Creatine Metabolism
## Creb3 Factors Activate Genes Creb3 Factors Activate Genes
## Cristae Formation Cristae Formation
## Crmps In Sema3a Signaling Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Cs Ds Degradation Cs Ds Degradation
## Cyp2e1 Reactions Cyp2e1 Reactions
## Cytochrome P450 Arranged By Substrate Type Cytochrome P450 Arranged By Substrate Type
## Cytosolic Iron Sulfur Cluster Assembly Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation Cytosolic Trna Aminoacylation
## Darpp 32 Events Darpp 32 Events
## Deactivation Of The Beta Catenin Transactivating Complex Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna Deadenylation Of Mrna
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type Defective B4galt7 Causes Eds Progeroid Type
## Defective Chst14 Causes Eds Musculocontractural Type Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1 Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5 Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2 Defective Ext2 Causes Exostoses 2
## Defective F9 Activation Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B Defective Factor Ix Causes Hemophilia B
## Defective Lfng Causes Scdo3 Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15 Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism Defects In Vitamin And Cofactor Metabolism
## Degradation Of Axin Degradation Of Axin
## Degradation Of Cysteine And Homocysteine Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome Degradation Of Gli1 By The Proteasome
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Detoxification Of Reactive Oxygen Species Detoxification Of Reactive Oxygen Species
## Digestion Digestion
## Digestion And Absorption Digestion And Absorption
## Digestion Of Dietary Carbohydrate Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid Digestion Of Dietary Lipid
## Diseases Associated With Glycosaminoglycan Metabolism Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With N Glycosylation Of Proteins Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair Diseases Of Dna Repair
## Diseases Of Mismatch Repair Mmr Diseases Of Mismatch Repair Mmr
## Disinhibition Of Snare Formation Disinhibition Of Snare Formation
## Displacement Of Dna Glycosylase By Apex1 Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass Dna Damage Bypass
## Dna Damage Recognition In Gg Ner Dna Damage Recognition In Gg Ner
## Dna Damage Reversal Dna Damage Reversal
## Dna Replication Dna Replication
## Dna Replication Initiation Dna Replication Initiation
## Dna Replication Pre Initiation Dna Replication Pre Initiation
## Dna Strand Elongation Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signaling Of Activated Fgfr1 Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2 Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3 Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4 Downstream Signaling Of Activated Fgfr4
## Dual Incision In Gg Ner Dual Incision In Gg Ner
## Dual Incision In Tc Ner Dual Incision In Tc Ner
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Effects Of Pip2 Hydrolysis Effects Of Pip2 Hydrolysis
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors Eicosanoid Ligand Binding Receptors
## Eicosanoids Eicosanoids
## Electric Transmission Across Gap Junctions Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt Endosomal Sorting Complex Required For Transport Escrt
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Er Quality Control Compartment Erqc Er Quality Control Compartment Erqc
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets Erk Mapk Targets
## Erks Are Inactivated Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras Erythropoietin Activates Ras
## Erythropoietin Activates Stat5 Erythropoietin Activates Stat5
## Establishment Of Sister Chromatid Cohesion Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis Estrogen Biosynthesis
## Estrogen Stimulated Signaling Through Prkcz Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation Ethanol Oxidation
## Eukaryotic Translation Elongation Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus Export Of Viral Ribonucleoproteins From Nucleus
## Extrinsic Pathway Of Fibrin Clot Formation Extrinsic Pathway Of Fibrin Clot Formation
## Fanconi Anemia Pathway Fanconi Anemia Pathway
## Fatty Acids Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer Fbxw7 Mutants And Notch1 In Cancer
## Fertilization Fertilization
## Fgfr1 Ligand Binding And Activation Fgfr1 Ligand Binding And Activation
## Fgfr1b Ligand Binding And Activation Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling Flt3 Signaling
## Flt3 Signaling By Cbl Mutants Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric Folding Of Actin By Cct Tric
## Formation Of Apoptosome Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling Formation Of Atp By Chemiosmotic Coupling
## Formation Of Incision Complex In Gg Ner Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex Formation Of Tc Ner Pre Incision Complex
## Formation Of The Cornified Envelope Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling Frs Mediated Fgfr4 Signaling
## Fructose Catabolism Fructose Catabolism
## Fructose Metabolism Fructose Metabolism
## G Alpha Z Signalling Events G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Pi3kgamma G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation G Protein Activation
## G2 Phase G2 Phase
## Gaba B Receptor Activation Gaba B Receptor Activation
## Gaba Receptor Activation Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation Gaba Synthesis Release Reuptake And Degradation
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly Gap Junction Assembly
## Gap Junction Degradation Gap Junction Degradation
## Gdp Fucose Biosynthesis Gdp Fucose Biosynthesis
## Gene Silencing By Rna Gene Silencing By Rna
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis Glucocorticoid Biosynthesis
## Gluconeogenesis Gluconeogenesis
## Glucose Metabolism Glucose Metabolism
## Glucuronidation Glucuronidation
## Glutamate And Glutamine Metabolism Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation Glutathione Conjugation
## Glutathione Synthesis And Recycling Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism Glycogen Metabolism
## Glycogen Storage Diseases Glycogen Storage Diseases
## Glycogen Synthesis Glycogen Synthesis
## Glycolysis Glycolysis
## Glycosphingolipid Metabolism Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis Golgi Associated Vesicle Biogenesis
## Golgi To Er Retrograde Transport Golgi To Er Retrograde Transport
## Grb7 Events In Erbb2 Signaling Grb7 Events In Erbb2 Signaling
## Hats Acetylate Histones Hats Acetylate Histones
## Hcmv Late Events Hcmv Late Events
## Hdacs Deacetylate Histones Hdacs Deacetylate Histones
## Hdms Demethylate Histones Hdms Demethylate Histones
## Hdr Through Mmej Alt Nhej Hdr Through Mmej Alt Nhej
## Hedgehog Ligand Biogenesis Hedgehog Ligand Biogenesis
## Hedgehog Off State Hedgehog Off State
## Hedgehog On State Hedgehog On State
## Heme Biosynthesis Heme Biosynthesis
## Heparan Sulfate Heparin Hs Gag Metabolism Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism Histidine Catabolism
## Hiv Elongation Arrest And Recovery Hiv Elongation Arrest And Recovery
## Hiv Transcription Elongation Hiv Transcription Elongation
## Hiv Transcription Initiation Hiv Transcription Initiation
## Hormone Ligand Binding Receptors Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis Hs Gag Biosynthesis
## Hs Gag Degradation Hs Gag Degradation
## Hsf1 Activation Hsf1 Activation
## Hsf1 Dependent Transactivation Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc Hydrolysis Of Lpc
## Il 6 Type Cytokine Receptor Ligand Interactions Il 6 Type Cytokine Receptor Ligand Interactions
## Influenza Infection Influenza Infection
## Inhibition Of Dna Recombination At Telomere Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Inositol Phosphate Metabolism Inositol Phosphate Metabolism
## Insulin Processing Insulin Processing
## Insulin Receptor Recycling Insulin Receptor Recycling
## Integration Of Energy Metabolism Integration Of Energy Metabolism
## Integration Of Provirus Integration Of Provirus
## Interaction Between L1 And Ankyrins Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates Interconversion Of Nucleotide Di And Triphosphates
## Interleukin 36 Pathway Interleukin 36 Pathway
## Intestinal Absorption Intestinal Absorption
## Intra Golgi Traffic Intra Golgi Traffic
## Intraflagellar Transport Intraflagellar Transport
## Inwardly Rectifying K Channels Inwardly Rectifying K Channels
## Ion Homeostasis Ion Homeostasis
## Ion Transport By P Type Atpases Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors Ionotropic Activity Of Kainate Receptors
## Irak2 Mediated Activation Of Tak1 Complex Irak2 Mediated Activation Of Tak1 Complex
## Ire1alpha Activates Chaperones Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn Irf3 Mediated Activation Of Type 1 Ifn
## Irs Activation Irs Activation
## Josephin Domain Dubs Josephin Domain Dubs
## Keratan Sulfate Biosynthesis Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism Keratan Sulfate Keratin Metabolism
## Keratinization Keratinization
## Ketone Body Metabolism Ketone Body Metabolism
## Kinesins Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna Ksrp Khsrp Binds And Destabilizes Mrna
## Lagging Strand Synthesis Lagging Strand Synthesis
## Laminin Interactions Laminin Interactions
## Leukotriene Receptors Leukotriene Receptors
## Lgi Adam Interactions Lgi Adam Interactions
## Ligand Receptor Interactions Ligand Receptor Interactions
## Linoleic Acid La Metabolism Linoleic Acid La Metabolism
## Lipid Particle Organization Lipid Particle Organization
## Lipophagy Lipophagy
## Loss Of Function Of Mecp2 In Rett Syndrome Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism Lysine Catabolism
## Lysosome Vesicle Biogenesis Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors Lysosphingolipid And Lpa Receptors
## Map3k8 Tpl2 Dependent Mapk1 3 Activation Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Maturation Of Nucleoprotein Maturation Of Nucleoprotein
## Maturation Of Protein 3a Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein Maturation Of Sars Cov 2 Spike Protein
## Meiotic Synapsis Meiotic Synapsis
## Melanin Biosynthesis Melanin Biosynthesis
## Met Activates Pi3k Akt Signaling Met Activates Pi3k Akt Signaling
## Met Activates Ptpn11 Met Activates Ptpn11
## Met Activates Rap1 And Rac1 Met Activates Rap1 And Rac1
## Met Activates Ras Signaling Met Activates Ras Signaling
## Met Interacts With Tns Proteins Met Interacts With Tns Proteins
## Met Receptor Activation Met Receptor Activation
## Met Receptor Recycling Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones Metabolism Of Amine Derived Hormones
## Metabolism Of Angiotensinogen To Angiotensins Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Cofactors Metabolism Of Cofactors
## Metabolism Of Folate And Pterines Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Polyamines Metabolism Of Polyamines
## Metabolism Of Rna Metabolism Of Rna
## Metabolism Of Steroid Hormones Metabolism Of Steroid Hormones
## Metabolism Of Steroids Metabolism Of Steroids
## Metal Ion Slc Transporters Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins Metal Sequestration By Antimicrobial Proteins
## Metallothioneins Bind Metals Metallothioneins Bind Metals
## Methionine Salvage Pathway Methionine Salvage Pathway
## Methylation Methylation
## Microrna Mirna Biogenesis Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle Miro Gtpase Cycle
## Miscellaneous Substrates Miscellaneous Substrates
## Miscellaneous Transport And Binding Events Miscellaneous Transport And Binding Events
## Mismatch Repair Mismatch Repair
## Mitochondrial Calcium Ion Transport Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import Mitochondrial Protein Import
## Mitochondrial Translation Mitochondrial Translation
## Mitochondrial Trna Aminoacylation Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling Mitochondrial Uncoupling
## Mitotic Spindle Checkpoint Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis Mitotic Telophase Cytokinesis
## Molecules Associated With Elastic Fibres Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis Molybdenum Cofactor Biosynthesis
## Mrna Capping Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing Mrna Editing
## Mrna Editing C To U Conversion Mrna Editing C To U Conversion
## Mrna Splicing Mrna Splicing
## Mrna Splicing Minor Pathway Mrna Splicing Minor Pathway
## Mtor Signalling Mtor Signalling
## Mtorc1 Mediated Signalling Mtorc1 Mediated Signalling
## Mucopolysaccharidoses Mucopolysaccharidoses
## Multifunctional Anion Exchangers Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors Muscarinic Acetylcholine Receptors
## Myoclonic Epilepsy Of Lafora Myoclonic Epilepsy Of Lafora
## N Glycan Antennae Elongation N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters Na Cl Dependent Neurotransmitter Transporters
## Ncam1 Interactions Ncam1 Interactions
## Nectin Necl Trans Heterodimerization Nectin Necl Trans Heterodimerization
## Neddylation Neddylation
## Nef And Signal Transduction Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Feedback Regulation Of Mapk Pathway Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Flt3 Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Nephrin Family Interactions Nephrin Family Interactions
## Neurexins And Neuroligins Neurexins And Neuroligins
## Neurofascin Interactions Neurofascin Interactions
## Neurotoxicity Of Clostridium Toxins Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance Neurotransmitter Clearance
## Neurotransmitter Release Cycle Neurotransmitter Release Cycle
## Ngf Independant Trka Activation Ngf Independant Trka Activation
## Nitric Oxide Stimulates Guanylate Cyclase Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3 Noncanonical Activation Of Notch3
## Nonsense Mediated Decay Nmd Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle Norepinephrine Neurotransmitter Release Cycle
## Notch Hlh Transcription Pathway Notch Hlh Transcription Pathway
## Notch2 Activation And Transmission Of Signal To The Nucleus Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch4 Activation And Transmission Of Signal To The Nucleus Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrcam Interactions Nrcam Interactions
## Ns1 Mediated Effects On Host Pathways Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1 Ntrk2 Activates Rac1
## Nuclear Import Of Rev Protein Nuclear Import Of Rev Protein
## Nuclear Receptor Transcription Pathway Nuclear Receptor Transcription Pathway
## Nucleobase Biosynthesis Nucleobase Biosynthesis
## Nucleobase Catabolism Nucleobase Catabolism
## Nucleotide Excision Repair Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors Nucleotide Like Purinergic Receptors
## O Glycosylation Of Tsr Domain Containing Proteins O Glycosylation Of Tsr Domain Containing Proteins
## Olfactory Signaling Pathway Olfactory Signaling Pathway
## Opsins Opsins
## Orc1 Removal From Chromatin Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organic Anion Transport Organic Anion Transport
## Organic Anion Transporters Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport Organic Cation Anion Zwitterion Transport
## Organic Cation Transport Organic Cation Transport
## P2y Receptors P2y Receptors
## P75ntr Negatively Regulates Cell Cycle Via Sc1 P75ntr Negatively Regulates Cell Cycle Via Sc1
## Passive Transport By Aquaporins Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair Pcna Dependent Long Patch Base Excision Repair
## Pentose Phosphate Pathway Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis Peptide Hormone Biosynthesis
## Peroxisomal Lipid Metabolism Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import Peroxisomal Protein Import
## Phase 0 Rapid Depolarisation Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation Phase 3 Rapid Repolarisation
## Phase I Functionalization Of Compounds Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2 Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4 Phospholipase C Mediated Cascade Fgfr4
## Physiological Factors Physiological Factors
## Pi 3k Cascade Fgfr1 Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2 Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3 Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4 Pi 3k Cascade Fgfr4
## Pi3k Akt Activation Pi3k Akt Activation
## Pi3k Events In Erbb4 Signaling Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation Pi5p Regulates Tp53 Acetylation
## Piwi Interacting Rna Pirna Biogenesis Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines Pkmts Methylate Histone Lysines
## Platelet Calcium Homeostasis Platelet Calcium Homeostasis
## Platelet Homeostasis Platelet Homeostasis
## Platelet Sensitization By Ldl Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events Polo Like Kinase Mediated Events
## Polymerase Switching Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway Post Chaperonin Tubulin Folding Pathway
## Postmitotic Nuclear Pore Complex Npc Reformation Postmitotic Nuclear Pore Complex Npc Reformation
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Pre Notch Expression And Processing Pre Notch Expression And Processing
## Pre Notch Processing In Golgi Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna Processing Of Capped Intronless Pre Mrna
## Processing Of Intronless Pre Mrnas Processing Of Intronless Pre Mrnas
## Processing Of Smdt1 Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand Processive Synthesis On The Lagging Strand
## Prolactin Receptor Signaling Prolactin Receptor Signaling
## Prolonged Erk Activation Events Prolonged Erk Activation Events
## Propionyl Coa Catabolism Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors Prostanoid Ligand Receptors
## Protein Methylation Protein Methylation
## Protein Protein Interactions At Synapses Protein Protein Interactions At Synapses
## Protein Ubiquitination Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport Proton Coupled Monocarboxylate Transport
## Pten Regulation Pten Regulation
## Ptk6 Expression Ptk6 Expression
## Ptk6 Regulates Proteins Involved In Rna Processing Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis Purine Ribonucleoside Monophosphate Biosynthesis
## Pyrimidine Catabolism Pyrimidine Catabolism
## Pyrimidine Salvage Pyrimidine Salvage
## Pyruvate Metabolism Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway Ra Biosynthesis Pathway
## Rap1 Signalling Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Type Tyrosine Protein Phosphatases Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recycling Of Bile Acids And Salts Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp Recycling Of Eif2 Gdp
## Reduction Of Cytosolic Ca Levels Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr Regulated Proteolysis Of P75ntr
## Regulation Of Bach1 Activity Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos Regulation Of Expression Of Slits And Robos
## Regulation Of Fzd By Ubiquitination Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Innate Immune Responses To Cytosolic Dna Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Secretion Regulation Of Insulin Secretion
## Regulation Of Localization Of Foxo Transcription Factors Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Pten Gene Transcription Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps Regulation Of Ras By Gaps
## Regulation Of Signaling By Cbl Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal Regulation Of Signaling By Nodal
## Regulation Of Tp53 Activity Through Acetylation Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors Regulation Of Tp53 Activity Through Association With Co Factors
## Relaxin Receptors Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Resolution Of Abasic Sites Ap Sites Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Respiratory Electron Transport Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis Response Of Mtb To Phagocytosis
## Response To Metal Ions Response To Metal Ions
## Retinoid Cycle Disease Events Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling Retrograde Neurotrophin Signalling
## Reversible Hydration Of Carbon Dioxide Reversible Hydration Of Carbon Dioxide
## Rho Gtpases Activate Cit Rho Gtpases Activate Cit
## Rho Gtpases Activate Pkns Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks Rho Gtpases Activate Rocks
## Rhobtb Gtpase Cycle Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle Rhobtb3 Atpase Cycle
## Rhot1 Gtpase Cycle Rhot1 Gtpase Cycle
## Rna Polymerase I Promoter Escape Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination Rna Polymerase Iii Transcription Termination
## Robo Receptors Bind Akap5 Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression Rora Activates Gene Expression
## Rrna Modification In The Mitochondrion Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol Rrna Modification In The Nucleus And Cytosol
## Rrna Processing Rrna Processing
## Rrna Processing In The Mitochondrion Rrna Processing In The Mitochondrion
## Rsk Activation Rsk Activation
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx3 Regulates Bcl2l11 Bim Transcription Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf Runx3 Regulates P14 Arf
## Runx3 Regulates Yap1 Mediated Transcription Runx3 Regulates Yap1 Mediated Transcription
## Sars Cov 1 Genome Replication And Transcription Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection Sars Cov 1 Infection
## Sars Cov 2 Infection Sars Cov 2 Infection
## Scavenging By Class F Receptors Scavenging By Class F Receptors
## Sealing Of The Nuclear Envelope Ne By Escrt Iii Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selenoamino Acid Metabolism Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Sensory Processing Of Sound Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids Separation Of Sister Chromatids
## Serine Biosynthesis Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors Serotonin Receptors
## Shc Mediated Cascade Fgfr1 Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3 Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4 Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r Shc Related Events Triggered By Igf1r
## Shc1 Events In Erbb4 Signaling Shc1 Events In Erbb4 Signaling
## Signal Attenuation Signal Attenuation
## Signaling By Activin Signaling By Activin
## Signaling By Bmp Signaling By Bmp
## Signaling By Ctnnb1 Phospho Site Mutants Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Erythropoietin Signaling By Erythropoietin
## Signaling By Fgfr2 Iiia Tm Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease Signaling By Fgfr2 In Disease
## Signaling By Fgfr3 Fusions In Cancer Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4 In Disease Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Hedgehog Signaling By Hedgehog
## Signaling By Lrp5 Mutants Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Mras Complex Mutants Signaling By Mras Complex Mutants
## Signaling By Mst1 Signaling By Mst1
## Signaling By Nodal Signaling By Nodal
## Signaling By Notch1 Hd Domain Mutants In Cancer Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch4 Signaling By Notch4
## Signaling By Retinoic Acid Signaling By Retinoic Acid
## Signaling By Rnf43 Mutants Signaling By Rnf43 Mutants
## Signaling By Tgf Beta Receptor Complex In Cancer Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By Wnt In Cancer Signaling By Wnt In Cancer
## Signalling To P38 Via Rit And Rin Signalling To P38 Via Rit And Rin
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport Slc Mediated Transmembrane Transport
## Slc Transporter Disorders Slc Transporter Disorders
## Small Interfering Rna Sirna Biogenesis Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction Smooth Muscle Contraction
## Snrnp Assembly Snrnp Assembly
## Sodium Calcium Exchangers Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers Sodium Proton Exchangers
## Sos Mediated Signalling Sos Mediated Signalling
## Sperm Motility And Taxes Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism Sphingolipid Metabolism
## Srp Dependent Cotranslational Protein Targeting To Membrane Srp Dependent Cotranslational Protein Targeting To Membrane
## Stat5 Activation Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants Stat5 Activation Downstream Of Flt3 Itd Mutants
## Striated Muscle Contraction Striated Muscle Contraction
## Sulfide Oxidation To Sulfate Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1 Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation Of Chromatin Organization Proteins Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins Sumoylation Of Dna Replication Proteins
## Sumoylation Of Intracellular Receptors Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Factors Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation Suppression Of Phagosomal Maturation
## Surfactant Metabolism Surfactant Metabolism
## Switching Of Origins To A Post Replicative State Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules Synaptic Adhesion Like Molecules
## Syndecan Interactions Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2 Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx Synthesis Of Lipoxins Lx
## Synthesis Of Pa Synthesis Of Pa
## Synthesis Of Pc Synthesis Of Pc
## Synthesis Of Pe Synthesis Of Pe
## Synthesis Of Pg Synthesis Of Pg
## Synthesis Of Pi Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pyrophosphates In The Cytosol Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Udp N Acetyl Glucosamine Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin Synthesis Secretion And Deacylation Of Ghrelin
## Tachykinin Receptors Bind Tachykinins Tachykinin Receptors Bind Tachykinins
## Tbc Rabgaps Tbc Rabgaps
## Telomere C Strand Lagging Strand Synthesis Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation Telomere C Strand Synthesis Initiation
## Terminal Pathway Of Complement Terminal Pathway Of Complement
## Termination Of Translesion Dna Synthesis Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model The Fatty Acid Cycling Model
## The Phototransduction Cascade The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision The Retinoid Cycle In Cones Daylight Vision
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thromboxane Signalling Through Tp Receptor Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis Thyroxine Biosynthesis
## Tie2 Signaling Tie2 Signaling
## Tight Junction Interactions Tight Junction Interactions
## Toxicity Of Botulinum Toxin Type D Botd Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Death Receptors And Ligands Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Trafficking Of Ampa Receptors Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling Trail Signaling
## Trans Golgi Network Vesicle Budding Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of The Hiv Genome Transcription Of The Hiv Genome
## Transcriptional Regulation By E2f6 Transcriptional Regulation By E2f6
## Transcriptional Regulation By Small Rnas Transcriptional Regulation By Small Rnas
## Transcriptional Regulation Of Testis Differentiation Transcriptional Regulation Of Testis Differentiation
## Transferrin Endocytosis And Recycling Transferrin Endocytosis And Recycling
## Translation Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh Translesion Synthesis By Polh
## Translesion Synthesis By Polk Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Transport And Synthesis Of Paps Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars Transport Of Nucleotide Sugars
## Transport Of Organic Anions Transport Of Organic Anions
## Transport Of The Slbp Dependant Mature Mrna Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules Transport Of Vitamins Nucleosides And Related Molecules
## Triglyceride Biosynthesis Triglyceride Biosynthesis
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation Trna Aminoacylation
## Trna Modification In The Mitochondrion Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol Trna Modification In The Nucleus And Cytosol
## Trna Processing Trna Processing
## Trna Processing In The Mitochondrion Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus Trna Processing In The Nucleus
## Trp Channels Trp Channels
## Tryptophan Catabolism Tryptophan Catabolism
## Type I Hemidesmosome Assembly Type I Hemidesmosome Assembly
## Tyrosine Catabolism Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins Tysnd1 Cleaves Peroxisomal Proteins
## Ubiquinol Biosynthesis Ubiquinol Biosynthesis
## Uch Proteinases Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unwinding Of Dna Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin Uptake And Function Of Diphtheria Toxin
## Urea Cycle Urea Cycle
## Vasopressin Like Receptors Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions Vegf Ligand Receptor Interactions
## Viral Messenger Rna Synthesis Viral Messenger Rna Synthesis
## Vitamin B1 Thiamin Metabolism Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism Vitamin D Calciferol Metabolism
## Vitamins Vitamins
## Vldl Assembly Vldl Assembly
## Vldl Clearance Vldl Clearance
## Voltage Gated Potassium Channels Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl Wnt Mediated Activation Of Dvl
## Xenobiotics Xenobiotics
## Zinc Efflux And Compartmentalization By The Slc30 Family Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters Zinc Transporters
## pval
## Cytokine Signaling In Immune System 5.6e-50
## Signaling By Interleukins 2.1e-47
## Innate Immune System 6.0e-43
## Interleukin 10 Signaling 1.7e-33
## Interleukin 4 And Interleukin 13 Signaling 1.2e-30
## Chemokine Receptors Bind Chemokines 5.1e-27
## Peptide Ligand Binding Receptors 2.6e-21
## Toll Like Receptor Cascades 1.4e-19
## Signaling By Gpcr 4.9e-17
## Class A 1 Rhodopsin Like Receptors 2.8e-16
## Toll Like Receptor Tlr1 Tlr2 Cascade 9.1e-16
## Gpcr Ligand Binding 4.5e-15
## Interleukin 1 Family Signaling 5.0e-15
## G Alpha I Signalling Events 1.3e-14
## Neutrophil Degranulation 8.6e-14
## Toll Like Receptor 9 Tlr9 Cascade 1.6e-13
## Adaptive Immune System 1.4e-12
## Myd88 Independent Tlr4 Cascade 5.5e-12
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 7.7e-12
## Diseases Of Immune System 4.2e-11
## Death Receptor Signalling 4.7e-10
## Leishmania Infection 8.8e-10
## Irak4 Deficiency Tlr2 4 2.2e-09
## Extra Nuclear Estrogen Signaling 3.5e-09
## Nod1 2 Signaling Pathway 6.2e-09
## Regulation Of Tlr By Endogenous Ligand 6.3e-09
## Complement Cascade 1.1e-08
## Purinergic Signaling In Leishmaniasis Infection 2.6e-08
## Programmed Cell Death 3.8e-08
## Interleukin 17 Signaling 4.4e-08
## Tnfr2 Non Canonical Nf Kb Pathway 5.0e-08
## Tnfs Bind Their Physiological Receptors 5.3e-08
## Interleukin 1 Signaling 5.4e-08
## Costimulation By The Cd28 Family 6.2e-08
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 9.9e-08
## Negative Regulation Of The Pi3k Akt Network 1.3e-07
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 1.5e-07
## Regulated Necrosis 1.5e-07
## Ovarian Tumor Domain Proteases 2.9e-07
## Extracellular Matrix Organization 3.0e-07
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 4.4e-07
## P75 Ntr Receptor Mediated Signalling 5.1e-07
## Antigen Processing Cross Presentation 1.0e-06
## Heme Signaling 1.2e-06
## Pyroptosis 1.3e-06
## Deubiquitination 1.8e-06
## Infectious Disease 3.3e-06
## Activation Of Matrix Metalloproteinases 3.7e-06
## Post Translational Protein Modification 4.3e-06
## P75ntr Signals Via Nf Kb 4.4e-06
## Esr Mediated Signaling 4.9e-06
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 5.7e-06
## Fibronectin Matrix Formation 7.2e-06
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 7.3e-06
## Pi3k Akt Signaling In Cancer 1.1e-05
## Beta Defensins 1.3e-05
## Ctla4 Inhibitory Signaling 1.4e-05
## Inflammasomes 1.4e-05
## Interleukin 2 Family Signaling 1.6e-05
## Dap12 Interactions 1.8e-05
## Interleukin 18 Signaling 2.0e-05
## Activated Tak1 Mediates P38 Mapk Activation 2.1e-05
## Constitutive Signaling By Aberrant Pi3k In Cancer 2.1e-05
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 2.5e-05
## Mapk Family Signaling Cascades 2.7e-05
## Cd163 Mediating An Anti Inflammatory Response 3.0e-05
## Interleukin 1 Processing 3.0e-05
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 3.4e-05
## Defensins 3.6e-05
## Apoptosis 4.8e-05
## Interleukin 12 Family Signaling 5.6e-05
## Interleukin 6 Signaling 5.8e-05
## Signaling By Nuclear Receptors 6.2e-05
## Antimicrobial Peptides 7.3e-05
## Cd28 Dependent Vav1 Pathway 7.7e-05
## Killing Mechanisms 7.7e-05
## Intracellular Signaling By Second Messengers 8.1e-05
## Cell Surface Interactions At The Vascular Wall 8.5e-05
## Cd28 Co Stimulation 9.0e-05
## Collagen Degradation 9.9e-05
## P75ntr Recruits Signalling Complexes 1.0e-04
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 1.0e-04
## Hemostasis 1.2e-04
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 1.4e-04
## Caspase Activation Via Death Receptors In The Presence Of Ligand 1.9e-04
## The Nlrp3 Inflammasome 1.9e-04
## Gab1 Signalosome 2.3e-04
## Rip Mediated Nfkb Activation Via Zbp1 2.3e-04
## Transcriptional Regulation By Runx2 2.4e-04
## Signaling By Scf Kit 2.6e-04
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 2.8e-04
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 3.0e-04
## Signaling By Receptor Tyrosine Kinases 3.1e-04
## Rna Polymerase Ii Transcription 3.7e-04
## Signaling By Kit In Disease 3.8e-04
## Zbp1 Dai Mediated Induction Of Type I Ifns 4.4e-04
## Signaling By Egfr 4.6e-04
## Eph Ephrin Mediated Repulsion Of Cells 5.0e-04
## Degradation Of The Extracellular Matrix 5.4e-04
## Eph Ephrin Signaling 5.4e-04
## Interferon Gamma Signaling 5.7e-04
## Ikk Complex Recruitment Mediated By Rip1 5.8e-04
## Cellular Senescence 6.0e-04
## Rac3 Gtpase Cycle 6.0e-04
## Cellular Responses To External Stimuli 6.1e-04
## Signaling By Ptk6 6.2e-04
## Platelet Activation Signaling And Aggregation 6.3e-04
## Interleukin 6 Family Signaling 6.6e-04
## Traf6 Mediated Nf Kb Activation 6.6e-04
## Vesicle Mediated Transport 7.8e-04
## Rhoq Gtpase Cycle 8.7e-04
## Assembly Of Collagen Fibrils And Other Multimeric Structures 9.8e-04
## Cargo Recognition For Clathrin Mediated Endocytosis 9.9e-04
## Cytosolic Sensors Of Pathogen Associated Dna 1.1e-03
## Pd 1 Signaling 1.1e-03
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 1.1e-03
## Dap12 Signaling 1.2e-03
## Downstream Signal Transduction 1.2e-03
## Senescence Associated Secretory Phenotype Sasp 1.3e-03
## Tnfr1 Induced Nfkappab Signaling Pathway 1.3e-03
## Activation Of C3 And C5 1.4e-03
## Egfr Downregulation 1.4e-03
## Mapk Targets Nuclear Events Mediated By Map Kinases 1.4e-03
## Runx2 Regulates Genes Involved In Cell Migration 1.4e-03
## Egfr Interacts With Phospholipase C Gamma 1.8e-03
## Egfr Transactivation By Gastrin 1.8e-03
## Interleukin 9 Signaling 1.8e-03
## Trif Mediated Programmed Cell Death 1.8e-03
## Negative Regulators Of Ddx58 Ifih1 Signaling 1.9e-03
## Regulation Of Tnfr1 Signaling 2.0e-03
## Rhog Gtpase Cycle 2.0e-03
## Activation Of The Ap 1 Family Of Transcription Factors 2.2e-03
## Interleukin 21 Signaling 2.2e-03
## Mapk3 Erk1 Activation 2.2e-03
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 2.2e-03
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 2.6e-03
## Apoptotic Cleavage Of Cell Adhesion Proteins 2.7e-03
## Initial Triggering Of Complement 2.7e-03
## Interleukin 27 Signaling 2.7e-03
## Receptor Mediated Mitophagy 2.7e-03
## Response To Elevated Platelet Cytosolic Ca2 2.7e-03
## Selective Autophagy 2.9e-03
## Gp1b Ix V Activation Signalling 3.2e-03
## Interleukin 35 Signalling 3.2e-03
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 3.2e-03
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 3.2e-03
## Nervous System Development 3.3e-03
## C Type Lectin Receptors Clrs 3.5e-03
## Interferon Signaling 3.6e-03
## Apoptosis Induced Dna Fragmentation 3.8e-03
## Erbb2 Activates Ptk6 Signaling 3.8e-03
## Nf Kb Is Activated And Signals Survival 3.8e-03
## Rac2 Gtpase Cycle 3.8e-03
## Tnfr1 Induced Proapoptotic Signaling 3.8e-03
## Trafficking And Processing Of Endosomal Tlr 3.8e-03
## Tnf Signaling 3.9e-03
## Clathrin Mediated Endocytosis 4.0e-03
## Collagen Formation 4.1e-03
## Transcriptional Regulation Of Granulopoiesis 4.1e-03
## Dcc Mediated Attractive Signaling 4.4e-03
## Early Phase Of Hiv Life Cycle 4.4e-03
## Interleukin 15 Signaling 4.4e-03
## Shc1 Events In Egfr Signaling 4.4e-03
## Mapk6 Mapk4 Signaling 4.6e-03
## Interleukin 12 Signaling 4.7e-03
## Constitutive Signaling By Egfrviii 5.1e-03
## Erbb2 Regulates Cell Motility 5.1e-03
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 5.1e-03
## P130cas Linkage To Mapk Signaling For Integrins 5.1e-03
## Signaling By Notch3 5.3e-03
## Ub Specific Processing Proteases 5.4e-03
## Binding And Uptake Of Ligands By Scavenger Receptors 5.5e-03
## Netrin 1 Signaling 5.6e-03
## Signaling By Erbb2 5.6e-03
## Grb2 Events In Erbb2 Signaling 5.8e-03
## Pi3k Events In Erbb2 Signaling 5.8e-03
## Signal Regulatory Protein Family Interactions 5.8e-03
## Signaling By Erbb2 Ecd Mutants 5.8e-03
## Sumoylation Of Dna Methylation Proteins 5.8e-03
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 5.8e-03
## Cdc42 Gtpase Cycle 6.0e-03
## Clec7a Dectin 1 Signaling 6.0e-03
## Class I Mhc Mediated Antigen Processing Presentation 6.1e-03
## Apoptotic Execution Phase 6.3e-03
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 6.5e-03
## Intrinsic Pathway For Apoptosis 7.3e-03
## Rhoj Gtpase Cycle 7.3e-03
## Signaling By Cytosolic Fgfr1 Fusion Mutants 7.3e-03
## Signaling By Vegf 7.3e-03
## Transcriptional Regulation By Runx1 7.8e-03
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 8.1e-03
## Other Semaphorin Interactions 8.1e-03
## Scavenging By Class A Receptors 8.1e-03
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 8.1e-03
## Signaling By Erbb4 8.5e-03
## Signaling By Pdgf 8.5e-03
## Signaling By Pdgfr In Disease 9.0e-03
## Interleukin 37 Signaling 9.9e-03
## Signal Transduction By L1 9.9e-03
## Cd28 Dependent Pi3k Akt Signaling 1.1e-02
## Rac1 Gtpase Cycle 1.1e-02
## Shc1 Events In Erbb2 Signaling 1.1e-02
## Foxo Mediated Transcription 1.2e-02
## Raf Independent Mapk1 3 Activation 1.2e-02
## Growth Hormone Receptor Signaling 1.3e-02
## Runx2 Regulates Osteoblast Differentiation 1.3e-02
## Circadian Clock 1.4e-02
## Inactivation Of Csf3 G Csf Signaling 1.4e-02
## Notch3 Activation And Transmission Of Signal To The Nucleus 1.4e-02
## Rhob Gtpase Cycle 1.4e-02
## Scavenging Of Heme From Plasma 1.4e-02
## Signaling By Egfr In Cancer 1.4e-02
## Interleukin 20 Family Signaling 1.5e-02
## Signaling By Erbb2 In Cancer 1.5e-02
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 1.6e-02
## G0 And Early G1 1.6e-02
## Integrin Signaling 1.6e-02
## Interferon Alpha Beta Signaling 1.6e-02
## Interleukin Receptor Shc Signaling 1.6e-02
## Membrane Trafficking 1.6e-02
## Rhoc Gtpase Cycle 1.6e-02
## Signaling By Ntrks 1.6e-02
## Vegfr2 Mediated Vascular Permeability 1.6e-02
## Cell Death Signalling Via Nrage Nrif And Nade 1.8e-02
## Developmental Biology 1.8e-02
## Downregulation Of Erbb2 Signaling 1.8e-02
## Mitophagy 1.8e-02
## Ripk1 Mediated Regulated Necrosis 1.8e-02
## G Alpha Q Signalling Events 2.0e-02
## Signaling By Csf3 G Csf 2.0e-02
## Fgfr1 Mutant Receptor Activation 2.1e-02
## Nicotinate Metabolism 2.1e-02
## Runx2 Regulates Bone Development 2.1e-02
## Perk Regulates Gene Expression 2.2e-02
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 2.2e-02
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 2.3e-02
## Mitotic G1 Phase And G1 S Transition 2.3e-02
## Autophagy 2.4e-02
## Cargo Concentration In The Er 2.4e-02
## Plasma Lipoprotein Clearance 2.4e-02
## Fceri Mediated Mapk Activation 2.5e-02
## Gpvi Mediated Activation Cascade 2.6e-02
## Regulation Of Tp53 Expression And Degradation 2.9e-02
## Rhoh Gtpase Cycle 2.9e-02
## Apoptotic Cleavage Of Cellular Proteins 3.1e-02
## Fcgr3a Mediated Il10 Synthesis 3.1e-02
## Signaling By Fgfr1 In Disease 3.1e-02
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 3.1e-02
## Ngf Stimulated Transcription 3.2e-02
## Platelet Aggregation Plug Formation 3.2e-02
## Map2k And Mapk Activation 3.4e-02
## Signaling By Notch 3.4e-02
## Alternative Complement Activation 3.5e-02
## Fasl Cd95l Signaling 3.5e-02
## G2 M Dna Replication Checkpoint 3.5e-02
## Galactose Catabolism 3.5e-02
## Hdl Clearance 3.5e-02
## Mecp2 Regulates Transcription Factors 3.5e-02
## Nostrin Mediated Enos Trafficking 3.5e-02
## Runx1 Regulates Expression Of Components Of Tight Junctions 3.5e-02
## Runx2 Regulates Chondrocyte Maturation 3.5e-02
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 3.5e-02
## Ephb Mediated Forward Signaling 3.7e-02
## Rhof Gtpase Cycle 3.7e-02
## Diseases Of Programmed Cell Death 3.8e-02
## Tp53 Regulates Transcription Of Cell Death Genes 4.0e-02
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 4.0e-02
## Activated Ntrk3 Signals Through Pi3k 4.2e-02
## Activation Of Caspases Through Apoptosome Mediated Cleavage 4.2e-02
## Biosynthesis Of Epa Derived Spms 4.2e-02
## Clec7a Inflammasome Pathway 4.2e-02
## Nade Modulates Death Signalling 4.2e-02
## Phosphorylation Of Emi1 4.2e-02
## Protein Repair 4.2e-02
## Ptk6 Promotes Hif1a Stabilization 4.2e-02
## Ptk6 Regulates Cell Cycle 4.2e-02
## Scavenging By Class B Receptors 4.2e-02
## Sensing Of Dna Double Strand Breaks 4.2e-02
## Signaling By Moderate Kinase Activity Braf Mutants 4.2e-02
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 4.2e-02
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 4.2e-02
## Tnfr1 Mediated Ceramide Production 4.2e-02
## Cyclin D Associated Events In G1 4.5e-02
## Fc Epsilon Receptor Fceri Signaling 4.6e-02
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 4.7e-02
## Sumoylation 4.7e-02
## Activated Ntrk2 Signals Through Fyn 4.9e-02
## Activation Of Nima Kinases Nek9 Nek6 Nek7 4.9e-02
## Creb Phosphorylation 4.9e-02
## Defective Factor Viii Causes Hemophilia A 4.9e-02
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 4.9e-02
## Ikba Variant Leads To Eda Id 4.9e-02
## Modulation By Mtb Of Host Immune System 4.9e-02
## Parasite Infection 5.2e-02
## Rhod Gtpase Cycle 5.2e-02
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 5.6e-02
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 5.6e-02
## Hdl Assembly 5.6e-02
## Inactivation Of Cdc42 And Rac1 5.6e-02
## Lectin Pathway Of Complement Activation 5.6e-02
## Mecp2 Regulates Transcription Of Neuronal Ligands 5.6e-02
## Netrin Mediated Repulsion Signals 5.6e-02
## Runx3 Regulates Wnt Signaling 5.6e-02
## Smac Xiap Regulated Apoptotic Response 5.6e-02
## L1cam Interactions 5.7e-02
## Cytoprotection By Hmox1 6.1e-02
## Tcr Signaling 6.1e-02
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 6.3e-02
## Downregulation Of Erbb4 Signaling 6.3e-02
## E2f Enabled Inhibition Of Pre Replication Complex Formation 6.3e-02
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 6.3e-02
## Interleukin 23 Signaling 6.3e-02
## Mapk1 Erk2 Activation 6.3e-02
## Oas Antiviral Response 6.3e-02
## Oxidative Stress Induced Senescence 6.3e-02
## Nrage Signals Death Through Jnk 6.8e-02
## Akt Phosphorylates Targets In The Nucleus 7.0e-02
## Camk Iv Mediated Phosphorylation Of Creb 7.0e-02
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 7.0e-02
## Chylomicron Assembly 7.0e-02
## Chylomicron Remodeling 7.0e-02
## Hdl Remodeling 7.0e-02
## Mastl Facilitates Mitotic Progression 7.0e-02
## P75ntr Regulates Axonogenesis 7.0e-02
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 7.0e-02
## Regulation Of Foxo Transcriptional Activity By Acetylation 7.0e-02
## Nuclear Events Kinase And Transcription Factor Activation 7.2e-02
## Ca2 Pathway 7.4e-02
## Tp53 Regulates Transcription Of Dna Repair Genes 7.4e-02
## Condensation Of Prometaphase Chromosomes 7.6e-02
## Dermatan Sulfate Biosynthesis 7.6e-02
## Dscam Interactions 7.6e-02
## Endosomal Vacuolar Pathway 7.6e-02
## Enos Activation 7.6e-02
## Ncam Signaling For Neurite Out Growth 7.6e-02
## Pexophagy 7.6e-02
## Regulation By C Flip 7.6e-02
## Rho Gtpases Activate Ktn1 7.6e-02
## Signaling By Fgfr In Disease 7.6e-02
## Signaling By Leptin 7.6e-02
## Sumoylation Of Immune Response Proteins 7.6e-02
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 7.6e-02
## Transcriptional Regulation By Mecp2 7.6e-02
## Semaphorin Interactions 7.8e-02
## Dna Methylation 8.0e-02
## Signaling By Braf And Raf Fusions 8.0e-02
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 8.3e-02
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 8.3e-02
## Interleukin 2 Signaling 8.3e-02
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 8.3e-02
## Notch2 Intracellular Domain Regulates Transcription 8.3e-02
## Pecam1 Interactions 8.3e-02
## Tandem Pore Domain Potassium Channels 8.3e-02
## Ticam1 Dependent Activation Of Irf3 Irf7 8.3e-02
## Vldlr Internalisation And Degradation 8.3e-02
## Fcgamma Receptor Fcgr Dependent Phagocytosis 8.5e-02
## Copii Mediated Vesicle Transport 8.6e-02
## Tcf Dependent Signaling In Response To Wnt 8.9e-02
## Advanced Glycosylation Endproduct Receptor Signaling 9.0e-02
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 9.0e-02
## Cytochrome C Mediated Apoptotic Response 9.0e-02
## Dissolution Of Fibrin Clot 9.0e-02
## Irf3 Mediated Induction Of Type I Ifn 9.0e-02
## P38mapk Events 9.0e-02
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 9.0e-02
## Purine Salvage 9.0e-02
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 9.0e-02
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 9.0e-02
## Epigenetic Regulation Of Gene Expression 9.2e-02
## Creation Of C4 And C2 Activators 9.3e-02
## Plasma Lipoprotein Assembly Remodeling And Clearance 9.3e-02
## Rhoa Gtpase Cycle 9.3e-02
## Golgi Cisternae Pericentriolar Stack Reorganization 9.6e-02
## Irak1 Recruits Ikk Complex 9.6e-02
## Regulation Of Ifng Signaling 9.6e-02
## Repression Of Wnt Target Genes 9.6e-02
## Traf3 Dependent Irf Activation Pathway 9.6e-02
## Prc2 Methylates Histones And Dna 9.7e-02
## Regulation Of Runx2 Expression And Activity 9.7e-02
## Signaling By Tgf Beta Receptor Complex 9.7e-02
## Depolymerisation Of The Nuclear Lamina 1.0e-01
## Er To Golgi Anterograde Transport 1.0e-01
## Heme Degradation 1.0e-01
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 1.0e-01
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 1.0e-01
## Platelet Adhesion To Exposed Collagen 1.0e-01
## Rho Gtpase Cycle 1.0e-01
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 1.0e-01
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 1.0e-01
## Wnt5a Dependent Internalization Of Fzd4 1.0e-01
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 1.0e-01
## Abc Transporter Disorders 1.1e-01
## Cellular Response To Chemical Stress 1.1e-01
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 1.1e-01
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 1.1e-01
## Dna Double Strand Break Response 1.1e-01
## Foxo Mediated Transcription Of Cell Death Genes 1.1e-01
## Nrif Signals Cell Death From The Nucleus 1.1e-01
## Regulation Of Kit Signaling 1.1e-01
## Rmts Methylate Histone Arginines 1.1e-01
## Signaling By Met 1.1e-01
## Spry Regulation Of Fgf Signaling 1.1e-01
## Sting Mediated Induction Of Host Immune Responses 1.1e-01
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 1.1e-01
## Abc Transporters In Lipid Homeostasis 1.2e-01
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 1.2e-01
## Antiviral Mechanism By Ifn Stimulated Genes 1.2e-01
## Crosslinking Of Collagen Fibrils 1.2e-01
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 1.2e-01
## Diseases Associated With Glycosylation Precursor Biosynthesis 1.2e-01
## Foxo Mediated Transcription Of Cell Cycle Genes 1.2e-01
## Mecp2 Regulates Neuronal Receptors And Channels 1.2e-01
## Oncogenic Mapk Signaling 1.2e-01
## Regulation Of Hsf1 Mediated Heat Shock Response 1.2e-01
## Regulation Of Runx1 Expression And Activity 1.2e-01
## Signaling By Ntrk3 Trkc 1.2e-01
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 1.2e-01
## Transcriptional Regulation Of White Adipocyte Differentiation 1.2e-01
## Apoptotic Factor Mediated Response 1.3e-01
## Biosynthesis Of Specialized Proresolving Mediators Spms 1.3e-01
## Cyclin A Cdk2 Associated Events At S Phase Entry 1.3e-01
## Ephrin Signaling 1.3e-01
## G Beta Gamma Signalling Through Cdc42 1.3e-01
## Initiation Of Nuclear Envelope Ne Reformation 1.3e-01
## Integrin Cell Surface Interactions 1.3e-01
## Ldl Clearance 1.3e-01
## Listeria Monocytogenes Entry Into Host Cells 1.3e-01
## Meiotic Recombination 1.3e-01
## Nicotinamide Salvaging 1.3e-01
## Phase 4 Resting Membrane Potential 1.3e-01
## Phosphorylation Of The Apc C 1.3e-01
## Pka Mediated Phosphorylation Of Creb 1.3e-01
## Plasma Lipoprotein Assembly 1.3e-01
## Regulation Of Tp53 Activity Through Methylation 1.3e-01
## Signaling By Hippo 1.3e-01
## Signalling To Ras 1.3e-01
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 1.3e-01
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 1.3e-01
## Transcription Of E2f Targets Under Negative Control By Dream Complex 1.3e-01
## Vegfr2 Mediated Cell Proliferation 1.3e-01
## Branched Chain Amino Acid Catabolism 1.4e-01
## Formation Of The Beta Catenin Tcf Transactivating Complex 1.4e-01
## Rho Gtpases Activate Paks 1.4e-01
## Unfolded Protein Response Upr 1.4e-01
## Activation Of Nmda Receptors And Postsynaptic Events 1.5e-01
## Chaperone Mediated Autophagy 1.5e-01
## Class B 2 Secretin Family Receptors 1.5e-01
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 1.5e-01
## E2f Mediated Regulation Of Dna Replication 1.5e-01
## G2 M Dna Damage Checkpoint 1.5e-01
## Incretin Synthesis Secretion And Inactivation 1.5e-01
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 1.5e-01
## Intrinsic Pathway Of Fibrin Clot Formation 1.5e-01
## Long Term Potentiation 1.5e-01
## Nucleotide Salvage 1.5e-01
## Pink1 Prkn Mediated Mitophagy 1.5e-01
## Telomere Extension By Telomerase 1.5e-01
## Termination Of O Glycan Biosynthesis 1.5e-01
## Transcriptional Regulation By Runx3 1.5e-01
## Transport To The Golgi And Subsequent Modification 1.5e-01
## Apc C Cdc20 Mediated Degradation Of Cyclin B 1.6e-01
## Cellular Response To Heat Stress 1.6e-01
## Metabolism Of Vitamins And Cofactors 1.6e-01
## Other Interleukin Signaling 1.6e-01
## Rho Gtpases Activate Nadph Oxidases 1.6e-01
## Triglyceride Catabolism 1.6e-01
## Abc Family Proteins Mediated Transport 1.7e-01
## Adp Signalling Through P2y Purinoceptor 1 1.7e-01
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 1.7e-01
## Basigin Interactions 1.7e-01
## Constitutive Signaling By Akt1 E17k In Cancer 1.7e-01
## Copi Mediated Anterograde Transport 1.7e-01
## Cyclin A B1 B2 Associated Events During G2 M Transition 1.7e-01
## Dectin 2 Family 1.7e-01
## Notch3 Intracellular Domain Regulates Transcription 1.7e-01
## Regulation Of Ifna Signaling 1.7e-01
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 1.7e-01
## Signaling By Ntrk2 Trkb 1.7e-01
## Signaling By Tgfb Family Members 1.7e-01
## Wnt Ligand Biogenesis And Trafficking 1.7e-01
## Asparagine N Linked Glycosylation 1.8e-01
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 1.8e-01
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 1.8e-01
## Infection With Mycobacterium Tuberculosis 1.8e-01
## Metabolism Of Porphyrins 1.8e-01
## Amyloid Fiber Formation 1.9e-01
## Epha Mediated Growth Cone Collapse 1.9e-01
## G1 S Specific Transcription 1.9e-01
## Myogenesis 1.9e-01
## Negative Epigenetic Regulation Of Rrna Expression 1.9e-01
## Negative Regulation Of Fgfr3 Signaling 1.9e-01
## Traf6 Mediated Irf7 Activation 1.9e-01
## Activation Of Bh3 Only Proteins 2.0e-01
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 2.0e-01
## Met Activates Ptk2 Signaling 2.0e-01
## Negative Regulation Of Fgfr4 Signaling 2.0e-01
## Transcriptional Regulation Of Pluripotent Stem Cells 2.0e-01
## G Protein Beta Gamma Signalling 2.1e-01
## Meiosis 2.1e-01
## Negative Regulation Of Fgfr1 Signaling 2.1e-01
## Nuclear Signaling By Erbb4 2.1e-01
## Plasma Lipoprotein Remodeling 2.1e-01
## Regulation Of Mecp2 Expression And Activity 2.1e-01
## Rho Gtpase Effectors 2.1e-01
## Rho Gtpases Activate Iqgaps 2.1e-01
## Rhov Gtpase Cycle 2.1e-01
## Sialic Acid Metabolism 2.1e-01
## Signal Amplification 2.1e-01
## Signaling By Notch2 2.1e-01
## Signaling By Robo Receptors 2.1e-01
## Thrombin Signalling Through Proteinase Activated Receptors Pars 2.1e-01
## Late Endosomal Microautophagy 2.2e-01
## Metabolism Of Water Soluble Vitamins And Cofactors 2.2e-01
## Negative Regulation Of Fgfr2 Signaling 2.2e-01
## Oncogene Induced Senescence 2.2e-01
## Raf Activation 2.2e-01
## Resolution Of D Loop Structures 2.2e-01
## Rhou Gtpase Cycle 2.2e-01
## Signaling By Wnt 2.2e-01
## Signalling To Erks 2.2e-01
## Ca Dependent Events 2.3e-01
## Hdr Through Single Strand Annealing Ssa 2.3e-01
## Interleukin 7 Signaling 2.3e-01
## Metalloprotease Dubs 2.3e-01
## Mhc Class Ii Antigen Presentation 2.3e-01
## Nuclear Pore Complex Npc Disassembly 2.3e-01
## Rho Gtpases Activate Wasps And Waves 2.3e-01
## Ros And Rns Production In Phagocytes 2.3e-01
## Cell Cell Communication 2.4e-01
## Diseases Of Mitotic Cell Cycle 2.4e-01
## Triglyceride Metabolism 2.4e-01
## Adora2b Mediated Anti Inflammatory Cytokines Production 2.5e-01
## Association Of Tric Cct With Target Proteins During Biosynthesis 2.5e-01
## Formation Of Fibrin Clot Clotting Cascade 2.5e-01
## Generation Of Second Messenger Molecules 2.5e-01
## Ret Signaling 2.5e-01
## Signaling By Fgfr3 2.5e-01
## Dag And Ip3 Signaling 2.6e-01
## Hcmv Early Events 2.6e-01
## Homologous Dna Pairing And Strand Exchange 2.6e-01
## Met Promotes Cell Motility 2.6e-01
## Rnd1 Gtpase Cycle 2.6e-01
## Rnd3 Gtpase Cycle 2.6e-01
## Signaling By Fgfr4 2.6e-01
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 2.6e-01
## Transcriptional Regulation By Ventx 2.6e-01
## Aggrephagy 2.7e-01
## Rho Gtpases Activate Formins 2.7e-01
## Rnd2 Gtpase Cycle 2.7e-01
## Sumoylation Of Transcription Cofactors 2.7e-01
## Transcriptional Regulation By Tp53 2.7e-01
## Beta Catenin Independent Wnt Signaling 2.8e-01
## Diseases Of Glycosylation 2.8e-01
## Elastic Fibre Formation 2.8e-01
## Reproduction 2.8e-01
## Estrogen Dependent Gene Expression 2.9e-01
## Hiv Life Cycle 2.9e-01
## Irs Mediated Signalling 2.9e-01
## Metabolism Of Fat Soluble Vitamins 2.9e-01
## Notch1 Intracellular Domain Regulates Transcription 2.9e-01
## Chondroitin Sulfate Dermatan Sulfate Metabolism 3.0e-01
## Recycling Pathway Of L1 3.0e-01
## Retrograde Transport At The Trans Golgi Network 3.0e-01
## Signaling By Fgfr1 3.0e-01
## Tp53 Regulates Transcription Of Cell Cycle Genes 3.0e-01
## Extension Of Telomeres 3.1e-01
## Gap Junction Trafficking And Regulation 3.1e-01
## Chromatin Modifying Enzymes 3.2e-01
## G Protein Mediated Events 3.2e-01
## Insulin Receptor Signalling Cascade 3.2e-01
## Nuclear Envelope Breakdown 3.2e-01
## Regulation Of Tp53 Activity 3.2e-01
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 3.2e-01
## Synthesis Of Pips At The Plasma Membrane 3.2e-01
## Hcmv Infection 3.3e-01
## Regulation Of Runx3 Expression And Activity 3.3e-01
## S Phase 3.3e-01
## Transcriptional Activation Of Mitochondrial Biogenesis 3.3e-01
## Dna Double Strand Break Repair 3.4e-01
## G2 M Checkpoints 3.4e-01
## Iron Uptake And Transport 3.4e-01
## Signaling By Notch1 Pest Domain Mutants In Cancer 3.4e-01
## Signaling By The B Cell Receptor Bcr 3.4e-01
## Stabilization Of P53 3.4e-01
## Arachidonic Acid Metabolism 3.5e-01
## Scf Skp2 Mediated Degradation Of P27 P21 3.5e-01
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 3.6e-01
## Defective Cftr Causes Cystic Fibrosis 3.6e-01
## Disorders Of Transmembrane Transporters 3.6e-01
## O Linked Glycosylation Of Mucins 3.6e-01
## Asymmetric Localization Of Pcp Proteins 3.7e-01
## Synthesis Of Substrates In N Glycan Biosythesis 3.7e-01
## Cell Cycle 3.8e-01
## Hdr Through Homologous Recombination Hrr 3.8e-01
## Rab Geranylgeranylation 3.8e-01
## Regulation Of Hmox1 Expression And Activity 3.8e-01
## Diseases Associated With O Glycosylation Of Proteins 3.9e-01
## Fcgr Activation 3.9e-01
## G1 S Dna Damage Checkpoints 3.9e-01
## Nonhomologous End Joining Nhej 3.9e-01
## Sirt1 Negatively Regulates Rrna Expression 3.9e-01
## Aurka Activation By Tpx2 4.1e-01
## Condensation Of Prophase Chromosomes 4.1e-01
## Signaling By Fgfr2 4.1e-01
## Signaling By Notch1 4.1e-01
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 4.1e-01
## Ecm Proteoglycans 4.2e-01
## Nuclear Envelope Ne Reassembly 4.2e-01
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 4.3e-01
## Signaling By Insulin Receptor 4.3e-01
## Dna Damage Telomere Stress Induced Senescence 4.4e-01
## Downstream Signaling Events Of B Cell Receptor Bcr 4.4e-01
## G Alpha 12 13 Signalling Events 4.4e-01
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 4.4e-01
## Potential Therapeutics For Sars 4.4e-01
## Recruitment Of Mitotic Centrosome Proteins And Complexes 4.4e-01
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 4.4e-01
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 4.6e-01
## Degradation Of Beta Catenin By The Destruction Complex 4.6e-01
## Fceri Mediated Ca 2 Mobilization 4.6e-01
## Pi Metabolism 4.6e-01
## Apc C Mediated Degradation Of Cell Cycle Proteins 4.7e-01
## Regulation Of Plk1 Activity At G2 M Transition 4.7e-01
## Signaling By Fgfr 4.7e-01
## Opioid Signalling 4.8e-01
## Peptide Hormone Metabolism 4.8e-01
## Rab Gefs Exchange Gtp For Gdp On Rabs 4.8e-01
## Mitochondrial Biogenesis 4.9e-01
## Pcp Ce Pathway 4.9e-01
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 4.9e-01
## Regulation Of Tp53 Activity Through Phosphorylation 4.9e-01
## Anchoring Of The Basal Body To The Plasma Membrane 5.0e-01
## Hiv Infection 5.0e-01
## Recruitment Of Numa To Mitotic Centrosomes 5.0e-01
## Metabolism Of Nucleotides 5.1e-01
## Processing Of Dna Double Strand Break Ends 5.1e-01
## Protein Folding 5.1e-01
## Visual Phototransduction 5.2e-01
## Diseases Of Metabolism 5.3e-01
## Potassium Channels 5.3e-01
## Stimuli Sensing Channels 5.4e-01
## O Linked Glycosylation 5.5e-01
## Telomere Maintenance 5.6e-01
## Neuronal System 5.7e-01
## Cell Cycle Mitotic 5.8e-01
## Regulation Of Lipid Metabolism By Pparalpha 5.8e-01
## Transmission Across Chemical Synapses 5.8e-01
## Glycosaminoglycan Metabolism 5.9e-01
## Rab Regulation Of Trafficking 5.9e-01
## Cardiac Conduction 6.0e-01
## Resolution Of Sister Chromatid Cohesion 6.0e-01
## Transport Of Small Molecules 6.1e-01
## Cell Cycle Checkpoints 6.2e-01
## Fceri Mediated Nf Kb Activation 6.3e-01
## Homology Directed Repair 6.3e-01
## Metabolism Of Carbohydrates 6.3e-01
## Organelle Biogenesis And Maintenance 6.3e-01
## Chromosome Maintenance 6.4e-01
## G Alpha S Signalling Events 6.5e-01
## Mitotic Prophase 6.5e-01
## Sars Cov Infections 6.5e-01
## Dna Repair 6.9e-01
## Protein Localization 7.0e-01
## Factors Involved In Megakaryocyte Development And Platelet Production 7.1e-01
## Fatty Acid Metabolism 7.2e-01
## Ion Channel Transport 7.3e-01
## Muscle Contraction 7.6e-01
## Cilium Assembly 7.7e-01
## Intra Golgi And Retrograde Golgi To Er Traffic 7.7e-01
## Mitotic G2 G2 M Phases 7.7e-01
## Mitotic Prometaphase 7.7e-01
## Metabolism Of Lipids 7.8e-01
## Phospholipid Metabolism 7.8e-01
## Mitotic Metaphase And Anaphase 8.2e-01
## Metabolism Of Amino Acids And Derivatives 9.3e-01
## M Phase 9.5e-01
## Sensory Perception 9.9e-01
## 2 Ltr Circle Formation 1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 1.0e+00
## Abacavir Metabolism 1.0e+00
## Abacavir Transmembrane Transport 1.0e+00
## Abacavir Transport And Metabolism 1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 1.0e+00
## Acetylcholine Binding And Downstream Events 1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 1.0e+00
## Acetylcholine Neurotransmitter Release Cycle 1.0e+00
## Acetylcholine Regulates Insulin Secretion 1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding 1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus 1.0e+00
## Activated Ntrk2 Signals Through Cdk5 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3 1.0e+00
## Activated Ntrk2 Signals Through Pi3k 1.0e+00
## Activated Ntrk2 Signals Through Ras 1.0e+00
## Activated Ntrk3 Signals Through Ras 1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 1.0e+00
## Activation Of Ampk Downstream Of Nmdars 1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 1.0e+00
## Activation Of Atr In Response To Replication Stress 1.0e+00
## Activation Of Bad And Translocation To Mitochondria 1.0e+00
## Activation Of Gene Expression By Srebf Srebp 1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding 1.0e+00
## Activation Of Noxa And Translocation To Mitochondria 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 1.0e+00
## Activation Of Puma And Translocation To Mitochondria 1.0e+00
## Activation Of Rac1 1.0e+00
## Activation Of Rac1 Downstream Of Nmdars 1.0e+00
## Activation Of Ras In B Cells 1.0e+00
## Activation Of Smo 1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 1.0e+00
## Activation Of The Phototransduction Cascade 1.0e+00
## Activation Of The Pre Replicative Complex 1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 1.0e+00
## Activation Of Trka Receptors 1.0e+00
## Acyl Chain Remodeling Of Cl 1.0e+00
## Acyl Chain Remodeling Of Dag And Tag 1.0e+00
## Acyl Chain Remodelling Of Pc 1.0e+00
## Acyl Chain Remodelling Of Pe 1.0e+00
## Acyl Chain Remodelling Of Pg 1.0e+00
## Acyl Chain Remodelling Of Pi 1.0e+00
## Acyl Chain Remodelling Of Ps 1.0e+00
## Adenylate Cyclase Activating Pathway 1.0e+00
## Adenylate Cyclase Inhibitory Pathway 1.0e+00
## Adherens Junctions Interactions 1.0e+00
## Adp Signalling Through P2y Purinoceptor 12 1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion 1.0e+00
## Adrenoceptors 1.0e+00
## Aflatoxin Activation And Detoxification 1.0e+00
## Akt Phosphorylates Targets In The Cytosol 1.0e+00
## Alpha Defensins 1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 1.0e+00
## Alpha Oxidation Of Phytanate 1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway 1.0e+00
## Amine Ligand Binding Receptors 1.0e+00
## Amino Acid Conjugation 1.0e+00
## Amino Acid Transport Across The Plasma Membrane 1.0e+00
## Amino Acids Regulate Mtorc1 1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity 1.0e+00
## Anchoring Fibril Formation 1.0e+00
## Androgen Biosynthesis 1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation 1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a 1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection 1.0e+00
## Aquaporin Mediated Transport 1.0e+00
## Arachidonate Production From Dag 1.0e+00
## Arms Mediated Activation 1.0e+00
## Aryl Hydrocarbon Receptor Signalling 1.0e+00
## Aspartate And Asparagine Metabolism 1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors 1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes 1.0e+00
## Assembly Of The Hiv Virion 1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication 1.0e+00
## Assembly Of The Pre Replicative Complex 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones 1.0e+00
## Attachment And Entry 1.0e+00
## Attachment Of Gpi Anchor To Upar 1.0e+00
## Attenuation Phase 1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 1.0e+00
## B Wich Complex Positively Regulates Rrna Expression 1.0e+00
## Base Excision Repair 1.0e+00
## Base Excision Repair Ap Site Formation 1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium 1.0e+00
## Beta Catenin Phosphorylation Cascade 1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 1.0e+00
## Beta Oxidation Of Pristanoyl Coa 1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids 1.0e+00
## Bicarbonate Transporters 1.0e+00
## Bile Acid And Bile Salt Metabolism 1.0e+00
## Biological Oxidations 1.0e+00
## Biosynthesis Of Maresin Like Spms 1.0e+00
## Biosynthesis Of Maresins 1.0e+00
## Biotin Transport And Metabolism 1.0e+00
## Blood Group Systems Biosynthesis 1.0e+00
## Budding And Maturation Of Hiv Virion 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 1.0e+00
## Butyrophilin Btn Family Interactions 1.0e+00
## Ca2 Activated K Channels 1.0e+00
## Calcineurin Activates Nfat 1.0e+00
## Calcitonin Like Ligand Receptors 1.0e+00
## Calnexin Calreticulin Cycle 1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin 1.0e+00
## Cargo Trafficking To The Periciliary Membrane 1.0e+00
## Carnitine Metabolism 1.0e+00
## Cation Coupled Chloride Cotransporters 1.0e+00
## Cd209 Dc Sign Signaling 1.0e+00
## Cd22 Mediated Bcr Regulation 1.0e+00
## Cdc6 Association With The Orc Origin Complex 1.0e+00
## Cell Cell Junction Organization 1.0e+00
## Cell Extracellular Matrix Interactions 1.0e+00
## Cell Junction Organization 1.0e+00
## Cellular Hexose Transport 1.0e+00
## Cellular Response To Hypoxia 1.0e+00
## Cellular Response To Starvation 1.0e+00
## Cgmp Effects 1.0e+00
## Chl1 Interactions 1.0e+00
## Cholesterol Biosynthesis 1.0e+00
## Choline Catabolism 1.0e+00
## Chondroitin Sulfate Biosynthesis 1.0e+00
## Chrebp Activates Metabolic Gene Expression 1.0e+00
## Chylomicron Clearance 1.0e+00
## Citric Acid Cycle Tca Cycle 1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors 1.0e+00
## Class I Peroxisomal Membrane Protein Import 1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation 1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 1.0e+00
## Coenzyme A Biosynthesis 1.0e+00
## Cohesin Loading Onto Chromatin 1.0e+00
## Collagen Biosynthesis And Modifying Enzymes 1.0e+00
## Collagen Chain Trimerization 1.0e+00
## Common Pathway Of Fibrin Clot Formation 1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation 1.0e+00
## Complex I Biogenesis 1.0e+00
## Conjugation Of Benzoate With Glycine 1.0e+00
## Constitutive Signaling By Overexpressed Erbb2 1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic 1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic 1.0e+00
## Creatine Metabolism 1.0e+00
## Creb3 Factors Activate Genes 1.0e+00
## Cristae Formation 1.0e+00
## Crmps In Sema3a Signaling 1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 1.0e+00
## Cs Ds Degradation 1.0e+00
## Cyp2e1 Reactions 1.0e+00
## Cytochrome P450 Arranged By Substrate Type 1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly 1.0e+00
## Cytosolic Sulfonation Of Small Molecules 1.0e+00
## Cytosolic Trna Aminoacylation 1.0e+00
## Darpp 32 Events 1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex 1.0e+00
## Deadenylation Dependent Mrna Decay 1.0e+00
## Deadenylation Of Mrna 1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type 1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type 1.0e+00
## Defective Chst3 Causes Sedcjd 1.0e+00
## Defective Chst6 Causes Mcdc1 1.0e+00
## Defective Chsy1 Causes Tpbs 1.0e+00
## Defective Csf2rb Causes Smdp5 1.0e+00
## Defective Ext2 Causes Exostoses 2 1.0e+00
## Defective F9 Activation 1.0e+00
## Defective Factor Ix Causes Hemophilia B 1.0e+00
## Defective Lfng Causes Scdo3 1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis 1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15 1.0e+00
## Defects In Biotin Btn Metabolism 1.0e+00
## Defects In Cobalamin B12 Metabolism 1.0e+00
## Defects In Vitamin And Cofactor Metabolism 1.0e+00
## Degradation Of Axin 1.0e+00
## Degradation Of Cysteine And Homocysteine 1.0e+00
## Degradation Of Dvl 1.0e+00
## Degradation Of Gli1 By The Proteasome 1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 1.0e+00
## Detoxification Of Reactive Oxygen Species 1.0e+00
## Digestion 1.0e+00
## Digestion And Absorption 1.0e+00
## Digestion Of Dietary Carbohydrate 1.0e+00
## Digestion Of Dietary Lipid 1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism 1.0e+00
## Diseases Associated With N Glycosylation Of Proteins 1.0e+00
## Diseases Associated With Surfactant Metabolism 1.0e+00
## Diseases Of Base Excision Repair 1.0e+00
## Diseases Of Carbohydrate Metabolism 1.0e+00
## Diseases Of Dna Repair 1.0e+00
## Diseases Of Mismatch Repair Mmr 1.0e+00
## Disinhibition Of Snare Formation 1.0e+00
## Displacement Of Dna Glycosylase By Apex1 1.0e+00
## Dna Damage Bypass 1.0e+00
## Dna Damage Recognition In Gg Ner 1.0e+00
## Dna Damage Reversal 1.0e+00
## Dna Replication 1.0e+00
## Dna Replication Initiation 1.0e+00
## Dna Replication Pre Initiation 1.0e+00
## Dna Strand Elongation 1.0e+00
## Dopamine Neurotransmitter Release Cycle 1.0e+00
## Dopamine Receptors 1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling 1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling 1.0e+00
## Downstream Signaling Of Activated Fgfr1 1.0e+00
## Downstream Signaling Of Activated Fgfr2 1.0e+00
## Downstream Signaling Of Activated Fgfr3 1.0e+00
## Downstream Signaling Of Activated Fgfr4 1.0e+00
## Dual Incision In Gg Ner 1.0e+00
## Dual Incision In Tc Ner 1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 1.0e+00
## Effects Of Pip2 Hydrolysis 1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 1.0e+00
## Eicosanoid Ligand Binding Receptors 1.0e+00
## Eicosanoids 1.0e+00
## Electric Transmission Across Gap Junctions 1.0e+00
## Elevation Of Cytosolic Ca2 Levels 1.0e+00
## Endogenous Sterols 1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt 1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 1.0e+00
## Er Quality Control Compartment Erqc 1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 1.0e+00
## Erk Mapk Targets 1.0e+00
## Erks Are Inactivated 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg 1.0e+00
## Erythropoietin Activates Ras 1.0e+00
## Erythropoietin Activates Stat5 1.0e+00
## Establishment Of Sister Chromatid Cohesion 1.0e+00
## Estrogen Biosynthesis 1.0e+00
## Estrogen Stimulated Signaling Through Prkcz 1.0e+00
## Ethanol Oxidation 1.0e+00
## Eukaryotic Translation Elongation 1.0e+00
## Eukaryotic Translation Initiation 1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus 1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Fanconi Anemia Pathway 1.0e+00
## Fatty Acids 1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 1.0e+00
## Fatty Acyl Coa Biosynthesis 1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer 1.0e+00
## Fertilization 1.0e+00
## Fgfr1 Ligand Binding And Activation 1.0e+00
## Fgfr1b Ligand Binding And Activation 1.0e+00
## Fgfr1c Ligand Binding And Activation 1.0e+00
## Fgfr2 Alternative Splicing 1.0e+00
## Fgfr2 Ligand Binding And Activation 1.0e+00
## Fgfr2 Mutant Receptor Activation 1.0e+00
## Fgfr2b Ligand Binding And Activation 1.0e+00
## Fgfr2c Ligand Binding And Activation 1.0e+00
## Fgfr3 Ligand Binding And Activation 1.0e+00
## Fgfr3b Ligand Binding And Activation 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 1.0e+00
## Flt3 Signaling 1.0e+00
## Flt3 Signaling By Cbl Mutants 1.0e+00
## Flt3 Signaling In Disease 1.0e+00
## Flt3 Signaling Through Src Family Kinases 1.0e+00
## Folding Of Actin By Cct Tric 1.0e+00
## Formation Of Apoptosome 1.0e+00
## Formation Of Atp By Chemiosmotic Coupling 1.0e+00
## Formation Of Incision Complex In Gg Ner 1.0e+00
## Formation Of Rna Pol Ii Elongation Complex 1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf 1.0e+00
## Formation Of Tc Ner Pre Incision Complex 1.0e+00
## Formation Of The Cornified Envelope 1.0e+00
## Formation Of The Early Elongation Complex 1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric 1.0e+00
## Formation Of Xylulose 5 Phosphate 1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 1.0e+00
## Free Fatty Acid Receptors 1.0e+00
## Free Fatty Acids Regulate Insulin Secretion 1.0e+00
## Frs Mediated Fgfr1 Signaling 1.0e+00
## Frs Mediated Fgfr2 Signaling 1.0e+00
## Frs Mediated Fgfr3 Signaling 1.0e+00
## Frs Mediated Fgfr4 Signaling 1.0e+00
## Fructose Catabolism 1.0e+00
## Fructose Metabolism 1.0e+00
## G Alpha Z Signalling Events 1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma 1.0e+00
## G Protein Activation 1.0e+00
## G2 Phase 1.0e+00
## Gaba B Receptor Activation 1.0e+00
## Gaba Receptor Activation 1.0e+00
## Gaba Synthesis Release Reuptake And Degradation 1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 1.0e+00
## Gap Junction Assembly 1.0e+00
## Gap Junction Degradation 1.0e+00
## Gdp Fucose Biosynthesis 1.0e+00
## Gene Silencing By Rna 1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner 1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 1.0e+00
## Glucagon Signaling In Metabolic Regulation 1.0e+00
## Glucagon Type Ligand Receptors 1.0e+00
## Glucocorticoid Biosynthesis 1.0e+00
## Gluconeogenesis 1.0e+00
## Glucose Metabolism 1.0e+00
## Glucuronidation 1.0e+00
## Glutamate And Glutamine Metabolism 1.0e+00
## Glutamate Neurotransmitter Release Cycle 1.0e+00
## Glutathione Conjugation 1.0e+00
## Glutathione Synthesis And Recycling 1.0e+00
## Glycerophospholipid Biosynthesis 1.0e+00
## Glycerophospholipid Catabolism 1.0e+00
## Glycogen Breakdown Glycogenolysis 1.0e+00
## Glycogen Metabolism 1.0e+00
## Glycogen Storage Diseases 1.0e+00
## Glycogen Synthesis 1.0e+00
## Glycolysis 1.0e+00
## Glycosphingolipid Metabolism 1.0e+00
## Glyoxylate Metabolism And Glycine Degradation 1.0e+00
## Golgi Associated Vesicle Biogenesis 1.0e+00
## Golgi To Er Retrograde Transport 1.0e+00
## Grb7 Events In Erbb2 Signaling 1.0e+00
## Hats Acetylate Histones 1.0e+00
## Hcmv Late Events 1.0e+00
## Hdacs Deacetylate Histones 1.0e+00
## Hdms Demethylate Histones 1.0e+00
## Hdr Through Mmej Alt Nhej 1.0e+00
## Hedgehog Ligand Biogenesis 1.0e+00
## Hedgehog Off State 1.0e+00
## Hedgehog On State 1.0e+00
## Heme Biosynthesis 1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism 1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 1.0e+00
## Histidine Catabolism 1.0e+00
## Hiv Elongation Arrest And Recovery 1.0e+00
## Hiv Transcription Elongation 1.0e+00
## Hiv Transcription Initiation 1.0e+00
## Hormone Ligand Binding Receptors 1.0e+00
## Host Interactions Of Hiv Factors 1.0e+00
## Hs Gag Biosynthesis 1.0e+00
## Hs Gag Degradation 1.0e+00
## Hsf1 Activation 1.0e+00
## Hsf1 Dependent Transactivation 1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna 1.0e+00
## Hyaluronan Biosynthesis And Export 1.0e+00
## Hyaluronan Metabolism 1.0e+00
## Hyaluronan Uptake And Degradation 1.0e+00
## Hydrolysis Of Lpc 1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions 1.0e+00
## Influenza Infection 1.0e+00
## Inhibition Of Dna Recombination At Telomere 1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 1.0e+00
## Inositol Phosphate Metabolism 1.0e+00
## Insulin Processing 1.0e+00
## Insulin Receptor Recycling 1.0e+00
## Integration Of Energy Metabolism 1.0e+00
## Integration Of Provirus 1.0e+00
## Interaction Between L1 And Ankyrins 1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida 1.0e+00
## Interactions Of Rev With Host Cellular Proteins 1.0e+00
## Interactions Of Vpr With Host Cellular Proteins 1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates 1.0e+00
## Interleukin 36 Pathway 1.0e+00
## Intestinal Absorption 1.0e+00
## Intra Golgi Traffic 1.0e+00
## Intraflagellar Transport 1.0e+00
## Inwardly Rectifying K Channels 1.0e+00
## Ion Homeostasis 1.0e+00
## Ion Transport By P Type Atpases 1.0e+00
## Ionotropic Activity Of Kainate Receptors 1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex 1.0e+00
## Ire1alpha Activates Chaperones 1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn 1.0e+00
## Irs Activation 1.0e+00
## Josephin Domain Dubs 1.0e+00
## Keratan Sulfate Biosynthesis 1.0e+00
## Keratan Sulfate Degradation 1.0e+00
## Keratan Sulfate Keratin Metabolism 1.0e+00
## Keratinization 1.0e+00
## Ketone Body Metabolism 1.0e+00
## Kinesins 1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna 1.0e+00
## Lagging Strand Synthesis 1.0e+00
## Laminin Interactions 1.0e+00
## Leukotriene Receptors 1.0e+00
## Lgi Adam Interactions 1.0e+00
## Ligand Receptor Interactions 1.0e+00
## Linoleic Acid La Metabolism 1.0e+00
## Lipid Particle Organization 1.0e+00
## Lipophagy 1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome 1.0e+00
## Loss Of Function Of Smad2 3 In Cancer 1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 1.0e+00
## Ltc4 Cysltr Mediated Il4 Production 1.0e+00
## Lysine Catabolism 1.0e+00
## Lysosome Vesicle Biogenesis 1.0e+00
## Lysosphingolipid And Lpa Receptors 1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 1.0e+00
## Maturation Of Nucleoprotein 1.0e+00
## Maturation Of Protein 3a 1.0e+00
## Maturation Of Sars Cov 1 Spike Protein 1.0e+00
## Maturation Of Sars Cov 2 Spike Protein 1.0e+00
## Meiotic Synapsis 1.0e+00
## Melanin Biosynthesis 1.0e+00
## Met Activates Pi3k Akt Signaling 1.0e+00
## Met Activates Ptpn11 1.0e+00
## Met Activates Rap1 And Rac1 1.0e+00
## Met Activates Ras Signaling 1.0e+00
## Met Interacts With Tns Proteins 1.0e+00
## Met Receptor Activation 1.0e+00
## Met Receptor Recycling 1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes 1.0e+00
## Metabolism Of Amine Derived Hormones 1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins 1.0e+00
## Metabolism Of Cofactors 1.0e+00
## Metabolism Of Folate And Pterines 1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se 1.0e+00
## Metabolism Of Polyamines 1.0e+00
## Metabolism Of Rna 1.0e+00
## Metabolism Of Steroid Hormones 1.0e+00
## Metabolism Of Steroids 1.0e+00
## Metal Ion Slc Transporters 1.0e+00
## Metal Sequestration By Antimicrobial Proteins 1.0e+00
## Metallothioneins Bind Metals 1.0e+00
## Methionine Salvage Pathway 1.0e+00
## Methylation 1.0e+00
## Microrna Mirna Biogenesis 1.0e+00
## Mineralocorticoid Biosynthesis 1.0e+00
## Miro Gtpase Cycle 1.0e+00
## Miscellaneous Substrates 1.0e+00
## Miscellaneous Transport And Binding Events 1.0e+00
## Mismatch Repair 1.0e+00
## Mitochondrial Calcium Ion Transport 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis 1.0e+00
## Mitochondrial Protein Import 1.0e+00
## Mitochondrial Translation 1.0e+00
## Mitochondrial Trna Aminoacylation 1.0e+00
## Mitochondrial Uncoupling 1.0e+00
## Mitotic Spindle Checkpoint 1.0e+00
## Mitotic Telophase Cytokinesis 1.0e+00
## Molecules Associated With Elastic Fibres 1.0e+00
## Molybdenum Cofactor Biosynthesis 1.0e+00
## Mrna Capping 1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease 1.0e+00
## Mrna Editing 1.0e+00
## Mrna Editing C To U Conversion 1.0e+00
## Mrna Splicing 1.0e+00
## Mrna Splicing Minor Pathway 1.0e+00
## Mtor Signalling 1.0e+00
## Mtorc1 Mediated Signalling 1.0e+00
## Mucopolysaccharidoses 1.0e+00
## Multifunctional Anion Exchangers 1.0e+00
## Muscarinic Acetylcholine Receptors 1.0e+00
## Myoclonic Epilepsy Of Lafora 1.0e+00
## N Glycan Antennae Elongation 1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi 1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi 1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 1.0e+00
## Na Cl Dependent Neurotransmitter Transporters 1.0e+00
## Ncam1 Interactions 1.0e+00
## Nectin Necl Trans Heterodimerization 1.0e+00
## Neddylation 1.0e+00
## Nef And Signal Transduction 1.0e+00
## Nef Mediated Cd4 Down Regulation 1.0e+00
## Nef Mediated Cd8 Down Regulation 1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 1.0e+00
## Negative Feedback Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 1.0e+00
## Negative Regulation Of Flt3 1.0e+00
## Negative Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Met Activity 1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 1.0e+00
## Negative Regulation Of Notch4 Signaling 1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 1.0e+00
## Nephrin Family Interactions 1.0e+00
## Neurexins And Neuroligins 1.0e+00
## Neurofascin Interactions 1.0e+00
## Neurotoxicity Of Clostridium Toxins 1.0e+00
## Neurotransmitter Clearance 1.0e+00
## Neurotransmitter Release Cycle 1.0e+00
## Ngf Independant Trka Activation 1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase 1.0e+00
## Non Integrin Membrane Ecm Interactions 1.0e+00
## Noncanonical Activation Of Notch3 1.0e+00
## Nonsense Mediated Decay Nmd 1.0e+00
## Norepinephrine Neurotransmitter Release Cycle 1.0e+00
## Notch Hlh Transcription Pathway 1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Intracellular Domain Regulates Transcription 1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 1.0e+00
## Nrcam Interactions 1.0e+00
## Ns1 Mediated Effects On Host Pathways 1.0e+00
## Ntrk2 Activates Rac1 1.0e+00
## Nuclear Import Of Rev Protein 1.0e+00
## Nuclear Receptor Transcription Pathway 1.0e+00
## Nucleobase Biosynthesis 1.0e+00
## Nucleobase Catabolism 1.0e+00
## Nucleotide Excision Repair 1.0e+00
## Nucleotide Like Purinergic Receptors 1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins 1.0e+00
## Olfactory Signaling Pathway 1.0e+00
## Opsins 1.0e+00
## Orc1 Removal From Chromatin 1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 1.0e+00
## Organic Anion Transport 1.0e+00
## Organic Anion Transporters 1.0e+00
## Organic Cation Anion Zwitterion Transport 1.0e+00
## Organic Cation Transport 1.0e+00
## P2y Receptors 1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1 1.0e+00
## Passive Transport By Aquaporins 1.0e+00
## Pcna Dependent Long Patch Base Excision Repair 1.0e+00
## Pentose Phosphate Pathway 1.0e+00
## Peptide Hormone Biosynthesis 1.0e+00
## Peroxisomal Lipid Metabolism 1.0e+00
## Peroxisomal Protein Import 1.0e+00
## Phase 0 Rapid Depolarisation 1.0e+00
## Phase 1 Inactivation Of Fast Na Channels 1.0e+00
## Phase 2 Plateau Phase 1.0e+00
## Phase 3 Rapid Repolarisation 1.0e+00
## Phase I Functionalization Of Compounds 1.0e+00
## Phase Ii Conjugation Of Compounds 1.0e+00
## Phenylalanine And Tyrosine Metabolism 1.0e+00
## Phenylalanine Metabolism 1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins 1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins 1.0e+00
## Phospholipase C Mediated Cascade Fgfr2 1.0e+00
## Phospholipase C Mediated Cascade Fgfr4 1.0e+00
## Physiological Factors 1.0e+00
## Pi 3k Cascade Fgfr1 1.0e+00
## Pi 3k Cascade Fgfr2 1.0e+00
## Pi 3k Cascade Fgfr3 1.0e+00
## Pi 3k Cascade Fgfr4 1.0e+00
## Pi3k Akt Activation 1.0e+00
## Pi3k Events In Erbb4 Signaling 1.0e+00
## Pi5p Regulates Tp53 Acetylation 1.0e+00
## Piwi Interacting Rna Pirna Biogenesis 1.0e+00
## Pka Activation In Glucagon Signalling 1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors 1.0e+00
## Pkmts Methylate Histone Lysines 1.0e+00
## Platelet Calcium Homeostasis 1.0e+00
## Platelet Homeostasis 1.0e+00
## Platelet Sensitization By Ldl 1.0e+00
## Polb Dependent Long Patch Base Excision Repair 1.0e+00
## Polo Like Kinase Mediated Events 1.0e+00
## Polymerase Switching 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression 1.0e+00
## Post Chaperonin Tubulin Folding Pathway 1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation 1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 1.0e+00
## Pre Notch Expression And Processing 1.0e+00
## Pre Notch Processing In Golgi 1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum 1.0e+00
## Pregnenolone Biosynthesis 1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening 1.0e+00
## Presynaptic Function Of Kainate Receptors 1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion 1.0e+00
## Processing And Activation Of Sumo 1.0e+00
## Processing Of Capped Intron Containing Pre Mrna 1.0e+00
## Processing Of Capped Intronless Pre Mrna 1.0e+00
## Processing Of Intronless Pre Mrnas 1.0e+00
## Processing Of Smdt1 1.0e+00
## Processive Synthesis On The C Strand Of The Telomere 1.0e+00
## Processive Synthesis On The Lagging Strand 1.0e+00
## Prolactin Receptor Signaling 1.0e+00
## Prolonged Erk Activation Events 1.0e+00
## Propionyl Coa Catabolism 1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor 1.0e+00
## Prostanoid Ligand Receptors 1.0e+00
## Protein Methylation 1.0e+00
## Protein Protein Interactions At Synapses 1.0e+00
## Protein Ubiquitination 1.0e+00
## Proton Coupled Monocarboxylate Transport 1.0e+00
## Pten Regulation 1.0e+00
## Ptk6 Expression 1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing 1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 1.0e+00
## Purine Catabolism 1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis 1.0e+00
## Pyrimidine Catabolism 1.0e+00
## Pyrimidine Salvage 1.0e+00
## Pyruvate Metabolism 1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle 1.0e+00
## Ra Biosynthesis Pathway 1.0e+00
## Rap1 Signalling 1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 1.0e+00
## Ras Processing 1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway 1.0e+00
## Receptor Type Tyrosine Protein Phosphatases 1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex 1.0e+00
## Recycling Of Bile Acids And Salts 1.0e+00
## Recycling Of Eif2 Gdp 1.0e+00
## Reduction Of Cytosolic Ca Levels 1.0e+00
## Reelin Signalling Pathway 1.0e+00
## Regulated Proteolysis Of P75ntr 1.0e+00
## Regulation Of Bach1 Activity 1.0e+00
## Regulation Of Beta Cell Development 1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 1.0e+00
## Regulation Of Expression Of Slits And Robos 1.0e+00
## Regulation Of Fzd By Ubiquitination 1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor 1.0e+00
## Regulation Of Gene Expression In Beta Cells 1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna 1.0e+00
## Regulation Of Insulin Secretion 1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors 1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 1.0e+00
## Regulation Of Pten Gene Transcription 1.0e+00
## Regulation Of Pten Localization 1.0e+00
## Regulation Of Pten Mrna Translation 1.0e+00
## Regulation Of Pten Stability And Activity 1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 1.0e+00
## Regulation Of Ras By Gaps 1.0e+00
## Regulation Of Signaling By Cbl 1.0e+00
## Regulation Of Signaling By Nodal 1.0e+00
## Regulation Of Tp53 Activity Through Acetylation 1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors 1.0e+00
## Relaxin Receptors 1.0e+00
## Release Of Apoptotic Factors From The Mitochondria 1.0e+00
## Release Of Hh Np From The Secreting Cell 1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 1.0e+00
## Resolution Of Abasic Sites Ap Sites 1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 1.0e+00
## Respiratory Electron Transport 1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency 1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 1.0e+00
## Response Of Mtb To Phagocytosis 1.0e+00
## Response To Metal Ions 1.0e+00
## Retinoid Cycle Disease Events 1.0e+00
## Retrograde Neurotrophin Signalling 1.0e+00
## Reversible Hydration Of Carbon Dioxide 1.0e+00
## Rho Gtpases Activate Cit 1.0e+00
## Rho Gtpases Activate Pkns 1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins 1.0e+00
## Rho Gtpases Activate Rocks 1.0e+00
## Rhobtb Gtpase Cycle 1.0e+00
## Rhobtb1 Gtpase Cycle 1.0e+00
## Rhobtb2 Gtpase Cycle 1.0e+00
## Rhobtb3 Atpase Cycle 1.0e+00
## Rhot1 Gtpase Cycle 1.0e+00
## Rna Polymerase I Promoter Escape 1.0e+00
## Rna Polymerase I Transcription 1.0e+00
## Rna Polymerase I Transcription Initiation 1.0e+00
## Rna Polymerase I Transcription Termination 1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes 1.0e+00
## Rna Polymerase Ii Transcription Termination 1.0e+00
## Rna Polymerase Iii Chain Elongation 1.0e+00
## Rna Polymerase Iii Transcription 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Termination 1.0e+00
## Robo Receptors Bind Akap5 1.0e+00
## Role Of Abl In Robo Slit Signaling 1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization 1.0e+00
## Role Of Phospholipids In Phagocytosis 1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling 1.0e+00
## Rora Activates Gene Expression 1.0e+00
## Rrna Modification In The Mitochondrion 1.0e+00
## Rrna Modification In The Nucleus And Cytosol 1.0e+00
## Rrna Processing 1.0e+00
## Rrna Processing In The Mitochondrion 1.0e+00
## Rsk Activation 1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription 1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription 1.0e+00
## Runx3 Regulates Cdkn1a Transcription 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration 1.0e+00
## Runx3 Regulates Notch Signaling 1.0e+00
## Runx3 Regulates P14 Arf 1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription 1.0e+00
## Sars Cov 1 Genome Replication And Transcription 1.0e+00
## Sars Cov 1 Infection 1.0e+00
## Sars Cov 2 Infection 1.0e+00
## Scavenging By Class F Receptors 1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 1.0e+00
## Selenoamino Acid Metabolism 1.0e+00
## Sema3a Pak Dependent Axon Repulsion 1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 1.0e+00
## Sema4d In Semaphorin Signaling 1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse 1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 1.0e+00
## Sensory Processing Of Sound 1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 1.0e+00
## Separation Of Sister Chromatids 1.0e+00
## Serine Biosynthesis 1.0e+00
## Serotonin And Melatonin Biosynthesis 1.0e+00
## Serotonin Neurotransmitter Release Cycle 1.0e+00
## Serotonin Receptors 1.0e+00
## Shc Mediated Cascade Fgfr1 1.0e+00
## Shc Mediated Cascade Fgfr3 1.0e+00
## Shc Mediated Cascade Fgfr4 1.0e+00
## Shc Related Events Triggered By Igf1r 1.0e+00
## Shc1 Events In Erbb4 Signaling 1.0e+00
## Signal Attenuation 1.0e+00
## Signaling By Activin 1.0e+00
## Signaling By Bmp 1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants 1.0e+00
## Signaling By Erythropoietin 1.0e+00
## Signaling By Fgfr2 Iiia Tm 1.0e+00
## Signaling By Fgfr2 In Disease 1.0e+00
## Signaling By Fgfr3 Fusions In Cancer 1.0e+00
## Signaling By Fgfr4 In Disease 1.0e+00
## Signaling By Flt3 Fusion Proteins 1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants 1.0e+00
## Signaling By Hedgehog 1.0e+00
## Signaling By Lrp5 Mutants 1.0e+00
## Signaling By Mapk Mutants 1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 1.0e+00
## Signaling By Mras Complex Mutants 1.0e+00
## Signaling By Mst1 1.0e+00
## Signaling By Nodal 1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 1.0e+00
## Signaling By Notch4 1.0e+00
## Signaling By Retinoic Acid 1.0e+00
## Signaling By Rnf43 Mutants 1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer 1.0e+00
## Signaling By Wnt In Cancer 1.0e+00
## Signalling To P38 Via Rit And Rin 1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 1.0e+00
## Slc Mediated Transmembrane Transport 1.0e+00
## Slc Transporter Disorders 1.0e+00
## Small Interfering Rna Sirna Biogenesis 1.0e+00
## Smooth Muscle Contraction 1.0e+00
## Snrnp Assembly 1.0e+00
## Sodium Calcium Exchangers 1.0e+00
## Sodium Coupled Phosphate Cotransporters 1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 1.0e+00
## Sodium Proton Exchangers 1.0e+00
## Sos Mediated Signalling 1.0e+00
## Sperm Motility And Taxes 1.0e+00
## Sphingolipid De Novo Biosynthesis 1.0e+00
## Sphingolipid Metabolism 1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane 1.0e+00
## Stat5 Activation 1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants 1.0e+00
## Striated Muscle Contraction 1.0e+00
## Sulfide Oxidation To Sulfate 1.0e+00
## Sulfur Amino Acid Metabolism 1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1 1.0e+00
## Sumo Is Proteolytically Processed 1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 1.0e+00
## Sumoylation Of Chromatin Organization Proteins 1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins 1.0e+00
## Sumoylation Of Dna Replication Proteins 1.0e+00
## Sumoylation Of Intracellular Receptors 1.0e+00
## Sumoylation Of Rna Binding Proteins 1.0e+00
## Sumoylation Of Sumoylation Proteins 1.0e+00
## Sumoylation Of Transcription Factors 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins 1.0e+00
## Suppression Of Apoptosis 1.0e+00
## Suppression Of Phagosomal Maturation 1.0e+00
## Surfactant Metabolism 1.0e+00
## Switching Of Origins To A Post Replicative State 1.0e+00
## Synaptic Adhesion Like Molecules 1.0e+00
## Syndecan Interactions 1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids 1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 1.0e+00
## Synthesis Of Bile Acids And Bile Salts 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 1.0e+00
## Synthesis Of Diphthamide Eef2 1.0e+00
## Synthesis Of Dolichyl Phosphate 1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 1.0e+00
## Synthesis Of Gdp Mannose 1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi 1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol 1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol 1.0e+00
## Synthesis Of Ketone Bodies 1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex 1.0e+00
## Synthesis Of Lipoxins Lx 1.0e+00
## Synthesis Of Pa 1.0e+00
## Synthesis Of Pc 1.0e+00
## Synthesis Of Pe 1.0e+00
## Synthesis Of Pg 1.0e+00
## Synthesis Of Pi 1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Er Membrane 1.0e+00
## Synthesis Of Pips At The Golgi Membrane 1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane 1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol 1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine 1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas 1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe 1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin 1.0e+00
## Tachykinin Receptors Bind Tachykinins 1.0e+00
## Tbc Rabgaps 1.0e+00
## Telomere C Strand Lagging Strand Synthesis 1.0e+00
## Telomere C Strand Synthesis Initiation 1.0e+00
## Terminal Pathway Of Complement 1.0e+00
## Termination Of Translesion Dna Synthesis 1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 1.0e+00
## Tgf Beta Receptor Signaling Activates Smads 1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 1.0e+00
## The Activation Of Arylsulfatases 1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport 1.0e+00
## The Fatty Acid Cycling Model 1.0e+00
## The Phototransduction Cascade 1.0e+00
## The Retinoid Cycle In Cones Daylight Vision 1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 1.0e+00
## Thromboxane Signalling Through Tp Receptor 1.0e+00
## Thyroxine Biosynthesis 1.0e+00
## Tie2 Signaling 1.0e+00
## Tight Junction Interactions 1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd 1.0e+00
## Tp53 Regulates Metabolic Genes 1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Trafficking Of Ampa Receptors 1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors 1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium 1.0e+00
## Trail Signaling 1.0e+00
## Trans Golgi Network Vesicle Budding 1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner 1.0e+00
## Transcription Of The Hiv Genome 1.0e+00
## Transcriptional Regulation By E2f6 1.0e+00
## Transcriptional Regulation By Small Rnas 1.0e+00
## Transcriptional Regulation Of Testis Differentiation 1.0e+00
## Transferrin Endocytosis And Recycling 1.0e+00
## Translation 1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 1.0e+00
## Translation Of Sars Cov 1 Structural Proteins 1.0e+00
## Translation Of Sars Cov 2 Structural Proteins 1.0e+00
## Translesion Synthesis By Polh 1.0e+00
## Translesion Synthesis By Polk 1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 1.0e+00
## Transport And Synthesis Of Paps 1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 1.0e+00
## Transport Of Connexons To The Plasma Membrane 1.0e+00
## Transport Of Fatty Acids 1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts 1.0e+00
## Transport Of Mature Transcript To Cytoplasm 1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 1.0e+00
## Transport Of Nucleotide Sugars 1.0e+00
## Transport Of Organic Anions 1.0e+00
## Transport Of The Slbp Dependant Mature Mrna 1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules 1.0e+00
## Triglyceride Biosynthesis 1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 1.0e+00
## Trna Aminoacylation 1.0e+00
## Trna Modification In The Mitochondrion 1.0e+00
## Trna Modification In The Nucleus And Cytosol 1.0e+00
## Trna Processing 1.0e+00
## Trna Processing In The Mitochondrion 1.0e+00
## Trna Processing In The Nucleus 1.0e+00
## Trp Channels 1.0e+00
## Tryptophan Catabolism 1.0e+00
## Type I Hemidesmosome Assembly 1.0e+00
## Tyrosine Catabolism 1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins 1.0e+00
## Ubiquinol Biosynthesis 1.0e+00
## Uch Proteinases 1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 1.0e+00
## Unwinding Of Dna 1.0e+00
## Uptake And Actions Of Bacterial Toxins 1.0e+00
## Uptake And Function Of Anthrax Toxins 1.0e+00
## Uptake And Function Of Diphtheria Toxin 1.0e+00
## Urea Cycle 1.0e+00
## Vasopressin Like Receptors 1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 1.0e+00
## Vegf Ligand Receptor Interactions 1.0e+00
## Viral Messenger Rna Synthesis 1.0e+00
## Vitamin B1 Thiamin Metabolism 1.0e+00
## Vitamin B2 Riboflavin Metabolism 1.0e+00
## Vitamin B5 Pantothenate Metabolism 1.0e+00
## Vitamin C Ascorbate Metabolism 1.0e+00
## Vitamin D Calciferol Metabolism 1.0e+00
## Vitamins 1.0e+00
## Vldl Assembly 1.0e+00
## Vldl Clearance 1.0e+00
## Voltage Gated Potassium Channels 1.0e+00
## Vxpx Cargo Targeting To Cilium 1.0e+00
## Wax And Plasmalogen Biosynthesis 1.0e+00
## Wnt Mediated Activation Of Dvl 1.0e+00
## Xenobiotics 1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family 1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family 1.0e+00
## Zinc Transporters 1.0e+00
## fdr
## Cytokine Signaling In Immune System 9.0e-47
## Signaling By Interleukins 1.7e-44
## Innate Immune System 3.2e-40
## Interleukin 10 Signaling 6.7e-31
## Interleukin 4 And Interleukin 13 Signaling 3.9e-28
## Chemokine Receptors Bind Chemokines 1.4e-24
## Peptide Ligand Binding Receptors 6.1e-19
## Toll Like Receptor Cascades 2.8e-17
## Signaling By Gpcr 8.7e-15
## Class A 1 Rhodopsin Like Receptors 4.5e-14
## Toll Like Receptor Tlr1 Tlr2 Cascade 1.3e-13
## Gpcr Ligand Binding 6.1e-13
## Interleukin 1 Family Signaling 6.2e-13
## G Alpha I Signalling Events 1.5e-12
## Neutrophil Degranulation 9.2e-12
## Toll Like Receptor 9 Tlr9 Cascade 1.6e-11
## Adaptive Immune System 1.3e-10
## Myd88 Independent Tlr4 Cascade 4.9e-10
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 6.5e-10
## Diseases Of Immune System 3.4e-09
## Death Receptor Signalling 3.6e-08
## Leishmania Infection 6.4e-08
## Irak4 Deficiency Tlr2 4 1.5e-07
## Extra Nuclear Estrogen Signaling 2.3e-07
## Nod1 2 Signaling Pathway 3.9e-07
## Regulation Of Tlr By Endogenous Ligand 3.9e-07
## Complement Cascade 6.6e-07
## Purinergic Signaling In Leishmaniasis Infection 1.5e-06
## Programmed Cell Death 2.1e-06
## Interleukin 17 Signaling 2.4e-06
## Tnfr2 Non Canonical Nf Kb Pathway 2.6e-06
## Tnfs Bind Their Physiological Receptors 2.6e-06
## Interleukin 1 Signaling 2.6e-06
## Costimulation By The Cd28 Family 2.9e-06
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 4.5e-06
## Negative Regulation Of The Pi3k Akt Network 5.9e-06
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 6.4e-06
## Regulated Necrosis 6.5e-06
## Ovarian Tumor Domain Proteases 1.2e-05
## Extracellular Matrix Organization 1.2e-05
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 1.7e-05
## P75 Ntr Receptor Mediated Signalling 2.0e-05
## Antigen Processing Cross Presentation 3.8e-05
## Heme Signaling 4.4e-05
## Pyroptosis 4.6e-05
## Deubiquitination 6.3e-05
## Infectious Disease 1.1e-04
## Activation Of Matrix Metalloproteinases 1.2e-04
## Post Translational Protein Modification 1.4e-04
## P75ntr Signals Via Nf Kb 1.4e-04
## Esr Mediated Signaling 1.5e-04
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 1.8e-04
## Fibronectin Matrix Formation 2.2e-04
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 2.2e-04
## Pi3k Akt Signaling In Cancer 3.3e-04
## Beta Defensins 3.6e-04
## Ctla4 Inhibitory Signaling 3.9e-04
## Inflammasomes 3.9e-04
## Interleukin 2 Family Signaling 4.3e-04
## Dap12 Interactions 4.7e-04
## Interleukin 18 Signaling 5.3e-04
## Activated Tak1 Mediates P38 Mapk Activation 5.3e-04
## Constitutive Signaling By Aberrant Pi3k In Cancer 5.4e-04
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 6.2e-04
## Mapk Family Signaling Cascades 6.6e-04
## Cd163 Mediating An Anti Inflammatory Response 7.1e-04
## Interleukin 1 Processing 7.1e-04
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 8.1e-04
## Defensins 8.4e-04
## Apoptosis 1.1e-03
## Interleukin 12 Family Signaling 1.3e-03
## Interleukin 6 Signaling 1.3e-03
## Signaling By Nuclear Receptors 1.4e-03
## Antimicrobial Peptides 1.6e-03
## Cd28 Dependent Vav1 Pathway 1.6e-03
## Killing Mechanisms 1.6e-03
## Intracellular Signaling By Second Messengers 1.7e-03
## Cell Surface Interactions At The Vascular Wall 1.7e-03
## Cd28 Co Stimulation 1.8e-03
## Collagen Degradation 1.9e-03
## P75ntr Recruits Signalling Complexes 1.9e-03
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 1.9e-03
## Hemostasis 2.4e-03
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 2.7e-03
## Caspase Activation Via Death Receptors In The Presence Of Ligand 3.6e-03
## The Nlrp3 Inflammasome 3.6e-03
## Gab1 Signalosome 4.2e-03
## Rip Mediated Nfkb Activation Via Zbp1 4.2e-03
## Transcriptional Regulation By Runx2 4.3e-03
## Signaling By Scf Kit 4.6e-03
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 5.0e-03
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 5.2e-03
## Signaling By Receptor Tyrosine Kinases 5.3e-03
## Rna Polymerase Ii Transcription 6.3e-03
## Signaling By Kit In Disease 6.5e-03
## Zbp1 Dai Mediated Induction Of Type I Ifns 7.4e-03
## Signaling By Egfr 7.6e-03
## Eph Ephrin Mediated Repulsion Of Cells 8.2e-03
## Degradation Of The Extracellular Matrix 8.7e-03
## Eph Ephrin Signaling 8.7e-03
## Interferon Gamma Signaling 9.0e-03
## Ikk Complex Recruitment Mediated By Rip1 9.2e-03
## Cellular Senescence 9.2e-03
## Rac3 Gtpase Cycle 9.2e-03
## Cellular Responses To External Stimuli 9.4e-03
## Signaling By Ptk6 9.4e-03
## Platelet Activation Signaling And Aggregation 9.4e-03
## Interleukin 6 Family Signaling 9.8e-03
## Traf6 Mediated Nf Kb Activation 9.8e-03
## Vesicle Mediated Transport 1.1e-02
## Rhoq Gtpase Cycle 1.3e-02
## Assembly Of Collagen Fibrils And Other Multimeric Structures 1.4e-02
## Cargo Recognition For Clathrin Mediated Endocytosis 1.4e-02
## Cytosolic Sensors Of Pathogen Associated Dna 1.5e-02
## Pd 1 Signaling 1.5e-02
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 1.5e-02
## Dap12 Signaling 1.6e-02
## Downstream Signal Transduction 1.6e-02
## Senescence Associated Secretory Phenotype Sasp 1.8e-02
## Tnfr1 Induced Nfkappab Signaling Pathway 1.7e-02
## Activation Of C3 And C5 1.8e-02
## Egfr Downregulation 1.8e-02
## Mapk Targets Nuclear Events Mediated By Map Kinases 1.8e-02
## Runx2 Regulates Genes Involved In Cell Migration 1.8e-02
## Egfr Interacts With Phospholipase C Gamma 2.2e-02
## Egfr Transactivation By Gastrin 2.2e-02
## Interleukin 9 Signaling 2.2e-02
## Trif Mediated Programmed Cell Death 2.2e-02
## Negative Regulators Of Ddx58 Ifih1 Signaling 2.3e-02
## Regulation Of Tnfr1 Signaling 2.5e-02
## Rhog Gtpase Cycle 2.5e-02
## Activation Of The Ap 1 Family Of Transcription Factors 2.7e-02
## Interleukin 21 Signaling 2.7e-02
## Mapk3 Erk1 Activation 2.7e-02
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 2.7e-02
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 3.0e-02
## Apoptotic Cleavage Of Cell Adhesion Proteins 3.1e-02
## Initial Triggering Of Complement 3.1e-02
## Interleukin 27 Signaling 3.1e-02
## Receptor Mediated Mitophagy 3.1e-02
## Response To Elevated Platelet Cytosolic Ca2 3.1e-02
## Selective Autophagy 3.3e-02
## Gp1b Ix V Activation Signalling 3.6e-02
## Interleukin 35 Signalling 3.6e-02
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 3.6e-02
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 3.6e-02
## Nervous System Development 3.6e-02
## C Type Lectin Receptors Clrs 3.8e-02
## Interferon Signaling 3.9e-02
## Apoptosis Induced Dna Fragmentation 4.0e-02
## Erbb2 Activates Ptk6 Signaling 4.0e-02
## Nf Kb Is Activated And Signals Survival 4.0e-02
## Rac2 Gtpase Cycle 4.0e-02
## Tnfr1 Induced Proapoptotic Signaling 4.0e-02
## Trafficking And Processing Of Endosomal Tlr 4.0e-02
## Tnf Signaling 4.0e-02
## Clathrin Mediated Endocytosis 4.1e-02
## Collagen Formation 4.1e-02
## Transcriptional Regulation Of Granulopoiesis 4.1e-02
## Dcc Mediated Attractive Signaling 4.4e-02
## Early Phase Of Hiv Life Cycle 4.4e-02
## Interleukin 15 Signaling 4.4e-02
## Shc1 Events In Egfr Signaling 4.4e-02
## Mapk6 Mapk4 Signaling 4.5e-02
## Interleukin 12 Signaling 4.6e-02
## Constitutive Signaling By Egfrviii 4.8e-02
## Erbb2 Regulates Cell Motility 4.8e-02
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 4.8e-02
## P130cas Linkage To Mapk Signaling For Integrins 4.8e-02
## Signaling By Notch3 5.0e-02
## Ub Specific Processing Proteases 5.1e-02
## Binding And Uptake Of Ligands By Scavenger Receptors 5.2e-02
## Netrin 1 Signaling 5.2e-02
## Signaling By Erbb2 5.2e-02
## Grb2 Events In Erbb2 Signaling 5.2e-02
## Pi3k Events In Erbb2 Signaling 5.2e-02
## Signal Regulatory Protein Family Interactions 5.2e-02
## Signaling By Erbb2 Ecd Mutants 5.2e-02
## Sumoylation Of Dna Methylation Proteins 5.2e-02
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 5.2e-02
## Cdc42 Gtpase Cycle 5.3e-02
## Clec7a Dectin 1 Signaling 5.3e-02
## Class I Mhc Mediated Antigen Processing Presentation 5.4e-02
## Apoptotic Execution Phase 5.5e-02
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 5.7e-02
## Intrinsic Pathway For Apoptosis 6.2e-02
## Rhoj Gtpase Cycle 6.2e-02
## Signaling By Cytosolic Fgfr1 Fusion Mutants 6.2e-02
## Signaling By Vegf 6.2e-02
## Transcriptional Regulation By Runx1 6.6e-02
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 6.7e-02
## Other Semaphorin Interactions 6.7e-02
## Scavenging By Class A Receptors 6.7e-02
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 6.7e-02
## Signaling By Erbb4 6.9e-02
## Signaling By Pdgf 6.9e-02
## Signaling By Pdgfr In Disease 7.3e-02
## Interleukin 37 Signaling 8.0e-02
## Signal Transduction By L1 8.0e-02
## Cd28 Dependent Pi3k Akt Signaling 8.6e-02
## Rac1 Gtpase Cycle 8.6e-02
## Shc1 Events In Erbb2 Signaling 8.6e-02
## Foxo Mediated Transcription 9.5e-02
## Raf Independent Mapk1 3 Activation 9.3e-02
## Growth Hormone Receptor Signaling 1.0e-01
## Runx2 Regulates Osteoblast Differentiation 1.0e-01
## Circadian Clock 1.1e-01
## Inactivation Of Csf3 G Csf Signaling 1.1e-01
## Notch3 Activation And Transmission Of Signal To The Nucleus 1.1e-01
## Rhob Gtpase Cycle 1.1e-01
## Scavenging Of Heme From Plasma 1.1e-01
## Signaling By Egfr In Cancer 1.1e-01
## Interleukin 20 Family Signaling 1.1e-01
## Signaling By Erbb2 In Cancer 1.1e-01
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 1.2e-01
## G0 And Early G1 1.2e-01
## Integrin Signaling 1.2e-01
## Interferon Alpha Beta Signaling 1.2e-01
## Interleukin Receptor Shc Signaling 1.2e-01
## Membrane Trafficking 1.2e-01
## Rhoc Gtpase Cycle 1.2e-01
## Signaling By Ntrks 1.2e-01
## Vegfr2 Mediated Vascular Permeability 1.2e-01
## Cell Death Signalling Via Nrage Nrif And Nade 1.3e-01
## Developmental Biology 1.3e-01
## Downregulation Of Erbb2 Signaling 1.3e-01
## Mitophagy 1.3e-01
## Ripk1 Mediated Regulated Necrosis 1.3e-01
## G Alpha Q Signalling Events 1.4e-01
## Signaling By Csf3 G Csf 1.4e-01
## Fgfr1 Mutant Receptor Activation 1.4e-01
## Nicotinate Metabolism 1.4e-01
## Runx2 Regulates Bone Development 1.4e-01
## Perk Regulates Gene Expression 1.5e-01
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 1.5e-01
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 1.6e-01
## Mitotic G1 Phase And G1 S Transition 1.6e-01
## Autophagy 1.6e-01
## Cargo Concentration In The Er 1.6e-01
## Plasma Lipoprotein Clearance 1.6e-01
## Fceri Mediated Mapk Activation 1.7e-01
## Gpvi Mediated Activation Cascade 1.7e-01
## Regulation Of Tp53 Expression And Degradation 1.9e-01
## Rhoh Gtpase Cycle 1.9e-01
## Apoptotic Cleavage Of Cellular Proteins 2.0e-01
## Fcgr3a Mediated Il10 Synthesis 2.0e-01
## Signaling By Fgfr1 In Disease 2.0e-01
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 2.0e-01
## Ngf Stimulated Transcription 2.1e-01
## Platelet Aggregation Plug Formation 2.1e-01
## Map2k And Mapk Activation 2.1e-01
## Signaling By Notch 2.1e-01
## Alternative Complement Activation 2.2e-01
## Fasl Cd95l Signaling 2.2e-01
## G2 M Dna Replication Checkpoint 2.2e-01
## Galactose Catabolism 2.2e-01
## Hdl Clearance 2.2e-01
## Mecp2 Regulates Transcription Factors 2.2e-01
## Nostrin Mediated Enos Trafficking 2.2e-01
## Runx1 Regulates Expression Of Components Of Tight Junctions 2.2e-01
## Runx2 Regulates Chondrocyte Maturation 2.2e-01
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 2.2e-01
## Ephb Mediated Forward Signaling 2.2e-01
## Rhof Gtpase Cycle 2.2e-01
## Diseases Of Programmed Cell Death 2.3e-01
## Tp53 Regulates Transcription Of Cell Death Genes 2.4e-01
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 2.4e-01
## Activated Ntrk3 Signals Through Pi3k 2.4e-01
## Activation Of Caspases Through Apoptosome Mediated Cleavage 2.4e-01
## Biosynthesis Of Epa Derived Spms 2.4e-01
## Clec7a Inflammasome Pathway 2.4e-01
## Nade Modulates Death Signalling 2.4e-01
## Phosphorylation Of Emi1 2.4e-01
## Protein Repair 2.4e-01
## Ptk6 Promotes Hif1a Stabilization 2.4e-01
## Ptk6 Regulates Cell Cycle 2.4e-01
## Scavenging By Class B Receptors 2.4e-01
## Sensing Of Dna Double Strand Breaks 2.4e-01
## Signaling By Moderate Kinase Activity Braf Mutants 2.4e-01
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 2.4e-01
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 2.4e-01
## Tnfr1 Mediated Ceramide Production 2.4e-01
## Cyclin D Associated Events In G1 2.6e-01
## Fc Epsilon Receptor Fceri Signaling 2.6e-01
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 2.6e-01
## Sumoylation 2.6e-01
## Activated Ntrk2 Signals Through Fyn 2.7e-01
## Activation Of Nima Kinases Nek9 Nek6 Nek7 2.7e-01
## Creb Phosphorylation 2.7e-01
## Defective Factor Viii Causes Hemophilia A 2.7e-01
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 2.7e-01
## Ikba Variant Leads To Eda Id 2.7e-01
## Modulation By Mtb Of Host Immune System 2.7e-01
## Parasite Infection 2.8e-01
## Rhod Gtpase Cycle 2.8e-01
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 3.0e-01
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 3.0e-01
## Hdl Assembly 3.0e-01
## Inactivation Of Cdc42 And Rac1 3.0e-01
## Lectin Pathway Of Complement Activation 3.0e-01
## Mecp2 Regulates Transcription Of Neuronal Ligands 3.0e-01
## Netrin Mediated Repulsion Signals 3.0e-01
## Runx3 Regulates Wnt Signaling 3.0e-01
## Smac Xiap Regulated Apoptotic Response 3.0e-01
## L1cam Interactions 3.0e-01
## Cytoprotection By Hmox1 3.2e-01
## Tcr Signaling 3.2e-01
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 3.2e-01
## Downregulation Of Erbb4 Signaling 3.2e-01
## E2f Enabled Inhibition Of Pre Replication Complex Formation 3.2e-01
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 3.2e-01
## Interleukin 23 Signaling 3.2e-01
## Mapk1 Erk2 Activation 3.2e-01
## Oas Antiviral Response 3.2e-01
## Oxidative Stress Induced Senescence 3.2e-01
## Nrage Signals Death Through Jnk 3.4e-01
## Akt Phosphorylates Targets In The Nucleus 3.4e-01
## Camk Iv Mediated Phosphorylation Of Creb 3.4e-01
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 3.4e-01
## Chylomicron Assembly 3.4e-01
## Chylomicron Remodeling 3.4e-01
## Hdl Remodeling 3.4e-01
## Mastl Facilitates Mitotic Progression 3.4e-01
## P75ntr Regulates Axonogenesis 3.4e-01
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 3.4e-01
## Regulation Of Foxo Transcriptional Activity By Acetylation 3.4e-01
## Nuclear Events Kinase And Transcription Factor Activation 3.5e-01
## Ca2 Pathway 3.6e-01
## Tp53 Regulates Transcription Of Dna Repair Genes 3.6e-01
## Condensation Of Prometaphase Chromosomes 3.6e-01
## Dermatan Sulfate Biosynthesis 3.6e-01
## Dscam Interactions 3.6e-01
## Endosomal Vacuolar Pathway 3.6e-01
## Enos Activation 3.6e-01
## Ncam Signaling For Neurite Out Growth 3.6e-01
## Pexophagy 3.6e-01
## Regulation By C Flip 3.6e-01
## Rho Gtpases Activate Ktn1 3.6e-01
## Signaling By Fgfr In Disease 3.6e-01
## Signaling By Leptin 3.6e-01
## Sumoylation Of Immune Response Proteins 3.6e-01
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 3.6e-01
## Transcriptional Regulation By Mecp2 3.6e-01
## Semaphorin Interactions 3.6e-01
## Dna Methylation 3.7e-01
## Signaling By Braf And Raf Fusions 3.7e-01
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 3.8e-01
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 3.8e-01
## Interleukin 2 Signaling 3.8e-01
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 3.8e-01
## Notch2 Intracellular Domain Regulates Transcription 3.8e-01
## Pecam1 Interactions 3.8e-01
## Tandem Pore Domain Potassium Channels 3.8e-01
## Ticam1 Dependent Activation Of Irf3 Irf7 3.8e-01
## Vldlr Internalisation And Degradation 3.8e-01
## Fcgamma Receptor Fcgr Dependent Phagocytosis 3.8e-01
## Copii Mediated Vesicle Transport 3.9e-01
## Tcf Dependent Signaling In Response To Wnt 3.9e-01
## Advanced Glycosylation Endproduct Receptor Signaling 3.9e-01
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 3.9e-01
## Cytochrome C Mediated Apoptotic Response 3.9e-01
## Dissolution Of Fibrin Clot 3.9e-01
## Irf3 Mediated Induction Of Type I Ifn 3.9e-01
## P38mapk Events 3.9e-01
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 3.9e-01
## Purine Salvage 3.9e-01
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 3.9e-01
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 3.9e-01
## Epigenetic Regulation Of Gene Expression 4.0e-01
## Creation Of C4 And C2 Activators 4.0e-01
## Plasma Lipoprotein Assembly Remodeling And Clearance 4.0e-01
## Rhoa Gtpase Cycle 4.0e-01
## Golgi Cisternae Pericentriolar Stack Reorganization 4.1e-01
## Irak1 Recruits Ikk Complex 4.1e-01
## Regulation Of Ifng Signaling 4.1e-01
## Repression Of Wnt Target Genes 4.1e-01
## Traf3 Dependent Irf Activation Pathway 4.1e-01
## Prc2 Methylates Histones And Dna 4.1e-01
## Regulation Of Runx2 Expression And Activity 4.1e-01
## Signaling By Tgf Beta Receptor Complex 4.1e-01
## Depolymerisation Of The Nuclear Lamina 4.2e-01
## Er To Golgi Anterograde Transport 4.2e-01
## Heme Degradation 4.2e-01
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 4.2e-01
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 4.2e-01
## Platelet Adhesion To Exposed Collagen 4.2e-01
## Rho Gtpase Cycle 4.2e-01
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 4.2e-01
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 4.2e-01
## Wnt5a Dependent Internalization Of Fzd4 4.2e-01
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 4.2e-01
## Abc Transporter Disorders 4.4e-01
## Cellular Response To Chemical Stress 4.4e-01
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 4.4e-01
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 4.4e-01
## Dna Double Strand Break Response 4.4e-01
## Foxo Mediated Transcription Of Cell Death Genes 4.4e-01
## Nrif Signals Cell Death From The Nucleus 4.4e-01
## Regulation Of Kit Signaling 4.4e-01
## Rmts Methylate Histone Arginines 4.4e-01
## Signaling By Met 4.4e-01
## Spry Regulation Of Fgf Signaling 4.4e-01
## Sting Mediated Induction Of Host Immune Responses 4.4e-01
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 4.4e-01
## Abc Transporters In Lipid Homeostasis 4.7e-01
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 4.5e-01
## Antiviral Mechanism By Ifn Stimulated Genes 4.6e-01
## Crosslinking Of Collagen Fibrils 4.7e-01
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 4.5e-01
## Diseases Associated With Glycosylation Precursor Biosynthesis 4.7e-01
## Foxo Mediated Transcription Of Cell Cycle Genes 4.5e-01
## Mecp2 Regulates Neuronal Receptors And Channels 4.7e-01
## Oncogenic Mapk Signaling 4.6e-01
## Regulation Of Hsf1 Mediated Heat Shock Response 4.6e-01
## Regulation Of Runx1 Expression And Activity 4.5e-01
## Signaling By Ntrk3 Trkc 4.5e-01
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 4.7e-01
## Transcriptional Regulation Of White Adipocyte Differentiation 4.7e-01
## Apoptotic Factor Mediated Response 4.9e-01
## Biosynthesis Of Specialized Proresolving Mediators Spms 4.8e-01
## Cyclin A Cdk2 Associated Events At S Phase Entry 4.8e-01
## Ephrin Signaling 4.8e-01
## G Beta Gamma Signalling Through Cdc42 4.9e-01
## Initiation Of Nuclear Envelope Ne Reformation 4.8e-01
## Integrin Cell Surface Interactions 4.8e-01
## Ldl Clearance 4.8e-01
## Listeria Monocytogenes Entry Into Host Cells 4.9e-01
## Meiotic Recombination 4.8e-01
## Nicotinamide Salvaging 4.8e-01
## Phase 4 Resting Membrane Potential 4.8e-01
## Phosphorylation Of The Apc C 4.9e-01
## Pka Mediated Phosphorylation Of Creb 4.9e-01
## Plasma Lipoprotein Assembly 4.8e-01
## Regulation Of Tp53 Activity Through Methylation 4.8e-01
## Signaling By Hippo 4.9e-01
## Signalling To Ras 4.9e-01
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 4.9e-01
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 4.9e-01
## Transcription Of E2f Targets Under Negative Control By Dream Complex 4.8e-01
## Vegfr2 Mediated Cell Proliferation 4.8e-01
## Branched Chain Amino Acid Catabolism 5.1e-01
## Formation Of The Beta Catenin Tcf Transactivating Complex 5.1e-01
## Rho Gtpases Activate Paks 5.1e-01
## Unfolded Protein Response Upr 5.1e-01
## Activation Of Nmda Receptors And Postsynaptic Events 5.2e-01
## Chaperone Mediated Autophagy 5.2e-01
## Class B 2 Secretin Family Receptors 5.2e-01
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 5.2e-01
## E2f Mediated Regulation Of Dna Replication 5.2e-01
## G2 M Dna Damage Checkpoint 5.3e-01
## Incretin Synthesis Secretion And Inactivation 5.3e-01
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 5.2e-01
## Intrinsic Pathway Of Fibrin Clot Formation 5.3e-01
## Long Term Potentiation 5.3e-01
## Nucleotide Salvage 5.3e-01
## Pink1 Prkn Mediated Mitophagy 5.2e-01
## Telomere Extension By Telomerase 5.3e-01
## Termination Of O Glycan Biosynthesis 5.3e-01
## Transcriptional Regulation By Runx3 5.3e-01
## Transport To The Golgi And Subsequent Modification 5.3e-01
## Apc C Cdc20 Mediated Degradation Of Cyclin B 5.5e-01
## Cellular Response To Heat Stress 5.6e-01
## Metabolism Of Vitamins And Cofactors 5.4e-01
## Other Interleukin Signaling 5.5e-01
## Rho Gtpases Activate Nadph Oxidases 5.5e-01
## Triglyceride Catabolism 5.5e-01
## Abc Family Proteins Mediated Transport 5.7e-01
## Adp Signalling Through P2y Purinoceptor 1 5.6e-01
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 5.6e-01
## Basigin Interactions 5.6e-01
## Constitutive Signaling By Akt1 E17k In Cancer 5.7e-01
## Copi Mediated Anterograde Transport 5.7e-01
## Cyclin A B1 B2 Associated Events During G2 M Transition 5.6e-01
## Dectin 2 Family 5.7e-01
## Notch3 Intracellular Domain Regulates Transcription 5.6e-01
## Regulation Of Ifna Signaling 5.7e-01
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 5.7e-01
## Signaling By Ntrk2 Trkb 5.6e-01
## Signaling By Tgfb Family Members 5.7e-01
## Wnt Ligand Biogenesis And Trafficking 5.7e-01
## Asparagine N Linked Glycosylation 5.9e-01
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 5.9e-01
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 6.1e-01
## Infection With Mycobacterium Tuberculosis 5.9e-01
## Metabolism Of Porphyrins 5.9e-01
## Amyloid Fiber Formation 6.2e-01
## Epha Mediated Growth Cone Collapse 6.2e-01
## G1 S Specific Transcription 6.2e-01
## Myogenesis 6.2e-01
## Negative Epigenetic Regulation Of Rrna Expression 6.1e-01
## Negative Regulation Of Fgfr3 Signaling 6.2e-01
## Traf6 Mediated Irf7 Activation 6.2e-01
## Activation Of Bh3 Only Proteins 6.3e-01
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 6.5e-01
## Met Activates Ptk2 Signaling 6.3e-01
## Negative Regulation Of Fgfr4 Signaling 6.5e-01
## Transcriptional Regulation Of Pluripotent Stem Cells 6.5e-01
## G Protein Beta Gamma Signalling 6.6e-01
## Meiosis 6.7e-01
## Negative Regulation Of Fgfr1 Signaling 6.7e-01
## Nuclear Signaling By Erbb4 6.6e-01
## Plasma Lipoprotein Remodeling 6.6e-01
## Regulation Of Mecp2 Expression And Activity 6.6e-01
## Rho Gtpase Effectors 6.6e-01
## Rho Gtpases Activate Iqgaps 6.6e-01
## Rhov Gtpase Cycle 6.7e-01
## Sialic Acid Metabolism 6.7e-01
## Signal Amplification 6.7e-01
## Signaling By Notch2 6.7e-01
## Signaling By Robo Receptors 6.6e-01
## Thrombin Signalling Through Proteinase Activated Receptors Pars 6.6e-01
## Late Endosomal Microautophagy 6.8e-01
## Metabolism Of Water Soluble Vitamins And Cofactors 6.9e-01
## Negative Regulation Of Fgfr2 Signaling 6.8e-01
## Oncogene Induced Senescence 6.9e-01
## Raf Activation 6.8e-01
## Resolution Of D Loop Structures 6.8e-01
## Rhou Gtpase Cycle 6.8e-01
## Signaling By Wnt 6.8e-01
## Signalling To Erks 6.8e-01
## Ca Dependent Events 7.1e-01
## Hdr Through Single Strand Annealing Ssa 7.1e-01
## Interleukin 7 Signaling 7.0e-01
## Metalloprotease Dubs 7.1e-01
## Mhc Class Ii Antigen Presentation 7.0e-01
## Nuclear Pore Complex Npc Disassembly 7.0e-01
## Rho Gtpases Activate Wasps And Waves 7.0e-01
## Ros And Rns Production In Phagocytes 7.0e-01
## Cell Cell Communication 7.3e-01
## Diseases Of Mitotic Cell Cycle 7.3e-01
## Triglyceride Metabolism 7.3e-01
## Adora2b Mediated Anti Inflammatory Cytokines Production 7.5e-01
## Association Of Tric Cct With Target Proteins During Biosynthesis 7.4e-01
## Formation Of Fibrin Clot Clotting Cascade 7.4e-01
## Generation Of Second Messenger Molecules 7.4e-01
## Ret Signaling 7.5e-01
## Signaling By Fgfr3 7.5e-01
## Dag And Ip3 Signaling 7.6e-01
## Hcmv Early Events 7.7e-01
## Homologous Dna Pairing And Strand Exchange 7.7e-01
## Met Promotes Cell Motility 7.6e-01
## Rnd1 Gtpase Cycle 7.7e-01
## Rnd3 Gtpase Cycle 7.7e-01
## Signaling By Fgfr4 7.6e-01
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 7.7e-01
## Transcriptional Regulation By Ventx 7.6e-01
## Aggrephagy 7.9e-01
## Rho Gtpases Activate Formins 7.8e-01
## Rnd2 Gtpase Cycle 7.8e-01
## Sumoylation Of Transcription Cofactors 7.8e-01
## Transcriptional Regulation By Tp53 7.8e-01
## Beta Catenin Independent Wnt Signaling 8.2e-01
## Diseases Of Glycosylation 8.0e-01
## Elastic Fibre Formation 8.1e-01
## Reproduction 8.1e-01
## Estrogen Dependent Gene Expression 8.4e-01
## Hiv Life Cycle 8.4e-01
## Irs Mediated Signalling 8.4e-01
## Metabolism Of Fat Soluble Vitamins 8.4e-01
## Notch1 Intracellular Domain Regulates Transcription 8.4e-01
## Chondroitin Sulfate Dermatan Sulfate Metabolism 8.6e-01
## Recycling Pathway Of L1 8.5e-01
## Retrograde Transport At The Trans Golgi Network 8.5e-01
## Signaling By Fgfr1 8.6e-01
## Tp53 Regulates Transcription Of Cell Cycle Genes 8.5e-01
## Extension Of Telomeres 8.7e-01
## Gap Junction Trafficking And Regulation 8.7e-01
## Chromatin Modifying Enzymes 8.9e-01
## G Protein Mediated Events 9.0e-01
## Insulin Receptor Signalling Cascade 9.0e-01
## Nuclear Envelope Breakdown 9.0e-01
## Regulation Of Tp53 Activity 9.0e-01
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 9.0e-01
## Synthesis Of Pips At The Plasma Membrane 9.0e-01
## Hcmv Infection 9.1e-01
## Regulation Of Runx3 Expression And Activity 9.1e-01
## S Phase 9.1e-01
## Transcriptional Activation Of Mitochondrial Biogenesis 9.1e-01
## Dna Double Strand Break Repair 9.4e-01
## G2 M Checkpoints 9.4e-01
## Iron Uptake And Transport 9.4e-01
## Signaling By Notch1 Pest Domain Mutants In Cancer 9.4e-01
## Signaling By The B Cell Receptor Bcr 9.3e-01
## Stabilization Of P53 9.3e-01
## Arachidonic Acid Metabolism 9.5e-01
## Scf Skp2 Mediated Degradation Of P27 P21 9.6e-01
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 9.8e-01
## Defective Cftr Causes Cystic Fibrosis 9.8e-01
## Disorders Of Transmembrane Transporters 9.8e-01
## O Linked Glycosylation Of Mucins 9.8e-01
## Asymmetric Localization Of Pcp Proteins 1.0e+00
## Synthesis Of Substrates In N Glycan Biosythesis 9.9e-01
## Cell Cycle 1.0e+00
## Hdr Through Homologous Recombination Hrr 1.0e+00
## Rab Geranylgeranylation 1.0e+00
## Regulation Of Hmox1 Expression And Activity 1.0e+00
## Diseases Associated With O Glycosylation Of Proteins 1.0e+00
## Fcgr Activation 1.0e+00
## G1 S Dna Damage Checkpoints 1.0e+00
## Nonhomologous End Joining Nhej 1.0e+00
## Sirt1 Negatively Regulates Rrna Expression 1.0e+00
## Aurka Activation By Tpx2 1.0e+00
## Condensation Of Prophase Chromosomes 1.0e+00
## Signaling By Fgfr2 1.0e+00
## Signaling By Notch1 1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1.0e+00
## Ecm Proteoglycans 1.0e+00
## Nuclear Envelope Ne Reassembly 1.0e+00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1.0e+00
## Signaling By Insulin Receptor 1.0e+00
## Dna Damage Telomere Stress Induced Senescence 1.0e+00
## Downstream Signaling Events Of B Cell Receptor Bcr 1.0e+00
## G Alpha 12 13 Signalling Events 1.0e+00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 1.0e+00
## Potential Therapeutics For Sars 1.0e+00
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1.0e+00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1.0e+00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1.0e+00
## Degradation Of Beta Catenin By The Destruction Complex 1.0e+00
## Fceri Mediated Ca 2 Mobilization 1.0e+00
## Pi Metabolism 1.0e+00
## Apc C Mediated Degradation Of Cell Cycle Proteins 1.0e+00
## Regulation Of Plk1 Activity At G2 M Transition 1.0e+00
## Signaling By Fgfr 1.0e+00
## Opioid Signalling 1.0e+00
## Peptide Hormone Metabolism 1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs 1.0e+00
## Mitochondrial Biogenesis 1.0e+00
## Pcp Ce Pathway 1.0e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation 1.0e+00
## Anchoring Of The Basal Body To The Plasma Membrane 1.0e+00
## Hiv Infection 1.0e+00
## Recruitment Of Numa To Mitotic Centrosomes 1.0e+00
## Metabolism Of Nucleotides 1.0e+00
## Processing Of Dna Double Strand Break Ends 1.0e+00
## Protein Folding 1.0e+00
## Visual Phototransduction 1.0e+00
## Diseases Of Metabolism 1.0e+00
## Potassium Channels 1.0e+00
## Stimuli Sensing Channels 1.0e+00
## O Linked Glycosylation 1.0e+00
## Telomere Maintenance 1.0e+00
## Neuronal System 1.0e+00
## Cell Cycle Mitotic 1.0e+00
## Regulation Of Lipid Metabolism By Pparalpha 1.0e+00
## Transmission Across Chemical Synapses 1.0e+00
## Glycosaminoglycan Metabolism 1.0e+00
## Rab Regulation Of Trafficking 1.0e+00
## Cardiac Conduction 1.0e+00
## Resolution Of Sister Chromatid Cohesion 1.0e+00
## Transport Of Small Molecules 1.0e+00
## Cell Cycle Checkpoints 1.0e+00
## Fceri Mediated Nf Kb Activation 1.0e+00
## Homology Directed Repair 1.0e+00
## Metabolism Of Carbohydrates 1.0e+00
## Organelle Biogenesis And Maintenance 1.0e+00
## Chromosome Maintenance 1.0e+00
## G Alpha S Signalling Events 1.0e+00
## Mitotic Prophase 1.0e+00
## Sars Cov Infections 1.0e+00
## Dna Repair 1.0e+00
## Protein Localization 1.0e+00
## Factors Involved In Megakaryocyte Development And Platelet Production 1.0e+00
## Fatty Acid Metabolism 1.0e+00
## Ion Channel Transport 1.0e+00
## Muscle Contraction 1.0e+00
## Cilium Assembly 1.0e+00
## Intra Golgi And Retrograde Golgi To Er Traffic 1.0e+00
## Mitotic G2 G2 M Phases 1.0e+00
## Mitotic Prometaphase 1.0e+00
## Metabolism Of Lipids 1.0e+00
## Phospholipid Metabolism 1.0e+00
## Mitotic Metaphase And Anaphase 1.0e+00
## Metabolism Of Amino Acids And Derivatives 1.0e+00
## M Phase 1.0e+00
## Sensory Perception 1.0e+00
## 2 Ltr Circle Formation 1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 1.0e+00
## Abacavir Metabolism 1.0e+00
## Abacavir Transmembrane Transport 1.0e+00
## Abacavir Transport And Metabolism 1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 1.0e+00
## Acetylcholine Binding And Downstream Events 1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 1.0e+00
## Acetylcholine Neurotransmitter Release Cycle 1.0e+00
## Acetylcholine Regulates Insulin Secretion 1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding 1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus 1.0e+00
## Activated Ntrk2 Signals Through Cdk5 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3 1.0e+00
## Activated Ntrk2 Signals Through Pi3k 1.0e+00
## Activated Ntrk2 Signals Through Ras 1.0e+00
## Activated Ntrk3 Signals Through Ras 1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 1.0e+00
## Activation Of Ampk Downstream Of Nmdars 1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 1.0e+00
## Activation Of Atr In Response To Replication Stress 1.0e+00
## Activation Of Bad And Translocation To Mitochondria 1.0e+00
## Activation Of Gene Expression By Srebf Srebp 1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding 1.0e+00
## Activation Of Noxa And Translocation To Mitochondria 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 1.0e+00
## Activation Of Puma And Translocation To Mitochondria 1.0e+00
## Activation Of Rac1 1.0e+00
## Activation Of Rac1 Downstream Of Nmdars 1.0e+00
## Activation Of Ras In B Cells 1.0e+00
## Activation Of Smo 1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 1.0e+00
## Activation Of The Phototransduction Cascade 1.0e+00
## Activation Of The Pre Replicative Complex 1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 1.0e+00
## Activation Of Trka Receptors 1.0e+00
## Acyl Chain Remodeling Of Cl 1.0e+00
## Acyl Chain Remodeling Of Dag And Tag 1.0e+00
## Acyl Chain Remodelling Of Pc 1.0e+00
## Acyl Chain Remodelling Of Pe 1.0e+00
## Acyl Chain Remodelling Of Pg 1.0e+00
## Acyl Chain Remodelling Of Pi 1.0e+00
## Acyl Chain Remodelling Of Ps 1.0e+00
## Adenylate Cyclase Activating Pathway 1.0e+00
## Adenylate Cyclase Inhibitory Pathway 1.0e+00
## Adherens Junctions Interactions 1.0e+00
## Adp Signalling Through P2y Purinoceptor 12 1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion 1.0e+00
## Adrenoceptors 1.0e+00
## Aflatoxin Activation And Detoxification 1.0e+00
## Akt Phosphorylates Targets In The Cytosol 1.0e+00
## Alpha Defensins 1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 1.0e+00
## Alpha Oxidation Of Phytanate 1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway 1.0e+00
## Amine Ligand Binding Receptors 1.0e+00
## Amino Acid Conjugation 1.0e+00
## Amino Acid Transport Across The Plasma Membrane 1.0e+00
## Amino Acids Regulate Mtorc1 1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity 1.0e+00
## Anchoring Fibril Formation 1.0e+00
## Androgen Biosynthesis 1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation 1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a 1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection 1.0e+00
## Aquaporin Mediated Transport 1.0e+00
## Arachidonate Production From Dag 1.0e+00
## Arms Mediated Activation 1.0e+00
## Aryl Hydrocarbon Receptor Signalling 1.0e+00
## Aspartate And Asparagine Metabolism 1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors 1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes 1.0e+00
## Assembly Of The Hiv Virion 1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication 1.0e+00
## Assembly Of The Pre Replicative Complex 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes 1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones 1.0e+00
## Attachment And Entry 1.0e+00
## Attachment Of Gpi Anchor To Upar 1.0e+00
## Attenuation Phase 1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 1.0e+00
## B Wich Complex Positively Regulates Rrna Expression 1.0e+00
## Base Excision Repair 1.0e+00
## Base Excision Repair Ap Site Formation 1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium 1.0e+00
## Beta Catenin Phosphorylation Cascade 1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 1.0e+00
## Beta Oxidation Of Pristanoyl Coa 1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids 1.0e+00
## Bicarbonate Transporters 1.0e+00
## Bile Acid And Bile Salt Metabolism 1.0e+00
## Biological Oxidations 1.0e+00
## Biosynthesis Of Maresin Like Spms 1.0e+00
## Biosynthesis Of Maresins 1.0e+00
## Biotin Transport And Metabolism 1.0e+00
## Blood Group Systems Biosynthesis 1.0e+00
## Budding And Maturation Of Hiv Virion 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 1.0e+00
## Butyrophilin Btn Family Interactions 1.0e+00
## Ca2 Activated K Channels 1.0e+00
## Calcineurin Activates Nfat 1.0e+00
## Calcitonin Like Ligand Receptors 1.0e+00
## Calnexin Calreticulin Cycle 1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin 1.0e+00
## Cargo Trafficking To The Periciliary Membrane 1.0e+00
## Carnitine Metabolism 1.0e+00
## Cation Coupled Chloride Cotransporters 1.0e+00
## Cd209 Dc Sign Signaling 1.0e+00
## Cd22 Mediated Bcr Regulation 1.0e+00
## Cdc6 Association With The Orc Origin Complex 1.0e+00
## Cell Cell Junction Organization 1.0e+00
## Cell Extracellular Matrix Interactions 1.0e+00
## Cell Junction Organization 1.0e+00
## Cellular Hexose Transport 1.0e+00
## Cellular Response To Hypoxia 1.0e+00
## Cellular Response To Starvation 1.0e+00
## Cgmp Effects 1.0e+00
## Chl1 Interactions 1.0e+00
## Cholesterol Biosynthesis 1.0e+00
## Choline Catabolism 1.0e+00
## Chondroitin Sulfate Biosynthesis 1.0e+00
## Chrebp Activates Metabolic Gene Expression 1.0e+00
## Chylomicron Clearance 1.0e+00
## Citric Acid Cycle Tca Cycle 1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors 1.0e+00
## Class I Peroxisomal Membrane Protein Import 1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation 1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 1.0e+00
## Coenzyme A Biosynthesis 1.0e+00
## Cohesin Loading Onto Chromatin 1.0e+00
## Collagen Biosynthesis And Modifying Enzymes 1.0e+00
## Collagen Chain Trimerization 1.0e+00
## Common Pathway Of Fibrin Clot Formation 1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation 1.0e+00
## Complex I Biogenesis 1.0e+00
## Conjugation Of Benzoate With Glycine 1.0e+00
## Constitutive Signaling By Overexpressed Erbb2 1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic 1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic 1.0e+00
## Creatine Metabolism 1.0e+00
## Creb3 Factors Activate Genes 1.0e+00
## Cristae Formation 1.0e+00
## Crmps In Sema3a Signaling 1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 1.0e+00
## Cs Ds Degradation 1.0e+00
## Cyp2e1 Reactions 1.0e+00
## Cytochrome P450 Arranged By Substrate Type 1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly 1.0e+00
## Cytosolic Sulfonation Of Small Molecules 1.0e+00
## Cytosolic Trna Aminoacylation 1.0e+00
## Darpp 32 Events 1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex 1.0e+00
## Deadenylation Dependent Mrna Decay 1.0e+00
## Deadenylation Of Mrna 1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type 1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type 1.0e+00
## Defective Chst3 Causes Sedcjd 1.0e+00
## Defective Chst6 Causes Mcdc1 1.0e+00
## Defective Chsy1 Causes Tpbs 1.0e+00
## Defective Csf2rb Causes Smdp5 1.0e+00
## Defective Ext2 Causes Exostoses 2 1.0e+00
## Defective F9 Activation 1.0e+00
## Defective Factor Ix Causes Hemophilia B 1.0e+00
## Defective Lfng Causes Scdo3 1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis 1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15 1.0e+00
## Defects In Biotin Btn Metabolism 1.0e+00
## Defects In Cobalamin B12 Metabolism 1.0e+00
## Defects In Vitamin And Cofactor Metabolism 1.0e+00
## Degradation Of Axin 1.0e+00
## Degradation Of Cysteine And Homocysteine 1.0e+00
## Degradation Of Dvl 1.0e+00
## Degradation Of Gli1 By The Proteasome 1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 1.0e+00
## Detoxification Of Reactive Oxygen Species 1.0e+00
## Digestion 1.0e+00
## Digestion And Absorption 1.0e+00
## Digestion Of Dietary Carbohydrate 1.0e+00
## Digestion Of Dietary Lipid 1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism 1.0e+00
## Diseases Associated With N Glycosylation Of Proteins 1.0e+00
## Diseases Associated With Surfactant Metabolism 1.0e+00
## Diseases Of Base Excision Repair 1.0e+00
## Diseases Of Carbohydrate Metabolism 1.0e+00
## Diseases Of Dna Repair 1.0e+00
## Diseases Of Mismatch Repair Mmr 1.0e+00
## Disinhibition Of Snare Formation 1.0e+00
## Displacement Of Dna Glycosylase By Apex1 1.0e+00
## Dna Damage Bypass 1.0e+00
## Dna Damage Recognition In Gg Ner 1.0e+00
## Dna Damage Reversal 1.0e+00
## Dna Replication 1.0e+00
## Dna Replication Initiation 1.0e+00
## Dna Replication Pre Initiation 1.0e+00
## Dna Strand Elongation 1.0e+00
## Dopamine Neurotransmitter Release Cycle 1.0e+00
## Dopamine Receptors 1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling 1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling 1.0e+00
## Downstream Signaling Of Activated Fgfr1 1.0e+00
## Downstream Signaling Of Activated Fgfr2 1.0e+00
## Downstream Signaling Of Activated Fgfr3 1.0e+00
## Downstream Signaling Of Activated Fgfr4 1.0e+00
## Dual Incision In Gg Ner 1.0e+00
## Dual Incision In Tc Ner 1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 1.0e+00
## Effects Of Pip2 Hydrolysis 1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 1.0e+00
## Eicosanoid Ligand Binding Receptors 1.0e+00
## Eicosanoids 1.0e+00
## Electric Transmission Across Gap Junctions 1.0e+00
## Elevation Of Cytosolic Ca2 Levels 1.0e+00
## Endogenous Sterols 1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt 1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 1.0e+00
## Er Quality Control Compartment Erqc 1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 1.0e+00
## Erk Mapk Targets 1.0e+00
## Erks Are Inactivated 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg 1.0e+00
## Erythropoietin Activates Ras 1.0e+00
## Erythropoietin Activates Stat5 1.0e+00
## Establishment Of Sister Chromatid Cohesion 1.0e+00
## Estrogen Biosynthesis 1.0e+00
## Estrogen Stimulated Signaling Through Prkcz 1.0e+00
## Ethanol Oxidation 1.0e+00
## Eukaryotic Translation Elongation 1.0e+00
## Eukaryotic Translation Initiation 1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus 1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation 1.0e+00
## Fanconi Anemia Pathway 1.0e+00
## Fatty Acids 1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 1.0e+00
## Fatty Acyl Coa Biosynthesis 1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer 1.0e+00
## Fertilization 1.0e+00
## Fgfr1 Ligand Binding And Activation 1.0e+00
## Fgfr1b Ligand Binding And Activation 1.0e+00
## Fgfr1c Ligand Binding And Activation 1.0e+00
## Fgfr2 Alternative Splicing 1.0e+00
## Fgfr2 Ligand Binding And Activation 1.0e+00
## Fgfr2 Mutant Receptor Activation 1.0e+00
## Fgfr2b Ligand Binding And Activation 1.0e+00
## Fgfr2c Ligand Binding And Activation 1.0e+00
## Fgfr3 Ligand Binding And Activation 1.0e+00
## Fgfr3b Ligand Binding And Activation 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 1.0e+00
## Flt3 Signaling 1.0e+00
## Flt3 Signaling By Cbl Mutants 1.0e+00
## Flt3 Signaling In Disease 1.0e+00
## Flt3 Signaling Through Src Family Kinases 1.0e+00
## Folding Of Actin By Cct Tric 1.0e+00
## Formation Of Apoptosome 1.0e+00
## Formation Of Atp By Chemiosmotic Coupling 1.0e+00
## Formation Of Incision Complex In Gg Ner 1.0e+00
## Formation Of Rna Pol Ii Elongation Complex 1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf 1.0e+00
## Formation Of Tc Ner Pre Incision Complex 1.0e+00
## Formation Of The Cornified Envelope 1.0e+00
## Formation Of The Early Elongation Complex 1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric 1.0e+00
## Formation Of Xylulose 5 Phosphate 1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 1.0e+00
## Free Fatty Acid Receptors 1.0e+00
## Free Fatty Acids Regulate Insulin Secretion 1.0e+00
## Frs Mediated Fgfr1 Signaling 1.0e+00
## Frs Mediated Fgfr2 Signaling 1.0e+00
## Frs Mediated Fgfr3 Signaling 1.0e+00
## Frs Mediated Fgfr4 Signaling 1.0e+00
## Fructose Catabolism 1.0e+00
## Fructose Metabolism 1.0e+00
## G Alpha Z Signalling Events 1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma 1.0e+00
## G Protein Activation 1.0e+00
## G2 Phase 1.0e+00
## Gaba B Receptor Activation 1.0e+00
## Gaba Receptor Activation 1.0e+00
## Gaba Synthesis Release Reuptake And Degradation 1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 1.0e+00
## Gap Junction Assembly 1.0e+00
## Gap Junction Degradation 1.0e+00
## Gdp Fucose Biosynthesis 1.0e+00
## Gene Silencing By Rna 1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner 1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 1.0e+00
## Glucagon Signaling In Metabolic Regulation 1.0e+00
## Glucagon Type Ligand Receptors 1.0e+00
## Glucocorticoid Biosynthesis 1.0e+00
## Gluconeogenesis 1.0e+00
## Glucose Metabolism 1.0e+00
## Glucuronidation 1.0e+00
## Glutamate And Glutamine Metabolism 1.0e+00
## Glutamate Neurotransmitter Release Cycle 1.0e+00
## Glutathione Conjugation 1.0e+00
## Glutathione Synthesis And Recycling 1.0e+00
## Glycerophospholipid Biosynthesis 1.0e+00
## Glycerophospholipid Catabolism 1.0e+00
## Glycogen Breakdown Glycogenolysis 1.0e+00
## Glycogen Metabolism 1.0e+00
## Glycogen Storage Diseases 1.0e+00
## Glycogen Synthesis 1.0e+00
## Glycolysis 1.0e+00
## Glycosphingolipid Metabolism 1.0e+00
## Glyoxylate Metabolism And Glycine Degradation 1.0e+00
## Golgi Associated Vesicle Biogenesis 1.0e+00
## Golgi To Er Retrograde Transport 1.0e+00
## Grb7 Events In Erbb2 Signaling 1.0e+00
## Hats Acetylate Histones 1.0e+00
## Hcmv Late Events 1.0e+00
## Hdacs Deacetylate Histones 1.0e+00
## Hdms Demethylate Histones 1.0e+00
## Hdr Through Mmej Alt Nhej 1.0e+00
## Hedgehog Ligand Biogenesis 1.0e+00
## Hedgehog Off State 1.0e+00
## Hedgehog On State 1.0e+00
## Heme Biosynthesis 1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism 1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 1.0e+00
## Histidine Catabolism 1.0e+00
## Hiv Elongation Arrest And Recovery 1.0e+00
## Hiv Transcription Elongation 1.0e+00
## Hiv Transcription Initiation 1.0e+00
## Hormone Ligand Binding Receptors 1.0e+00
## Host Interactions Of Hiv Factors 1.0e+00
## Hs Gag Biosynthesis 1.0e+00
## Hs Gag Degradation 1.0e+00
## Hsf1 Activation 1.0e+00
## Hsf1 Dependent Transactivation 1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna 1.0e+00
## Hyaluronan Biosynthesis And Export 1.0e+00
## Hyaluronan Metabolism 1.0e+00
## Hyaluronan Uptake And Degradation 1.0e+00
## Hydrolysis Of Lpc 1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions 1.0e+00
## Influenza Infection 1.0e+00
## Inhibition Of Dna Recombination At Telomere 1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 1.0e+00
## Inositol Phosphate Metabolism 1.0e+00
## Insulin Processing 1.0e+00
## Insulin Receptor Recycling 1.0e+00
## Integration Of Energy Metabolism 1.0e+00
## Integration Of Provirus 1.0e+00
## Interaction Between L1 And Ankyrins 1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida 1.0e+00
## Interactions Of Rev With Host Cellular Proteins 1.0e+00
## Interactions Of Vpr With Host Cellular Proteins 1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates 1.0e+00
## Interleukin 36 Pathway 1.0e+00
## Intestinal Absorption 1.0e+00
## Intra Golgi Traffic 1.0e+00
## Intraflagellar Transport 1.0e+00
## Inwardly Rectifying K Channels 1.0e+00
## Ion Homeostasis 1.0e+00
## Ion Transport By P Type Atpases 1.0e+00
## Ionotropic Activity Of Kainate Receptors 1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex 1.0e+00
## Ire1alpha Activates Chaperones 1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn 1.0e+00
## Irs Activation 1.0e+00
## Josephin Domain Dubs 1.0e+00
## Keratan Sulfate Biosynthesis 1.0e+00
## Keratan Sulfate Degradation 1.0e+00
## Keratan Sulfate Keratin Metabolism 1.0e+00
## Keratinization 1.0e+00
## Ketone Body Metabolism 1.0e+00
## Kinesins 1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna 1.0e+00
## Lagging Strand Synthesis 1.0e+00
## Laminin Interactions 1.0e+00
## Leukotriene Receptors 1.0e+00
## Lgi Adam Interactions 1.0e+00
## Ligand Receptor Interactions 1.0e+00
## Linoleic Acid La Metabolism 1.0e+00
## Lipid Particle Organization 1.0e+00
## Lipophagy 1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome 1.0e+00
## Loss Of Function Of Smad2 3 In Cancer 1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 1.0e+00
## Ltc4 Cysltr Mediated Il4 Production 1.0e+00
## Lysine Catabolism 1.0e+00
## Lysosome Vesicle Biogenesis 1.0e+00
## Lysosphingolipid And Lpa Receptors 1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 1.0e+00
## Maturation Of Nucleoprotein 1.0e+00
## Maturation Of Protein 3a 1.0e+00
## Maturation Of Sars Cov 1 Spike Protein 1.0e+00
## Maturation Of Sars Cov 2 Spike Protein 1.0e+00
## Meiotic Synapsis 1.0e+00
## Melanin Biosynthesis 1.0e+00
## Met Activates Pi3k Akt Signaling 1.0e+00
## Met Activates Ptpn11 1.0e+00
## Met Activates Rap1 And Rac1 1.0e+00
## Met Activates Ras Signaling 1.0e+00
## Met Interacts With Tns Proteins 1.0e+00
## Met Receptor Activation 1.0e+00
## Met Receptor Recycling 1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes 1.0e+00
## Metabolism Of Amine Derived Hormones 1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins 1.0e+00
## Metabolism Of Cofactors 1.0e+00
## Metabolism Of Folate And Pterines 1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se 1.0e+00
## Metabolism Of Polyamines 1.0e+00
## Metabolism Of Rna 1.0e+00
## Metabolism Of Steroid Hormones 1.0e+00
## Metabolism Of Steroids 1.0e+00
## Metal Ion Slc Transporters 1.0e+00
## Metal Sequestration By Antimicrobial Proteins 1.0e+00
## Metallothioneins Bind Metals 1.0e+00
## Methionine Salvage Pathway 1.0e+00
## Methylation 1.0e+00
## Microrna Mirna Biogenesis 1.0e+00
## Mineralocorticoid Biosynthesis 1.0e+00
## Miro Gtpase Cycle 1.0e+00
## Miscellaneous Substrates 1.0e+00
## Miscellaneous Transport And Binding Events 1.0e+00
## Mismatch Repair 1.0e+00
## Mitochondrial Calcium Ion Transport 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis 1.0e+00
## Mitochondrial Protein Import 1.0e+00
## Mitochondrial Translation 1.0e+00
## Mitochondrial Trna Aminoacylation 1.0e+00
## Mitochondrial Uncoupling 1.0e+00
## Mitotic Spindle Checkpoint 1.0e+00
## Mitotic Telophase Cytokinesis 1.0e+00
## Molecules Associated With Elastic Fibres 1.0e+00
## Molybdenum Cofactor Biosynthesis 1.0e+00
## Mrna Capping 1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease 1.0e+00
## Mrna Editing 1.0e+00
## Mrna Editing C To U Conversion 1.0e+00
## Mrna Splicing 1.0e+00
## Mrna Splicing Minor Pathway 1.0e+00
## Mtor Signalling 1.0e+00
## Mtorc1 Mediated Signalling 1.0e+00
## Mucopolysaccharidoses 1.0e+00
## Multifunctional Anion Exchangers 1.0e+00
## Muscarinic Acetylcholine Receptors 1.0e+00
## Myoclonic Epilepsy Of Lafora 1.0e+00
## N Glycan Antennae Elongation 1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi 1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi 1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 1.0e+00
## Na Cl Dependent Neurotransmitter Transporters 1.0e+00
## Ncam1 Interactions 1.0e+00
## Nectin Necl Trans Heterodimerization 1.0e+00
## Neddylation 1.0e+00
## Nef And Signal Transduction 1.0e+00
## Nef Mediated Cd4 Down Regulation 1.0e+00
## Nef Mediated Cd8 Down Regulation 1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 1.0e+00
## Negative Feedback Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 1.0e+00
## Negative Regulation Of Flt3 1.0e+00
## Negative Regulation Of Mapk Pathway 1.0e+00
## Negative Regulation Of Met Activity 1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 1.0e+00
## Negative Regulation Of Notch4 Signaling 1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 1.0e+00
## Nephrin Family Interactions 1.0e+00
## Neurexins And Neuroligins 1.0e+00
## Neurofascin Interactions 1.0e+00
## Neurotoxicity Of Clostridium Toxins 1.0e+00
## Neurotransmitter Clearance 1.0e+00
## Neurotransmitter Release Cycle 1.0e+00
## Ngf Independant Trka Activation 1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase 1.0e+00
## Non Integrin Membrane Ecm Interactions 1.0e+00
## Noncanonical Activation Of Notch3 1.0e+00
## Nonsense Mediated Decay Nmd 1.0e+00
## Norepinephrine Neurotransmitter Release Cycle 1.0e+00
## Notch Hlh Transcription Pathway 1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus 1.0e+00
## Notch4 Intracellular Domain Regulates Transcription 1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 1.0e+00
## Nrcam Interactions 1.0e+00
## Ns1 Mediated Effects On Host Pathways 1.0e+00
## Ntrk2 Activates Rac1 1.0e+00
## Nuclear Import Of Rev Protein 1.0e+00
## Nuclear Receptor Transcription Pathway 1.0e+00
## Nucleobase Biosynthesis 1.0e+00
## Nucleobase Catabolism 1.0e+00
## Nucleotide Excision Repair 1.0e+00
## Nucleotide Like Purinergic Receptors 1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins 1.0e+00
## Olfactory Signaling Pathway 1.0e+00
## Opsins 1.0e+00
## Orc1 Removal From Chromatin 1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 1.0e+00
## Organic Anion Transport 1.0e+00
## Organic Anion Transporters 1.0e+00
## Organic Cation Anion Zwitterion Transport 1.0e+00
## Organic Cation Transport 1.0e+00
## P2y Receptors 1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1 1.0e+00
## Passive Transport By Aquaporins 1.0e+00
## Pcna Dependent Long Patch Base Excision Repair 1.0e+00
## Pentose Phosphate Pathway 1.0e+00
## Peptide Hormone Biosynthesis 1.0e+00
## Peroxisomal Lipid Metabolism 1.0e+00
## Peroxisomal Protein Import 1.0e+00
## Phase 0 Rapid Depolarisation 1.0e+00
## Phase 1 Inactivation Of Fast Na Channels 1.0e+00
## Phase 2 Plateau Phase 1.0e+00
## Phase 3 Rapid Repolarisation 1.0e+00
## Phase I Functionalization Of Compounds 1.0e+00
## Phase Ii Conjugation Of Compounds 1.0e+00
## Phenylalanine And Tyrosine Metabolism 1.0e+00
## Phenylalanine Metabolism 1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins 1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins 1.0e+00
## Phospholipase C Mediated Cascade Fgfr2 1.0e+00
## Phospholipase C Mediated Cascade Fgfr4 1.0e+00
## Physiological Factors 1.0e+00
## Pi 3k Cascade Fgfr1 1.0e+00
## Pi 3k Cascade Fgfr2 1.0e+00
## Pi 3k Cascade Fgfr3 1.0e+00
## Pi 3k Cascade Fgfr4 1.0e+00
## Pi3k Akt Activation 1.0e+00
## Pi3k Events In Erbb4 Signaling 1.0e+00
## Pi5p Regulates Tp53 Acetylation 1.0e+00
## Piwi Interacting Rna Pirna Biogenesis 1.0e+00
## Pka Activation In Glucagon Signalling 1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors 1.0e+00
## Pkmts Methylate Histone Lysines 1.0e+00
## Platelet Calcium Homeostasis 1.0e+00
## Platelet Homeostasis 1.0e+00
## Platelet Sensitization By Ldl 1.0e+00
## Polb Dependent Long Patch Base Excision Repair 1.0e+00
## Polo Like Kinase Mediated Events 1.0e+00
## Polymerase Switching 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression 1.0e+00
## Post Chaperonin Tubulin Folding Pathway 1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation 1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 1.0e+00
## Pre Notch Expression And Processing 1.0e+00
## Pre Notch Processing In Golgi 1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum 1.0e+00
## Pregnenolone Biosynthesis 1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening 1.0e+00
## Presynaptic Function Of Kainate Receptors 1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion 1.0e+00
## Processing And Activation Of Sumo 1.0e+00
## Processing Of Capped Intron Containing Pre Mrna 1.0e+00
## Processing Of Capped Intronless Pre Mrna 1.0e+00
## Processing Of Intronless Pre Mrnas 1.0e+00
## Processing Of Smdt1 1.0e+00
## Processive Synthesis On The C Strand Of The Telomere 1.0e+00
## Processive Synthesis On The Lagging Strand 1.0e+00
## Prolactin Receptor Signaling 1.0e+00
## Prolonged Erk Activation Events 1.0e+00
## Propionyl Coa Catabolism 1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor 1.0e+00
## Prostanoid Ligand Receptors 1.0e+00
## Protein Methylation 1.0e+00
## Protein Protein Interactions At Synapses 1.0e+00
## Protein Ubiquitination 1.0e+00
## Proton Coupled Monocarboxylate Transport 1.0e+00
## Pten Regulation 1.0e+00
## Ptk6 Expression 1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing 1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 1.0e+00
## Purine Catabolism 1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis 1.0e+00
## Pyrimidine Catabolism 1.0e+00
## Pyrimidine Salvage 1.0e+00
## Pyruvate Metabolism 1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle 1.0e+00
## Ra Biosynthesis Pathway 1.0e+00
## Rap1 Signalling 1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 1.0e+00
## Ras Processing 1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway 1.0e+00
## Receptor Type Tyrosine Protein Phosphatases 1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex 1.0e+00
## Recycling Of Bile Acids And Salts 1.0e+00
## Recycling Of Eif2 Gdp 1.0e+00
## Reduction Of Cytosolic Ca Levels 1.0e+00
## Reelin Signalling Pathway 1.0e+00
## Regulated Proteolysis Of P75ntr 1.0e+00
## Regulation Of Bach1 Activity 1.0e+00
## Regulation Of Beta Cell Development 1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 1.0e+00
## Regulation Of Expression Of Slits And Robos 1.0e+00
## Regulation Of Fzd By Ubiquitination 1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor 1.0e+00
## Regulation Of Gene Expression In Beta Cells 1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna 1.0e+00
## Regulation Of Insulin Secretion 1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors 1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 1.0e+00
## Regulation Of Pten Gene Transcription 1.0e+00
## Regulation Of Pten Localization 1.0e+00
## Regulation Of Pten Mrna Translation 1.0e+00
## Regulation Of Pten Stability And Activity 1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 1.0e+00
## Regulation Of Ras By Gaps 1.0e+00
## Regulation Of Signaling By Cbl 1.0e+00
## Regulation Of Signaling By Nodal 1.0e+00
## Regulation Of Tp53 Activity Through Acetylation 1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors 1.0e+00
## Relaxin Receptors 1.0e+00
## Release Of Apoptotic Factors From The Mitochondria 1.0e+00
## Release Of Hh Np From The Secreting Cell 1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 1.0e+00
## Resolution Of Abasic Sites Ap Sites 1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 1.0e+00
## Respiratory Electron Transport 1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency 1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 1.0e+00
## Response Of Mtb To Phagocytosis 1.0e+00
## Response To Metal Ions 1.0e+00
## Retinoid Cycle Disease Events 1.0e+00
## Retrograde Neurotrophin Signalling 1.0e+00
## Reversible Hydration Of Carbon Dioxide 1.0e+00
## Rho Gtpases Activate Cit 1.0e+00
## Rho Gtpases Activate Pkns 1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins 1.0e+00
## Rho Gtpases Activate Rocks 1.0e+00
## Rhobtb Gtpase Cycle 1.0e+00
## Rhobtb1 Gtpase Cycle 1.0e+00
## Rhobtb2 Gtpase Cycle 1.0e+00
## Rhobtb3 Atpase Cycle 1.0e+00
## Rhot1 Gtpase Cycle 1.0e+00
## Rna Polymerase I Promoter Escape 1.0e+00
## Rna Polymerase I Transcription 1.0e+00
## Rna Polymerase I Transcription Initiation 1.0e+00
## Rna Polymerase I Transcription Termination 1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes 1.0e+00
## Rna Polymerase Ii Transcription Termination 1.0e+00
## Rna Polymerase Iii Chain Elongation 1.0e+00
## Rna Polymerase Iii Transcription 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 1.0e+00
## Rna Polymerase Iii Transcription Termination 1.0e+00
## Robo Receptors Bind Akap5 1.0e+00
## Role Of Abl In Robo Slit Signaling 1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization 1.0e+00
## Role Of Phospholipids In Phagocytosis 1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling 1.0e+00
## Rora Activates Gene Expression 1.0e+00
## Rrna Modification In The Mitochondrion 1.0e+00
## Rrna Modification In The Nucleus And Cytosol 1.0e+00
## Rrna Processing 1.0e+00
## Rrna Processing In The Mitochondrion 1.0e+00
## Rsk Activation 1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription 1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription 1.0e+00
## Runx3 Regulates Cdkn1a Transcription 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration 1.0e+00
## Runx3 Regulates Notch Signaling 1.0e+00
## Runx3 Regulates P14 Arf 1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription 1.0e+00
## Sars Cov 1 Genome Replication And Transcription 1.0e+00
## Sars Cov 1 Infection 1.0e+00
## Sars Cov 2 Infection 1.0e+00
## Scavenging By Class F Receptors 1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 1.0e+00
## Selenoamino Acid Metabolism 1.0e+00
## Sema3a Pak Dependent Axon Repulsion 1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 1.0e+00
## Sema4d In Semaphorin Signaling 1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse 1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 1.0e+00
## Sensory Processing Of Sound 1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 1.0e+00
## Separation Of Sister Chromatids 1.0e+00
## Serine Biosynthesis 1.0e+00
## Serotonin And Melatonin Biosynthesis 1.0e+00
## Serotonin Neurotransmitter Release Cycle 1.0e+00
## Serotonin Receptors 1.0e+00
## Shc Mediated Cascade Fgfr1 1.0e+00
## Shc Mediated Cascade Fgfr3 1.0e+00
## Shc Mediated Cascade Fgfr4 1.0e+00
## Shc Related Events Triggered By Igf1r 1.0e+00
## Shc1 Events In Erbb4 Signaling 1.0e+00
## Signal Attenuation 1.0e+00
## Signaling By Activin 1.0e+00
## Signaling By Bmp 1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants 1.0e+00
## Signaling By Erythropoietin 1.0e+00
## Signaling By Fgfr2 Iiia Tm 1.0e+00
## Signaling By Fgfr2 In Disease 1.0e+00
## Signaling By Fgfr3 Fusions In Cancer 1.0e+00
## Signaling By Fgfr4 In Disease 1.0e+00
## Signaling By Flt3 Fusion Proteins 1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants 1.0e+00
## Signaling By Hedgehog 1.0e+00
## Signaling By Lrp5 Mutants 1.0e+00
## Signaling By Mapk Mutants 1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 1.0e+00
## Signaling By Mras Complex Mutants 1.0e+00
## Signaling By Mst1 1.0e+00
## Signaling By Nodal 1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer 1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 1.0e+00
## Signaling By Notch4 1.0e+00
## Signaling By Retinoic Acid 1.0e+00
## Signaling By Rnf43 Mutants 1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer 1.0e+00
## Signaling By Wnt In Cancer 1.0e+00
## Signalling To P38 Via Rit And Rin 1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 1.0e+00
## Slc Mediated Transmembrane Transport 1.0e+00
## Slc Transporter Disorders 1.0e+00
## Small Interfering Rna Sirna Biogenesis 1.0e+00
## Smooth Muscle Contraction 1.0e+00
## Snrnp Assembly 1.0e+00
## Sodium Calcium Exchangers 1.0e+00
## Sodium Coupled Phosphate Cotransporters 1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 1.0e+00
## Sodium Proton Exchangers 1.0e+00
## Sos Mediated Signalling 1.0e+00
## Sperm Motility And Taxes 1.0e+00
## Sphingolipid De Novo Biosynthesis 1.0e+00
## Sphingolipid Metabolism 1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane 1.0e+00
## Stat5 Activation 1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants 1.0e+00
## Striated Muscle Contraction 1.0e+00
## Sulfide Oxidation To Sulfate 1.0e+00
## Sulfur Amino Acid Metabolism 1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1 1.0e+00
## Sumo Is Proteolytically Processed 1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 1.0e+00
## Sumoylation Of Chromatin Organization Proteins 1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins 1.0e+00
## Sumoylation Of Dna Replication Proteins 1.0e+00
## Sumoylation Of Intracellular Receptors 1.0e+00
## Sumoylation Of Rna Binding Proteins 1.0e+00
## Sumoylation Of Sumoylation Proteins 1.0e+00
## Sumoylation Of Transcription Factors 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins 1.0e+00
## Suppression Of Apoptosis 1.0e+00
## Suppression Of Phagosomal Maturation 1.0e+00
## Surfactant Metabolism 1.0e+00
## Switching Of Origins To A Post Replicative State 1.0e+00
## Synaptic Adhesion Like Molecules 1.0e+00
## Syndecan Interactions 1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids 1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 1.0e+00
## Synthesis Of Bile Acids And Bile Salts 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 1.0e+00
## Synthesis Of Diphthamide Eef2 1.0e+00
## Synthesis Of Dolichyl Phosphate 1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 1.0e+00
## Synthesis Of Gdp Mannose 1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi 1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol 1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol 1.0e+00
## Synthesis Of Ketone Bodies 1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex 1.0e+00
## Synthesis Of Lipoxins Lx 1.0e+00
## Synthesis Of Pa 1.0e+00
## Synthesis Of Pc 1.0e+00
## Synthesis Of Pe 1.0e+00
## Synthesis Of Pg 1.0e+00
## Synthesis Of Pi 1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane 1.0e+00
## Synthesis Of Pips At The Er Membrane 1.0e+00
## Synthesis Of Pips At The Golgi Membrane 1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane 1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol 1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine 1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas 1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe 1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin 1.0e+00
## Tachykinin Receptors Bind Tachykinins 1.0e+00
## Tbc Rabgaps 1.0e+00
## Telomere C Strand Lagging Strand Synthesis 1.0e+00
## Telomere C Strand Synthesis Initiation 1.0e+00
## Terminal Pathway Of Complement 1.0e+00
## Termination Of Translesion Dna Synthesis 1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 1.0e+00
## Tgf Beta Receptor Signaling Activates Smads 1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 1.0e+00
## The Activation Of Arylsulfatases 1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport 1.0e+00
## The Fatty Acid Cycling Model 1.0e+00
## The Phototransduction Cascade 1.0e+00
## The Retinoid Cycle In Cones Daylight Vision 1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 1.0e+00
## Thromboxane Signalling Through Tp Receptor 1.0e+00
## Thyroxine Biosynthesis 1.0e+00
## Tie2 Signaling 1.0e+00
## Tight Junction Interactions 1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd 1.0e+00
## Tp53 Regulates Metabolic Genes 1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands 1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Trafficking Of Ampa Receptors 1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors 1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium 1.0e+00
## Trail Signaling 1.0e+00
## Trans Golgi Network Vesicle Budding 1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner 1.0e+00
## Transcription Of The Hiv Genome 1.0e+00
## Transcriptional Regulation By E2f6 1.0e+00
## Transcriptional Regulation By Small Rnas 1.0e+00
## Transcriptional Regulation Of Testis Differentiation 1.0e+00
## Transferrin Endocytosis And Recycling 1.0e+00
## Translation 1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 1.0e+00
## Translation Of Sars Cov 1 Structural Proteins 1.0e+00
## Translation Of Sars Cov 2 Structural Proteins 1.0e+00
## Translesion Synthesis By Polh 1.0e+00
## Translesion Synthesis By Polk 1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 1.0e+00
## Transport And Synthesis Of Paps 1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 1.0e+00
## Transport Of Connexons To The Plasma Membrane 1.0e+00
## Transport Of Fatty Acids 1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts 1.0e+00
## Transport Of Mature Transcript To Cytoplasm 1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 1.0e+00
## Transport Of Nucleotide Sugars 1.0e+00
## Transport Of Organic Anions 1.0e+00
## Transport Of The Slbp Dependant Mature Mrna 1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules 1.0e+00
## Triglyceride Biosynthesis 1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 1.0e+00
## Trna Aminoacylation 1.0e+00
## Trna Modification In The Mitochondrion 1.0e+00
## Trna Modification In The Nucleus And Cytosol 1.0e+00
## Trna Processing 1.0e+00
## Trna Processing In The Mitochondrion 1.0e+00
## Trna Processing In The Nucleus 1.0e+00
## Trp Channels 1.0e+00
## Tryptophan Catabolism 1.0e+00
## Type I Hemidesmosome Assembly 1.0e+00
## Tyrosine Catabolism 1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins 1.0e+00
## Ubiquinol Biosynthesis 1.0e+00
## Uch Proteinases 1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 1.0e+00
## Unwinding Of Dna 1.0e+00
## Uptake And Actions Of Bacterial Toxins 1.0e+00
## Uptake And Function Of Anthrax Toxins 1.0e+00
## Uptake And Function Of Diphtheria Toxin 1.0e+00
## Urea Cycle 1.0e+00
## Vasopressin Like Receptors 1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 1.0e+00
## Vegf Ligand Receptor Interactions 1.0e+00
## Viral Messenger Rna Synthesis 1.0e+00
## Vitamin B1 Thiamin Metabolism 1.0e+00
## Vitamin B2 Riboflavin Metabolism 1.0e+00
## Vitamin B5 Pantothenate Metabolism 1.0e+00
## Vitamin C Ascorbate Metabolism 1.0e+00
## Vitamin D Calciferol Metabolism 1.0e+00
## Vitamins 1.0e+00
## Vldl Assembly 1.0e+00
## Vldl Clearance 1.0e+00
## Voltage Gated Potassium Channels 1.0e+00
## Vxpx Cargo Targeting To Cilium 1.0e+00
## Wax And Plasmalogen Biosynthesis 1.0e+00
## Wnt Mediated Activation Of Dvl 1.0e+00
## Xenobiotics 1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family 1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family 1.0e+00
## Zinc Transporters 1.0e+00
## signature
## Cytokine Signaling In Immune System 169
## Signaling By Interleukins 169
## Innate Immune System 169
## Interleukin 10 Signaling 169
## Interleukin 4 And Interleukin 13 Signaling 169
## Chemokine Receptors Bind Chemokines 169
## Peptide Ligand Binding Receptors 169
## Toll Like Receptor Cascades 169
## Signaling By Gpcr 169
## Class A 1 Rhodopsin Like Receptors 169
## Toll Like Receptor Tlr1 Tlr2 Cascade 169
## Gpcr Ligand Binding 169
## Interleukin 1 Family Signaling 169
## G Alpha I Signalling Events 169
## Neutrophil Degranulation 169
## Toll Like Receptor 9 Tlr9 Cascade 169
## Adaptive Immune System 169
## Myd88 Independent Tlr4 Cascade 169
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 169
## Diseases Of Immune System 169
## Death Receptor Signalling 169
## Leishmania Infection 169
## Irak4 Deficiency Tlr2 4 169
## Extra Nuclear Estrogen Signaling 169
## Nod1 2 Signaling Pathway 169
## Regulation Of Tlr By Endogenous Ligand 169
## Complement Cascade 169
## Purinergic Signaling In Leishmaniasis Infection 169
## Programmed Cell Death 169
## Interleukin 17 Signaling 169
## Tnfr2 Non Canonical Nf Kb Pathway 169
## Tnfs Bind Their Physiological Receptors 169
## Interleukin 1 Signaling 169
## Costimulation By The Cd28 Family 169
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 169
## Negative Regulation Of The Pi3k Akt Network 169
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 169
## Regulated Necrosis 169
## Ovarian Tumor Domain Proteases 169
## Extracellular Matrix Organization 169
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 169
## P75 Ntr Receptor Mediated Signalling 169
## Antigen Processing Cross Presentation 169
## Heme Signaling 169
## Pyroptosis 169
## Deubiquitination 169
## Infectious Disease 169
## Activation Of Matrix Metalloproteinases 169
## Post Translational Protein Modification 169
## P75ntr Signals Via Nf Kb 169
## Esr Mediated Signaling 169
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 169
## Fibronectin Matrix Formation 169
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 169
## Pi3k Akt Signaling In Cancer 169
## Beta Defensins 169
## Ctla4 Inhibitory Signaling 169
## Inflammasomes 169
## Interleukin 2 Family Signaling 169
## Dap12 Interactions 169
## Interleukin 18 Signaling 169
## Activated Tak1 Mediates P38 Mapk Activation 169
## Constitutive Signaling By Aberrant Pi3k In Cancer 169
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 169
## Mapk Family Signaling Cascades 169
## Cd163 Mediating An Anti Inflammatory Response 169
## Interleukin 1 Processing 169
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 169
## Defensins 169
## Apoptosis 169
## Interleukin 12 Family Signaling 169
## Interleukin 6 Signaling 169
## Signaling By Nuclear Receptors 169
## Antimicrobial Peptides 169
## Cd28 Dependent Vav1 Pathway 169
## Killing Mechanisms 169
## Intracellular Signaling By Second Messengers 169
## Cell Surface Interactions At The Vascular Wall 169
## Cd28 Co Stimulation 169
## Collagen Degradation 169
## P75ntr Recruits Signalling Complexes 169
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 169
## Hemostasis 169
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 169
## Caspase Activation Via Death Receptors In The Presence Of Ligand 169
## The Nlrp3 Inflammasome 169
## Gab1 Signalosome 169
## Rip Mediated Nfkb Activation Via Zbp1 169
## Transcriptional Regulation By Runx2 169
## Signaling By Scf Kit 169
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 169
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 169
## Signaling By Receptor Tyrosine Kinases 169
## Rna Polymerase Ii Transcription 169
## Signaling By Kit In Disease 169
## Zbp1 Dai Mediated Induction Of Type I Ifns 169
## Signaling By Egfr 169
## Eph Ephrin Mediated Repulsion Of Cells 169
## Degradation Of The Extracellular Matrix 169
## Eph Ephrin Signaling 169
## Interferon Gamma Signaling 169
## Ikk Complex Recruitment Mediated By Rip1 169
## Cellular Senescence 169
## Rac3 Gtpase Cycle 169
## Cellular Responses To External Stimuli 169
## Signaling By Ptk6 169
## Platelet Activation Signaling And Aggregation 169
## Interleukin 6 Family Signaling 169
## Traf6 Mediated Nf Kb Activation 169
## Vesicle Mediated Transport 169
## Rhoq Gtpase Cycle 169
## Assembly Of Collagen Fibrils And Other Multimeric Structures 169
## Cargo Recognition For Clathrin Mediated Endocytosis 169
## Cytosolic Sensors Of Pathogen Associated Dna 169
## Pd 1 Signaling 169
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 169
## Dap12 Signaling 169
## Downstream Signal Transduction 169
## Senescence Associated Secretory Phenotype Sasp 169
## Tnfr1 Induced Nfkappab Signaling Pathway 169
## Activation Of C3 And C5 169
## Egfr Downregulation 169
## Mapk Targets Nuclear Events Mediated By Map Kinases 169
## Runx2 Regulates Genes Involved In Cell Migration 169
## Egfr Interacts With Phospholipase C Gamma 169
## Egfr Transactivation By Gastrin 169
## Interleukin 9 Signaling 169
## Trif Mediated Programmed Cell Death 169
## Negative Regulators Of Ddx58 Ifih1 Signaling 169
## Regulation Of Tnfr1 Signaling 169
## Rhog Gtpase Cycle 169
## Activation Of The Ap 1 Family Of Transcription Factors 169
## Interleukin 21 Signaling 169
## Mapk3 Erk1 Activation 169
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 169
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 169
## Apoptotic Cleavage Of Cell Adhesion Proteins 169
## Initial Triggering Of Complement 169
## Interleukin 27 Signaling 169
## Receptor Mediated Mitophagy 169
## Response To Elevated Platelet Cytosolic Ca2 169
## Selective Autophagy 169
## Gp1b Ix V Activation Signalling 169
## Interleukin 35 Signalling 169
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 169
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 169
## Nervous System Development 169
## C Type Lectin Receptors Clrs 169
## Interferon Signaling 169
## Apoptosis Induced Dna Fragmentation 169
## Erbb2 Activates Ptk6 Signaling 169
## Nf Kb Is Activated And Signals Survival 169
## Rac2 Gtpase Cycle 169
## Tnfr1 Induced Proapoptotic Signaling 169
## Trafficking And Processing Of Endosomal Tlr 169
## Tnf Signaling 169
## Clathrin Mediated Endocytosis 169
## Collagen Formation 169
## Transcriptional Regulation Of Granulopoiesis 169
## Dcc Mediated Attractive Signaling 169
## Early Phase Of Hiv Life Cycle 169
## Interleukin 15 Signaling 169
## Shc1 Events In Egfr Signaling 169
## Mapk6 Mapk4 Signaling 169
## Interleukin 12 Signaling 169
## Constitutive Signaling By Egfrviii 169
## Erbb2 Regulates Cell Motility 169
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 169
## P130cas Linkage To Mapk Signaling For Integrins 169
## Signaling By Notch3 169
## Ub Specific Processing Proteases 169
## Binding And Uptake Of Ligands By Scavenger Receptors 169
## Netrin 1 Signaling 169
## Signaling By Erbb2 169
## Grb2 Events In Erbb2 Signaling 169
## Pi3k Events In Erbb2 Signaling 169
## Signal Regulatory Protein Family Interactions 169
## Signaling By Erbb2 Ecd Mutants 169
## Sumoylation Of Dna Methylation Proteins 169
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 169
## Cdc42 Gtpase Cycle 169
## Clec7a Dectin 1 Signaling 169
## Class I Mhc Mediated Antigen Processing Presentation 169
## Apoptotic Execution Phase 169
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 169
## Intrinsic Pathway For Apoptosis 169
## Rhoj Gtpase Cycle 169
## Signaling By Cytosolic Fgfr1 Fusion Mutants 169
## Signaling By Vegf 169
## Transcriptional Regulation By Runx1 169
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 169
## Other Semaphorin Interactions 169
## Scavenging By Class A Receptors 169
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 169
## Signaling By Erbb4 169
## Signaling By Pdgf 169
## Signaling By Pdgfr In Disease 169
## Interleukin 37 Signaling 169
## Signal Transduction By L1 169
## Cd28 Dependent Pi3k Akt Signaling 169
## Rac1 Gtpase Cycle 169
## Shc1 Events In Erbb2 Signaling 169
## Foxo Mediated Transcription 169
## Raf Independent Mapk1 3 Activation 169
## Growth Hormone Receptor Signaling 169
## Runx2 Regulates Osteoblast Differentiation 169
## Circadian Clock 169
## Inactivation Of Csf3 G Csf Signaling 169
## Notch3 Activation And Transmission Of Signal To The Nucleus 169
## Rhob Gtpase Cycle 169
## Scavenging Of Heme From Plasma 169
## Signaling By Egfr In Cancer 169
## Interleukin 20 Family Signaling 169
## Signaling By Erbb2 In Cancer 169
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 169
## G0 And Early G1 169
## Integrin Signaling 169
## Interferon Alpha Beta Signaling 169
## Interleukin Receptor Shc Signaling 169
## Membrane Trafficking 169
## Rhoc Gtpase Cycle 169
## Signaling By Ntrks 169
## Vegfr2 Mediated Vascular Permeability 169
## Cell Death Signalling Via Nrage Nrif And Nade 169
## Developmental Biology 169
## Downregulation Of Erbb2 Signaling 169
## Mitophagy 169
## Ripk1 Mediated Regulated Necrosis 169
## G Alpha Q Signalling Events 169
## Signaling By Csf3 G Csf 169
## Fgfr1 Mutant Receptor Activation 169
## Nicotinate Metabolism 169
## Runx2 Regulates Bone Development 169
## Perk Regulates Gene Expression 169
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 169
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 169
## Mitotic G1 Phase And G1 S Transition 169
## Autophagy 169
## Cargo Concentration In The Er 169
## Plasma Lipoprotein Clearance 169
## Fceri Mediated Mapk Activation 169
## Gpvi Mediated Activation Cascade 169
## Regulation Of Tp53 Expression And Degradation 169
## Rhoh Gtpase Cycle 169
## Apoptotic Cleavage Of Cellular Proteins 169
## Fcgr3a Mediated Il10 Synthesis 169
## Signaling By Fgfr1 In Disease 169
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 169
## Ngf Stimulated Transcription 169
## Platelet Aggregation Plug Formation 169
## Map2k And Mapk Activation 169
## Signaling By Notch 169
## Alternative Complement Activation 169
## Fasl Cd95l Signaling 169
## G2 M Dna Replication Checkpoint 169
## Galactose Catabolism 169
## Hdl Clearance 169
## Mecp2 Regulates Transcription Factors 169
## Nostrin Mediated Enos Trafficking 169
## Runx1 Regulates Expression Of Components Of Tight Junctions 169
## Runx2 Regulates Chondrocyte Maturation 169
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 169
## Ephb Mediated Forward Signaling 169
## Rhof Gtpase Cycle 169
## Diseases Of Programmed Cell Death 169
## Tp53 Regulates Transcription Of Cell Death Genes 169
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 169
## Activated Ntrk3 Signals Through Pi3k 169
## Activation Of Caspases Through Apoptosome Mediated Cleavage 169
## Biosynthesis Of Epa Derived Spms 169
## Clec7a Inflammasome Pathway 169
## Nade Modulates Death Signalling 169
## Phosphorylation Of Emi1 169
## Protein Repair 169
## Ptk6 Promotes Hif1a Stabilization 169
## Ptk6 Regulates Cell Cycle 169
## Scavenging By Class B Receptors 169
## Sensing Of Dna Double Strand Breaks 169
## Signaling By Moderate Kinase Activity Braf Mutants 169
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 169
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 169
## Tnfr1 Mediated Ceramide Production 169
## Cyclin D Associated Events In G1 169
## Fc Epsilon Receptor Fceri Signaling 169
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 169
## Sumoylation 169
## Activated Ntrk2 Signals Through Fyn 169
## Activation Of Nima Kinases Nek9 Nek6 Nek7 169
## Creb Phosphorylation 169
## Defective Factor Viii Causes Hemophilia A 169
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 169
## Ikba Variant Leads To Eda Id 169
## Modulation By Mtb Of Host Immune System 169
## Parasite Infection 169
## Rhod Gtpase Cycle 169
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 169
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 169
## Hdl Assembly 169
## Inactivation Of Cdc42 And Rac1 169
## Lectin Pathway Of Complement Activation 169
## Mecp2 Regulates Transcription Of Neuronal Ligands 169
## Netrin Mediated Repulsion Signals 169
## Runx3 Regulates Wnt Signaling 169
## Smac Xiap Regulated Apoptotic Response 169
## L1cam Interactions 169
## Cytoprotection By Hmox1 169
## Tcr Signaling 169
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 169
## Downregulation Of Erbb4 Signaling 169
## E2f Enabled Inhibition Of Pre Replication Complex Formation 169
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 169
## Interleukin 23 Signaling 169
## Mapk1 Erk2 Activation 169
## Oas Antiviral Response 169
## Oxidative Stress Induced Senescence 169
## Nrage Signals Death Through Jnk 169
## Akt Phosphorylates Targets In The Nucleus 169
## Camk Iv Mediated Phosphorylation Of Creb 169
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 169
## Chylomicron Assembly 169
## Chylomicron Remodeling 169
## Hdl Remodeling 169
## Mastl Facilitates Mitotic Progression 169
## P75ntr Regulates Axonogenesis 169
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 169
## Regulation Of Foxo Transcriptional Activity By Acetylation 169
## Nuclear Events Kinase And Transcription Factor Activation 169
## Ca2 Pathway 169
## Tp53 Regulates Transcription Of Dna Repair Genes 169
## Condensation Of Prometaphase Chromosomes 169
## Dermatan Sulfate Biosynthesis 169
## Dscam Interactions 169
## Endosomal Vacuolar Pathway 169
## Enos Activation 169
## Ncam Signaling For Neurite Out Growth 169
## Pexophagy 169
## Regulation By C Flip 169
## Rho Gtpases Activate Ktn1 169
## Signaling By Fgfr In Disease 169
## Signaling By Leptin 169
## Sumoylation Of Immune Response Proteins 169
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 169
## Transcriptional Regulation By Mecp2 169
## Semaphorin Interactions 169
## Dna Methylation 169
## Signaling By Braf And Raf Fusions 169
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 169
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 169
## Interleukin 2 Signaling 169
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 169
## Notch2 Intracellular Domain Regulates Transcription 169
## Pecam1 Interactions 169
## Tandem Pore Domain Potassium Channels 169
## Ticam1 Dependent Activation Of Irf3 Irf7 169
## Vldlr Internalisation And Degradation 169
## Fcgamma Receptor Fcgr Dependent Phagocytosis 169
## Copii Mediated Vesicle Transport 169
## Tcf Dependent Signaling In Response To Wnt 169
## Advanced Glycosylation Endproduct Receptor Signaling 169
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 169
## Cytochrome C Mediated Apoptotic Response 169
## Dissolution Of Fibrin Clot 169
## Irf3 Mediated Induction Of Type I Ifn 169
## P38mapk Events 169
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 169
## Purine Salvage 169
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 169
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 169
## Epigenetic Regulation Of Gene Expression 169
## Creation Of C4 And C2 Activators 169
## Plasma Lipoprotein Assembly Remodeling And Clearance 169
## Rhoa Gtpase Cycle 169
## Golgi Cisternae Pericentriolar Stack Reorganization 169
## Irak1 Recruits Ikk Complex 169
## Regulation Of Ifng Signaling 169
## Repression Of Wnt Target Genes 169
## Traf3 Dependent Irf Activation Pathway 169
## Prc2 Methylates Histones And Dna 169
## Regulation Of Runx2 Expression And Activity 169
## Signaling By Tgf Beta Receptor Complex 169
## Depolymerisation Of The Nuclear Lamina 169
## Er To Golgi Anterograde Transport 169
## Heme Degradation 169
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 169
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 169
## Platelet Adhesion To Exposed Collagen 169
## Rho Gtpase Cycle 169
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 169
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 169
## Wnt5a Dependent Internalization Of Fzd4 169
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 169
## Abc Transporter Disorders 169
## Cellular Response To Chemical Stress 169
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 169
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 169
## Dna Double Strand Break Response 169
## Foxo Mediated Transcription Of Cell Death Genes 169
## Nrif Signals Cell Death From The Nucleus 169
## Regulation Of Kit Signaling 169
## Rmts Methylate Histone Arginines 169
## Signaling By Met 169
## Spry Regulation Of Fgf Signaling 169
## Sting Mediated Induction Of Host Immune Responses 169
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 169
## Abc Transporters In Lipid Homeostasis 169
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 169
## Antiviral Mechanism By Ifn Stimulated Genes 169
## Crosslinking Of Collagen Fibrils 169
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 169
## Diseases Associated With Glycosylation Precursor Biosynthesis 169
## Foxo Mediated Transcription Of Cell Cycle Genes 169
## Mecp2 Regulates Neuronal Receptors And Channels 169
## Oncogenic Mapk Signaling 169
## Regulation Of Hsf1 Mediated Heat Shock Response 169
## Regulation Of Runx1 Expression And Activity 169
## Signaling By Ntrk3 Trkc 169
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 169
## Transcriptional Regulation Of White Adipocyte Differentiation 169
## Apoptotic Factor Mediated Response 169
## Biosynthesis Of Specialized Proresolving Mediators Spms 169
## Cyclin A Cdk2 Associated Events At S Phase Entry 169
## Ephrin Signaling 169
## G Beta Gamma Signalling Through Cdc42 169
## Initiation Of Nuclear Envelope Ne Reformation 169
## Integrin Cell Surface Interactions 169
## Ldl Clearance 169
## Listeria Monocytogenes Entry Into Host Cells 169
## Meiotic Recombination 169
## Nicotinamide Salvaging 169
## Phase 4 Resting Membrane Potential 169
## Phosphorylation Of The Apc C 169
## Pka Mediated Phosphorylation Of Creb 169
## Plasma Lipoprotein Assembly 169
## Regulation Of Tp53 Activity Through Methylation 169
## Signaling By Hippo 169
## Signalling To Ras 169
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 169
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 169
## Transcription Of E2f Targets Under Negative Control By Dream Complex 169
## Vegfr2 Mediated Cell Proliferation 169
## Branched Chain Amino Acid Catabolism 169
## Formation Of The Beta Catenin Tcf Transactivating Complex 169
## Rho Gtpases Activate Paks 169
## Unfolded Protein Response Upr 169
## Activation Of Nmda Receptors And Postsynaptic Events 169
## Chaperone Mediated Autophagy 169
## Class B 2 Secretin Family Receptors 169
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 169
## E2f Mediated Regulation Of Dna Replication 169
## G2 M Dna Damage Checkpoint 169
## Incretin Synthesis Secretion And Inactivation 169
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 169
## Intrinsic Pathway Of Fibrin Clot Formation 169
## Long Term Potentiation 169
## Nucleotide Salvage 169
## Pink1 Prkn Mediated Mitophagy 169
## Telomere Extension By Telomerase 169
## Termination Of O Glycan Biosynthesis 169
## Transcriptional Regulation By Runx3 169
## Transport To The Golgi And Subsequent Modification 169
## Apc C Cdc20 Mediated Degradation Of Cyclin B 169
## Cellular Response To Heat Stress 169
## Metabolism Of Vitamins And Cofactors 169
## Other Interleukin Signaling 169
## Rho Gtpases Activate Nadph Oxidases 169
## Triglyceride Catabolism 169
## Abc Family Proteins Mediated Transport 169
## Adp Signalling Through P2y Purinoceptor 1 169
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 169
## Basigin Interactions 169
## Constitutive Signaling By Akt1 E17k In Cancer 169
## Copi Mediated Anterograde Transport 169
## Cyclin A B1 B2 Associated Events During G2 M Transition 169
## Dectin 2 Family 169
## Notch3 Intracellular Domain Regulates Transcription 169
## Regulation Of Ifna Signaling 169
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 169
## Signaling By Ntrk2 Trkb 169
## Signaling By Tgfb Family Members 169
## Wnt Ligand Biogenesis And Trafficking 169
## Asparagine N Linked Glycosylation 169
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 169
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 169
## Infection With Mycobacterium Tuberculosis 169
## Metabolism Of Porphyrins 169
## Amyloid Fiber Formation 169
## Epha Mediated Growth Cone Collapse 169
## G1 S Specific Transcription 169
## Myogenesis 169
## Negative Epigenetic Regulation Of Rrna Expression 169
## Negative Regulation Of Fgfr3 Signaling 169
## Traf6 Mediated Irf7 Activation 169
## Activation Of Bh3 Only Proteins 169
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 169
## Met Activates Ptk2 Signaling 169
## Negative Regulation Of Fgfr4 Signaling 169
## Transcriptional Regulation Of Pluripotent Stem Cells 169
## G Protein Beta Gamma Signalling 169
## Meiosis 169
## Negative Regulation Of Fgfr1 Signaling 169
## Nuclear Signaling By Erbb4 169
## Plasma Lipoprotein Remodeling 169
## Regulation Of Mecp2 Expression And Activity 169
## Rho Gtpase Effectors 169
## Rho Gtpases Activate Iqgaps 169
## Rhov Gtpase Cycle 169
## Sialic Acid Metabolism 169
## Signal Amplification 169
## Signaling By Notch2 169
## Signaling By Robo Receptors 169
## Thrombin Signalling Through Proteinase Activated Receptors Pars 169
## Late Endosomal Microautophagy 169
## Metabolism Of Water Soluble Vitamins And Cofactors 169
## Negative Regulation Of Fgfr2 Signaling 169
## Oncogene Induced Senescence 169
## Raf Activation 169
## Resolution Of D Loop Structures 169
## Rhou Gtpase Cycle 169
## Signaling By Wnt 169
## Signalling To Erks 169
## Ca Dependent Events 169
## Hdr Through Single Strand Annealing Ssa 169
## Interleukin 7 Signaling 169
## Metalloprotease Dubs 169
## Mhc Class Ii Antigen Presentation 169
## Nuclear Pore Complex Npc Disassembly 169
## Rho Gtpases Activate Wasps And Waves 169
## Ros And Rns Production In Phagocytes 169
## Cell Cell Communication 169
## Diseases Of Mitotic Cell Cycle 169
## Triglyceride Metabolism 169
## Adora2b Mediated Anti Inflammatory Cytokines Production 169
## Association Of Tric Cct With Target Proteins During Biosynthesis 169
## Formation Of Fibrin Clot Clotting Cascade 169
## Generation Of Second Messenger Molecules 169
## Ret Signaling 169
## Signaling By Fgfr3 169
## Dag And Ip3 Signaling 169
## Hcmv Early Events 169
## Homologous Dna Pairing And Strand Exchange 169
## Met Promotes Cell Motility 169
## Rnd1 Gtpase Cycle 169
## Rnd3 Gtpase Cycle 169
## Signaling By Fgfr4 169
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 169
## Transcriptional Regulation By Ventx 169
## Aggrephagy 169
## Rho Gtpases Activate Formins 169
## Rnd2 Gtpase Cycle 169
## Sumoylation Of Transcription Cofactors 169
## Transcriptional Regulation By Tp53 169
## Beta Catenin Independent Wnt Signaling 169
## Diseases Of Glycosylation 169
## Elastic Fibre Formation 169
## Reproduction 169
## Estrogen Dependent Gene Expression 169
## Hiv Life Cycle 169
## Irs Mediated Signalling 169
## Metabolism Of Fat Soluble Vitamins 169
## Notch1 Intracellular Domain Regulates Transcription 169
## Chondroitin Sulfate Dermatan Sulfate Metabolism 169
## Recycling Pathway Of L1 169
## Retrograde Transport At The Trans Golgi Network 169
## Signaling By Fgfr1 169
## Tp53 Regulates Transcription Of Cell Cycle Genes 169
## Extension Of Telomeres 169
## Gap Junction Trafficking And Regulation 169
## Chromatin Modifying Enzymes 169
## G Protein Mediated Events 169
## Insulin Receptor Signalling Cascade 169
## Nuclear Envelope Breakdown 169
## Regulation Of Tp53 Activity 169
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 169
## Synthesis Of Pips At The Plasma Membrane 169
## Hcmv Infection 169
## Regulation Of Runx3 Expression And Activity 169
## S Phase 169
## Transcriptional Activation Of Mitochondrial Biogenesis 169
## Dna Double Strand Break Repair 169
## G2 M Checkpoints 169
## Iron Uptake And Transport 169
## Signaling By Notch1 Pest Domain Mutants In Cancer 169
## Signaling By The B Cell Receptor Bcr 169
## Stabilization Of P53 169
## Arachidonic Acid Metabolism 169
## Scf Skp2 Mediated Degradation Of P27 P21 169
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 169
## Defective Cftr Causes Cystic Fibrosis 169
## Disorders Of Transmembrane Transporters 169
## O Linked Glycosylation Of Mucins 169
## Asymmetric Localization Of Pcp Proteins 169
## Synthesis Of Substrates In N Glycan Biosythesis 169
## Cell Cycle 169
## Hdr Through Homologous Recombination Hrr 169
## Rab Geranylgeranylation 169
## Regulation Of Hmox1 Expression And Activity 169
## Diseases Associated With O Glycosylation Of Proteins 169
## Fcgr Activation 169
## G1 S Dna Damage Checkpoints 169
## Nonhomologous End Joining Nhej 169
## Sirt1 Negatively Regulates Rrna Expression 169
## Aurka Activation By Tpx2 169
## Condensation Of Prophase Chromosomes 169
## Signaling By Fgfr2 169
## Signaling By Notch1 169
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 169
## Ecm Proteoglycans 169
## Nuclear Envelope Ne Reassembly 169
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 169
## Signaling By Insulin Receptor 169
## Dna Damage Telomere Stress Induced Senescence 169
## Downstream Signaling Events Of B Cell Receptor Bcr 169
## G Alpha 12 13 Signalling Events 169
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 169
## Potential Therapeutics For Sars 169
## Recruitment Of Mitotic Centrosome Proteins And Complexes 169
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 169
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 169
## Degradation Of Beta Catenin By The Destruction Complex 169
## Fceri Mediated Ca 2 Mobilization 169
## Pi Metabolism 169
## Apc C Mediated Degradation Of Cell Cycle Proteins 169
## Regulation Of Plk1 Activity At G2 M Transition 169
## Signaling By Fgfr 169
## Opioid Signalling 169
## Peptide Hormone Metabolism 169
## Rab Gefs Exchange Gtp For Gdp On Rabs 169
## Mitochondrial Biogenesis 169
## Pcp Ce Pathway 169
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 169
## Regulation Of Tp53 Activity Through Phosphorylation 169
## Anchoring Of The Basal Body To The Plasma Membrane 169
## Hiv Infection 169
## Recruitment Of Numa To Mitotic Centrosomes 169
## Metabolism Of Nucleotides 169
## Processing Of Dna Double Strand Break Ends 169
## Protein Folding 169
## Visual Phototransduction 169
## Diseases Of Metabolism 169
## Potassium Channels 169
## Stimuli Sensing Channels 169
## O Linked Glycosylation 169
## Telomere Maintenance 169
## Neuronal System 169
## Cell Cycle Mitotic 169
## Regulation Of Lipid Metabolism By Pparalpha 169
## Transmission Across Chemical Synapses 169
## Glycosaminoglycan Metabolism 169
## Rab Regulation Of Trafficking 169
## Cardiac Conduction 169
## Resolution Of Sister Chromatid Cohesion 169
## Transport Of Small Molecules 169
## Cell Cycle Checkpoints 169
## Fceri Mediated Nf Kb Activation 169
## Homology Directed Repair 169
## Metabolism Of Carbohydrates 169
## Organelle Biogenesis And Maintenance 169
## Chromosome Maintenance 169
## G Alpha S Signalling Events 169
## Mitotic Prophase 169
## Sars Cov Infections 169
## Dna Repair 169
## Protein Localization 169
## Factors Involved In Megakaryocyte Development And Platelet Production 169
## Fatty Acid Metabolism 169
## Ion Channel Transport 169
## Muscle Contraction 169
## Cilium Assembly 169
## Intra Golgi And Retrograde Golgi To Er Traffic 169
## Mitotic G2 G2 M Phases 169
## Mitotic Prometaphase 169
## Metabolism Of Lipids 169
## Phospholipid Metabolism 169
## Mitotic Metaphase And Anaphase 169
## Metabolism Of Amino Acids And Derivatives 169
## M Phase 169
## Sensory Perception 169
## 2 Ltr Circle Formation 169
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 169
## Abacavir Metabolism 169
## Abacavir Transmembrane Transport 169
## Abacavir Transport And Metabolism 169
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 169
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 169
## Acetylcholine Binding And Downstream Events 169
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 169
## Acetylcholine Neurotransmitter Release Cycle 169
## Acetylcholine Regulates Insulin Secretion 169
## Acrosome Reaction And Sperm Oocyte Membrane Binding 169
## Activated Notch1 Transmits Signal To The Nucleus 169
## Activated Ntrk2 Signals Through Cdk5 169
## Activated Ntrk2 Signals Through Frs2 And Frs3 169
## Activated Ntrk2 Signals Through Pi3k 169
## Activated Ntrk2 Signals Through Ras 169
## Activated Ntrk3 Signals Through Ras 169
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 169
## Activation Of Ampk Downstream Of Nmdars 169
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 169
## Activation Of Atr In Response To Replication Stress 169
## Activation Of Bad And Translocation To Mitochondria 169
## Activation Of Gene Expression By Srebf Srebp 169
## Activation Of Kainate Receptors Upon Glutamate Binding 169
## Activation Of Noxa And Translocation To Mitochondria 169
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 169
## Activation Of Puma And Translocation To Mitochondria 169
## Activation Of Rac1 169
## Activation Of Rac1 Downstream Of Nmdars 169
## Activation Of Ras In B Cells 169
## Activation Of Smo 169
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 169
## Activation Of The Phototransduction Cascade 169
## Activation Of The Pre Replicative Complex 169
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 169
## Activation Of Trka Receptors 169
## Acyl Chain Remodeling Of Cl 169
## Acyl Chain Remodeling Of Dag And Tag 169
## Acyl Chain Remodelling Of Pc 169
## Acyl Chain Remodelling Of Pe 169
## Acyl Chain Remodelling Of Pg 169
## Acyl Chain Remodelling Of Pi 169
## Acyl Chain Remodelling Of Ps 169
## Adenylate Cyclase Activating Pathway 169
## Adenylate Cyclase Inhibitory Pathway 169
## Adherens Junctions Interactions 169
## Adp Signalling Through P2y Purinoceptor 12 169
## Adrenaline Noradrenaline Inhibits Insulin Secretion 169
## Adrenoceptors 169
## Aflatoxin Activation And Detoxification 169
## Akt Phosphorylates Targets In The Cytosol 169
## Alpha Defensins 169
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 169
## Alpha Oxidation Of Phytanate 169
## Alpha Protein Kinase 1 Signaling Pathway 169
## Amine Ligand Binding Receptors 169
## Amino Acid Conjugation 169
## Amino Acid Transport Across The Plasma Membrane 169
## Amino Acids Regulate Mtorc1 169
## Ampk Inhibits Chrebp Transcriptional Activation Activity 169
## Anchoring Fibril Formation 169
## Androgen Biosynthesis 169
## Antigen Processing Ubiquitination Proteasome Degradation 169
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 169
## Apc Cdc20 Mediated Degradation Of Nek2a 169
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 169
## Apobec3g Mediated Resistance To Hiv 1 Infection 169
## Aquaporin Mediated Transport 169
## Arachidonate Production From Dag 169
## Arms Mediated Activation 169
## Aryl Hydrocarbon Receptor Signalling 169
## Aspartate And Asparagine Metabolism 169
## Assembly And Cell Surface Presentation Of Nmda Receptors 169
## Assembly Of Active Lpl And Lipc Lipase Complexes 169
## Assembly Of The Hiv Virion 169
## Assembly Of The Orc Complex At The Origin Of Replication 169
## Assembly Of The Pre Replicative Complex 169
## Atf6 Atf6 Alpha Activates Chaperone Genes 169
## Atf6 Atf6 Alpha Activates Chaperones 169
## Attachment And Entry 169
## Attachment Of Gpi Anchor To Upar 169
## Attenuation Phase 169
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 169
## B Wich Complex Positively Regulates Rrna Expression 169
## Base Excision Repair 169
## Base Excision Repair Ap Site Formation 169
## Bbsome Mediated Cargo Targeting To Cilium 169
## Beta Catenin Phosphorylation Cascade 169
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 169
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 169
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 169
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 169
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 169
## Beta Oxidation Of Pristanoyl Coa 169
## Beta Oxidation Of Very Long Chain Fatty Acids 169
## Bicarbonate Transporters 169
## Bile Acid And Bile Salt Metabolism 169
## Biological Oxidations 169
## Biosynthesis Of Maresin Like Spms 169
## Biosynthesis Of Maresins 169
## Biotin Transport And Metabolism 169
## Blood Group Systems Biosynthesis 169
## Budding And Maturation Of Hiv Virion 169
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 169
## Butyrophilin Btn Family Interactions 169
## Ca2 Activated K Channels 169
## Calcineurin Activates Nfat 169
## Calcitonin Like Ligand Receptors 169
## Calnexin Calreticulin Cycle 169
## Carboxyterminal Post Translational Modifications Of Tubulin 169
## Cargo Trafficking To The Periciliary Membrane 169
## Carnitine Metabolism 169
## Cation Coupled Chloride Cotransporters 169
## Cd209 Dc Sign Signaling 169
## Cd22 Mediated Bcr Regulation 169
## Cdc6 Association With The Orc Origin Complex 169
## Cell Cell Junction Organization 169
## Cell Extracellular Matrix Interactions 169
## Cell Junction Organization 169
## Cellular Hexose Transport 169
## Cellular Response To Hypoxia 169
## Cellular Response To Starvation 169
## Cgmp Effects 169
## Chl1 Interactions 169
## Cholesterol Biosynthesis 169
## Choline Catabolism 169
## Chondroitin Sulfate Biosynthesis 169
## Chrebp Activates Metabolic Gene Expression 169
## Chylomicron Clearance 169
## Citric Acid Cycle Tca Cycle 169
## Class C 3 Metabotropic Glutamate Pheromone Receptors 169
## Class I Peroxisomal Membrane Protein Import 169
## Clec7a Dectin 1 Induces Nfat Activation 169
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 169
## Coenzyme A Biosynthesis 169
## Cohesin Loading Onto Chromatin 169
## Collagen Biosynthesis And Modifying Enzymes 169
## Collagen Chain Trimerization 169
## Common Pathway Of Fibrin Clot Formation 169
## Competing Endogenous Rnas Cernas Regulate Pten Translation 169
## Complex I Biogenesis 169
## Conjugation Of Benzoate With Glycine 169
## Constitutive Signaling By Overexpressed Erbb2 169
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 169
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 169
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 169
## Copi Dependent Golgi To Er Retrograde Traffic 169
## Copi Independent Golgi To Er Retrograde Traffic 169
## Creatine Metabolism 169
## Creb3 Factors Activate Genes 169
## Cristae Formation 169
## Crmps In Sema3a Signaling 169
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 169
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 169
## Cs Ds Degradation 169
## Cyp2e1 Reactions 169
## Cytochrome P450 Arranged By Substrate Type 169
## Cytosolic Iron Sulfur Cluster Assembly 169
## Cytosolic Sulfonation Of Small Molecules 169
## Cytosolic Trna Aminoacylation 169
## Darpp 32 Events 169
## Deactivation Of The Beta Catenin Transactivating Complex 169
## Deadenylation Dependent Mrna Decay 169
## Deadenylation Of Mrna 169
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 169
## Defective B4galt7 Causes Eds Progeroid Type 169
## Defective Chst14 Causes Eds Musculocontractural Type 169
## Defective Chst3 Causes Sedcjd 169
## Defective Chst6 Causes Mcdc1 169
## Defective Chsy1 Causes Tpbs 169
## Defective Csf2rb Causes Smdp5 169
## Defective Ext2 Causes Exostoses 2 169
## Defective F9 Activation 169
## Defective Factor Ix Causes Hemophilia B 169
## Defective Lfng Causes Scdo3 169
## Defective Ripk1 Mediated Regulated Necrosis 169
## Defective St3gal3 Causes Mct12 And Eiee15 169
## Defects In Biotin Btn Metabolism 169
## Defects In Cobalamin B12 Metabolism 169
## Defects In Vitamin And Cofactor Metabolism 169
## Degradation Of Axin 169
## Degradation Of Cysteine And Homocysteine 169
## Degradation Of Dvl 169
## Degradation Of Gli1 By The Proteasome 169
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 169
## Detoxification Of Reactive Oxygen Species 169
## Digestion 169
## Digestion And Absorption 169
## Digestion Of Dietary Carbohydrate 169
## Digestion Of Dietary Lipid 169
## Diseases Associated With Glycosaminoglycan Metabolism 169
## Diseases Associated With N Glycosylation Of Proteins 169
## Diseases Associated With Surfactant Metabolism 169
## Diseases Of Base Excision Repair 169
## Diseases Of Carbohydrate Metabolism 169
## Diseases Of Dna Repair 169
## Diseases Of Mismatch Repair Mmr 169
## Disinhibition Of Snare Formation 169
## Displacement Of Dna Glycosylase By Apex1 169
## Dna Damage Bypass 169
## Dna Damage Recognition In Gg Ner 169
## Dna Damage Reversal 169
## Dna Replication 169
## Dna Replication Initiation 169
## Dna Replication Pre Initiation 169
## Dna Strand Elongation 169
## Dopamine Neurotransmitter Release Cycle 169
## Dopamine Receptors 169
## Downregulation Of Erbb2 Erbb3 Signaling 169
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 169
## Downregulation Of Tgf Beta Receptor Signaling 169
## Downstream Signaling Of Activated Fgfr1 169
## Downstream Signaling Of Activated Fgfr2 169
## Downstream Signaling Of Activated Fgfr3 169
## Downstream Signaling Of Activated Fgfr4 169
## Dual Incision In Gg Ner 169
## Dual Incision In Tc Ner 169
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 169
## Effects Of Pip2 Hydrolysis 169
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 169
## Eicosanoid Ligand Binding Receptors 169
## Eicosanoids 169
## Electric Transmission Across Gap Junctions 169
## Elevation Of Cytosolic Ca2 Levels 169
## Endogenous Sterols 169
## Endosomal Sorting Complex Required For Transport Escrt 169
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 169
## Er Quality Control Compartment Erqc 169
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 169
## Erk Mapk Targets 169
## Erks Are Inactivated 169
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 169
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 169
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 169
## Erythropoietin Activates Phospholipase C Gamma Plcg 169
## Erythropoietin Activates Ras 169
## Erythropoietin Activates Stat5 169
## Establishment Of Sister Chromatid Cohesion 169
## Estrogen Biosynthesis 169
## Estrogen Stimulated Signaling Through Prkcz 169
## Ethanol Oxidation 169
## Eukaryotic Translation Elongation 169
## Eukaryotic Translation Initiation 169
## Export Of Viral Ribonucleoproteins From Nucleus 169
## Extrinsic Pathway Of Fibrin Clot Formation 169
## Fanconi Anemia Pathway 169
## Fatty Acids 169
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 169
## Fatty Acyl Coa Biosynthesis 169
## Fbxw7 Mutants And Notch1 In Cancer 169
## Fertilization 169
## Fgfr1 Ligand Binding And Activation 169
## Fgfr1b Ligand Binding And Activation 169
## Fgfr1c Ligand Binding And Activation 169
## Fgfr2 Alternative Splicing 169
## Fgfr2 Ligand Binding And Activation 169
## Fgfr2 Mutant Receptor Activation 169
## Fgfr2b Ligand Binding And Activation 169
## Fgfr2c Ligand Binding And Activation 169
## Fgfr3 Ligand Binding And Activation 169
## Fgfr3b Ligand Binding And Activation 169
## Fgfrl1 Modulation Of Fgfr1 Signaling 169
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 169
## Flt3 Signaling 169
## Flt3 Signaling By Cbl Mutants 169
## Flt3 Signaling In Disease 169
## Flt3 Signaling Through Src Family Kinases 169
## Folding Of Actin By Cct Tric 169
## Formation Of Apoptosome 169
## Formation Of Atp By Chemiosmotic Coupling 169
## Formation Of Incision Complex In Gg Ner 169
## Formation Of Rna Pol Ii Elongation Complex 169
## Formation Of Senescence Associated Heterochromatin Foci Sahf 169
## Formation Of Tc Ner Pre Incision Complex 169
## Formation Of The Cornified Envelope 169
## Formation Of The Early Elongation Complex 169
## Formation Of Tubulin Folding Intermediates By Cct Tric 169
## Formation Of Xylulose 5 Phosphate 169
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 169
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 169
## Free Fatty Acid Receptors 169
## Free Fatty Acids Regulate Insulin Secretion 169
## Frs Mediated Fgfr1 Signaling 169
## Frs Mediated Fgfr2 Signaling 169
## Frs Mediated Fgfr3 Signaling 169
## Frs Mediated Fgfr4 Signaling 169
## Fructose Catabolism 169
## Fructose Metabolism 169
## G Alpha Z Signalling Events 169
## G Beta Gamma Signalling Through Pi3kgamma 169
## G Protein Activation 169
## G2 Phase 169
## Gaba B Receptor Activation 169
## Gaba Receptor Activation 169
## Gaba Synthesis Release Reuptake And Degradation 169
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 169
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 169
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 169
## Gap Junction Assembly 169
## Gap Junction Degradation 169
## Gdp Fucose Biosynthesis 169
## Gene Silencing By Rna 169
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 169
## Global Genome Nucleotide Excision Repair Gg Ner 169
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 169
## Glucagon Signaling In Metabolic Regulation 169
## Glucagon Type Ligand Receptors 169
## Glucocorticoid Biosynthesis 169
## Gluconeogenesis 169
## Glucose Metabolism 169
## Glucuronidation 169
## Glutamate And Glutamine Metabolism 169
## Glutamate Neurotransmitter Release Cycle 169
## Glutathione Conjugation 169
## Glutathione Synthesis And Recycling 169
## Glycerophospholipid Biosynthesis 169
## Glycerophospholipid Catabolism 169
## Glycogen Breakdown Glycogenolysis 169
## Glycogen Metabolism 169
## Glycogen Storage Diseases 169
## Glycogen Synthesis 169
## Glycolysis 169
## Glycosphingolipid Metabolism 169
## Glyoxylate Metabolism And Glycine Degradation 169
## Golgi Associated Vesicle Biogenesis 169
## Golgi To Er Retrograde Transport 169
## Grb7 Events In Erbb2 Signaling 169
## Hats Acetylate Histones 169
## Hcmv Late Events 169
## Hdacs Deacetylate Histones 169
## Hdms Demethylate Histones 169
## Hdr Through Mmej Alt Nhej 169
## Hedgehog Ligand Biogenesis 169
## Hedgehog Off State 169
## Hedgehog On State 169
## Heme Biosynthesis 169
## Heparan Sulfate Heparin Hs Gag Metabolism 169
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 169
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 169
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 169
## Histidine Catabolism 169
## Hiv Elongation Arrest And Recovery 169
## Hiv Transcription Elongation 169
## Hiv Transcription Initiation 169
## Hormone Ligand Binding Receptors 169
## Host Interactions Of Hiv Factors 169
## Hs Gag Biosynthesis 169
## Hs Gag Degradation 169
## Hsf1 Activation 169
## Hsf1 Dependent Transactivation 169
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 169
## Hur Elavl1 Binds And Stabilizes Mrna 169
## Hyaluronan Biosynthesis And Export 169
## Hyaluronan Metabolism 169
## Hyaluronan Uptake And Degradation 169
## Hydrolysis Of Lpc 169
## Il 6 Type Cytokine Receptor Ligand Interactions 169
## Influenza Infection 169
## Inhibition Of Dna Recombination At Telomere 169
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 169
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 169
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 169
## Inositol Phosphate Metabolism 169
## Insulin Processing 169
## Insulin Receptor Recycling 169
## Integration Of Energy Metabolism 169
## Integration Of Provirus 169
## Interaction Between L1 And Ankyrins 169
## Interaction With Cumulus Cells And The Zona Pellucida 169
## Interactions Of Rev With Host Cellular Proteins 169
## Interactions Of Vpr With Host Cellular Proteins 169
## Interconversion Of Nucleotide Di And Triphosphates 169
## Interleukin 36 Pathway 169
## Intestinal Absorption 169
## Intra Golgi Traffic 169
## Intraflagellar Transport 169
## Inwardly Rectifying K Channels 169
## Ion Homeostasis 169
## Ion Transport By P Type Atpases 169
## Ionotropic Activity Of Kainate Receptors 169
## Irak2 Mediated Activation Of Tak1 Complex 169
## Ire1alpha Activates Chaperones 169
## Irf3 Mediated Activation Of Type 1 Ifn 169
## Irs Activation 169
## Josephin Domain Dubs 169
## Keratan Sulfate Biosynthesis 169
## Keratan Sulfate Degradation 169
## Keratan Sulfate Keratin Metabolism 169
## Keratinization 169
## Ketone Body Metabolism 169
## Kinesins 169
## Ksrp Khsrp Binds And Destabilizes Mrna 169
## Lagging Strand Synthesis 169
## Laminin Interactions 169
## Leukotriene Receptors 169
## Lgi Adam Interactions 169
## Ligand Receptor Interactions 169
## Linoleic Acid La Metabolism 169
## Lipid Particle Organization 169
## Lipophagy 169
## Loss Of Function Of Mecp2 In Rett Syndrome 169
## Loss Of Function Of Smad2 3 In Cancer 169
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 169
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 169
## Ltc4 Cysltr Mediated Il4 Production 169
## Lysine Catabolism 169
## Lysosome Vesicle Biogenesis 169
## Lysosphingolipid And Lpa Receptors 169
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 169
## Maturation Of Nucleoprotein 169
## Maturation Of Protein 3a 169
## Maturation Of Sars Cov 1 Spike Protein 169
## Maturation Of Sars Cov 2 Spike Protein 169
## Meiotic Synapsis 169
## Melanin Biosynthesis 169
## Met Activates Pi3k Akt Signaling 169
## Met Activates Ptpn11 169
## Met Activates Rap1 And Rac1 169
## Met Activates Ras Signaling 169
## Met Interacts With Tns Proteins 169
## Met Receptor Activation 169
## Met Receptor Recycling 169
## Metabolic Disorders Of Biological Oxidation Enzymes 169
## Metabolism Of Amine Derived Hormones 169
## Metabolism Of Angiotensinogen To Angiotensins 169
## Metabolism Of Cofactors 169
## Metabolism Of Folate And Pterines 169
## Metabolism Of Ingested Semet Sec Mesec Into H2se 169
## Metabolism Of Polyamines 169
## Metabolism Of Rna 169
## Metabolism Of Steroid Hormones 169
## Metabolism Of Steroids 169
## Metal Ion Slc Transporters 169
## Metal Sequestration By Antimicrobial Proteins 169
## Metallothioneins Bind Metals 169
## Methionine Salvage Pathway 169
## Methylation 169
## Microrna Mirna Biogenesis 169
## Mineralocorticoid Biosynthesis 169
## Miro Gtpase Cycle 169
## Miscellaneous Substrates 169
## Miscellaneous Transport And Binding Events 169
## Mismatch Repair 169
## Mitochondrial Calcium Ion Transport 169
## Mitochondrial Fatty Acid Beta Oxidation 169
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 169
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 169
## Mitochondrial Iron Sulfur Cluster Biogenesis 169
## Mitochondrial Protein Import 169
## Mitochondrial Translation 169
## Mitochondrial Trna Aminoacylation 169
## Mitochondrial Uncoupling 169
## Mitotic Spindle Checkpoint 169
## Mitotic Telophase Cytokinesis 169
## Molecules Associated With Elastic Fibres 169
## Molybdenum Cofactor Biosynthesis 169
## Mrna Capping 169
## Mrna Decay By 3 To 5 Exoribonuclease 169
## Mrna Decay By 5 To 3 Exoribonuclease 169
## Mrna Editing 169
## Mrna Editing C To U Conversion 169
## Mrna Splicing 169
## Mrna Splicing Minor Pathway 169
## Mtor Signalling 169
## Mtorc1 Mediated Signalling 169
## Mucopolysaccharidoses 169
## Multifunctional Anion Exchangers 169
## Muscarinic Acetylcholine Receptors 169
## Myoclonic Epilepsy Of Lafora 169
## N Glycan Antennae Elongation 169
## N Glycan Antennae Elongation In The Medial Trans Golgi 169
## N Glycan Trimming And Elongation In The Cis Golgi 169
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 169
## Na Cl Dependent Neurotransmitter Transporters 169
## Ncam1 Interactions 169
## Nectin Necl Trans Heterodimerization 169
## Neddylation 169
## Nef And Signal Transduction 169
## Nef Mediated Cd4 Down Regulation 169
## Nef Mediated Cd8 Down Regulation 169
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 169
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 169
## Negative Feedback Regulation Of Mapk Pathway 169
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 169
## Negative Regulation Of Flt3 169
## Negative Regulation Of Mapk Pathway 169
## Negative Regulation Of Met Activity 169
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 169
## Negative Regulation Of Notch4 Signaling 169
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 169
## Nephrin Family Interactions 169
## Neurexins And Neuroligins 169
## Neurofascin Interactions 169
## Neurotoxicity Of Clostridium Toxins 169
## Neurotransmitter Clearance 169
## Neurotransmitter Release Cycle 169
## Ngf Independant Trka Activation 169
## Nitric Oxide Stimulates Guanylate Cyclase 169
## Non Integrin Membrane Ecm Interactions 169
## Noncanonical Activation Of Notch3 169
## Nonsense Mediated Decay Nmd 169
## Norepinephrine Neurotransmitter Release Cycle 169
## Notch Hlh Transcription Pathway 169
## Notch2 Activation And Transmission Of Signal To The Nucleus 169
## Notch4 Activation And Transmission Of Signal To The Nucleus 169
## Notch4 Intracellular Domain Regulates Transcription 169
## Nr1h2 And Nr1h3 Mediated Signaling 169
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 169
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 169
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 169
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 169
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 169
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 169
## Nrcam Interactions 169
## Ns1 Mediated Effects On Host Pathways 169
## Ntrk2 Activates Rac1 169
## Nuclear Import Of Rev Protein 169
## Nuclear Receptor Transcription Pathway 169
## Nucleobase Biosynthesis 169
## Nucleobase Catabolism 169
## Nucleotide Excision Repair 169
## Nucleotide Like Purinergic Receptors 169
## O Glycosylation Of Tsr Domain Containing Proteins 169
## Olfactory Signaling Pathway 169
## Opsins 169
## Orc1 Removal From Chromatin 169
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 169
## Organic Anion Transport 169
## Organic Anion Transporters 169
## Organic Cation Anion Zwitterion Transport 169
## Organic Cation Transport 169
## P2y Receptors 169
## P75ntr Negatively Regulates Cell Cycle Via Sc1 169
## Passive Transport By Aquaporins 169
## Pcna Dependent Long Patch Base Excision Repair 169
## Pentose Phosphate Pathway 169
## Peptide Hormone Biosynthesis 169
## Peroxisomal Lipid Metabolism 169
## Peroxisomal Protein Import 169
## Phase 0 Rapid Depolarisation 169
## Phase 1 Inactivation Of Fast Na Channels 169
## Phase 2 Plateau Phase 169
## Phase 3 Rapid Repolarisation 169
## Phase I Functionalization Of Compounds 169
## Phase Ii Conjugation Of Compounds 169
## Phenylalanine And Tyrosine Metabolism 169
## Phenylalanine Metabolism 169
## Phosphate Bond Hydrolysis By Ntpdase Proteins 169
## Phosphate Bond Hydrolysis By Nudt Proteins 169
## Phospholipase C Mediated Cascade Fgfr2 169
## Phospholipase C Mediated Cascade Fgfr4 169
## Physiological Factors 169
## Pi 3k Cascade Fgfr1 169
## Pi 3k Cascade Fgfr2 169
## Pi 3k Cascade Fgfr3 169
## Pi 3k Cascade Fgfr4 169
## Pi3k Akt Activation 169
## Pi3k Events In Erbb4 Signaling 169
## Pi5p Regulates Tp53 Acetylation 169
## Piwi Interacting Rna Pirna Biogenesis 169
## Pka Activation In Glucagon Signalling 169
## Pka Mediated Phosphorylation Of Key Metabolic Factors 169
## Pkmts Methylate Histone Lysines 169
## Platelet Calcium Homeostasis 169
## Platelet Homeostasis 169
## Platelet Sensitization By Ldl 169
## Polb Dependent Long Patch Base Excision Repair 169
## Polo Like Kinase Mediated Events 169
## Polymerase Switching 169
## Polymerase Switching On The C Strand Of The Telomere 169
## Positive Epigenetic Regulation Of Rrna Expression 169
## Post Chaperonin Tubulin Folding Pathway 169
## Postmitotic Nuclear Pore Complex Npc Reformation 169
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 169
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 169
## Pre Notch Expression And Processing 169
## Pre Notch Processing In Golgi 169
## Pre Notch Processing In The Endoplasmic Reticulum 169
## Pregnenolone Biosynthesis 169
## Presynaptic Depolarization And Calcium Channel Opening 169
## Presynaptic Function Of Kainate Receptors 169
## Prevention Of Phagosomal Lysosomal Fusion 169
## Processing And Activation Of Sumo 169
## Processing Of Capped Intron Containing Pre Mrna 169
## Processing Of Capped Intronless Pre Mrna 169
## Processing Of Intronless Pre Mrnas 169
## Processing Of Smdt1 169
## Processive Synthesis On The C Strand Of The Telomere 169
## Processive Synthesis On The Lagging Strand 169
## Prolactin Receptor Signaling 169
## Prolonged Erk Activation Events 169
## Propionyl Coa Catabolism 169
## Prostacyclin Signalling Through Prostacyclin Receptor 169
## Prostanoid Ligand Receptors 169
## Protein Methylation 169
## Protein Protein Interactions At Synapses 169
## Protein Ubiquitination 169
## Proton Coupled Monocarboxylate Transport 169
## Pten Regulation 169
## Ptk6 Expression 169
## Ptk6 Regulates Proteins Involved In Rna Processing 169
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 169
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 169
## Purine Catabolism 169
## Purine Ribonucleoside Monophosphate Biosynthesis 169
## Pyrimidine Catabolism 169
## Pyrimidine Salvage 169
## Pyruvate Metabolism 169
## Pyruvate Metabolism And Citric Acid Tca Cycle 169
## Ra Biosynthesis Pathway 169
## Rap1 Signalling 169
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 169
## Ras Processing 169
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 169
## Reactions Specific To The Complex N Glycan Synthesis Pathway 169
## Receptor Type Tyrosine Protein Phosphatases 169
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 169
## Recognition Of Dna Damage By Pcna Containing Replication Complex 169
## Recycling Of Bile Acids And Salts 169
## Recycling Of Eif2 Gdp 169
## Reduction Of Cytosolic Ca Levels 169
## Reelin Signalling Pathway 169
## Regulated Proteolysis Of P75ntr 169
## Regulation Of Bach1 Activity 169
## Regulation Of Beta Cell Development 169
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 169
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 169
## Regulation Of Expression Of Slits And Robos 169
## Regulation Of Fzd By Ubiquitination 169
## Regulation Of Gene Expression By Hypoxia Inducible Factor 169
## Regulation Of Gene Expression In Beta Cells 169
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 169
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 169
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 169
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 169
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 169
## Regulation Of Innate Immune Responses To Cytosolic Dna 169
## Regulation Of Insulin Secretion 169
## Regulation Of Localization Of Foxo Transcription Factors 169
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 169
## Regulation Of Pten Gene Transcription 169
## Regulation Of Pten Localization 169
## Regulation Of Pten Mrna Translation 169
## Regulation Of Pten Stability And Activity 169
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 169
## Regulation Of Ras By Gaps 169
## Regulation Of Signaling By Cbl 169
## Regulation Of Signaling By Nodal 169
## Regulation Of Tp53 Activity Through Acetylation 169
## Regulation Of Tp53 Activity Through Association With Co Factors 169
## Relaxin Receptors 169
## Release Of Apoptotic Factors From The Mitochondria 169
## Release Of Hh Np From The Secreting Cell 169
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 169
## Resolution Of Abasic Sites Ap Sites 169
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 169
## Respiratory Electron Transport 169
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 169
## Response Of Eif2ak1 Hri To Heme Deficiency 169
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 169
## Response Of Mtb To Phagocytosis 169
## Response To Metal Ions 169
## Retinoid Cycle Disease Events 169
## Retrograde Neurotrophin Signalling 169
## Reversible Hydration Of Carbon Dioxide 169
## Rho Gtpases Activate Cit 169
## Rho Gtpases Activate Pkns 169
## Rho Gtpases Activate Rhotekin And Rhophilins 169
## Rho Gtpases Activate Rocks 169
## Rhobtb Gtpase Cycle 169
## Rhobtb1 Gtpase Cycle 169
## Rhobtb2 Gtpase Cycle 169
## Rhobtb3 Atpase Cycle 169
## Rhot1 Gtpase Cycle 169
## Rna Polymerase I Promoter Escape 169
## Rna Polymerase I Transcription 169
## Rna Polymerase I Transcription Initiation 169
## Rna Polymerase I Transcription Termination 169
## Rna Polymerase Ii Transcribes Snrna Genes 169
## Rna Polymerase Ii Transcription Termination 169
## Rna Polymerase Iii Chain Elongation 169
## Rna Polymerase Iii Transcription 169
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 169
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 169
## Rna Polymerase Iii Transcription Termination 169
## Robo Receptors Bind Akap5 169
## Role Of Abl In Robo Slit Signaling 169
## Role Of Lat2 Ntal Lab On Calcium Mobilization 169
## Role Of Phospholipids In Phagocytosis 169
## Role Of Second Messengers In Netrin 1 Signaling 169
## Rora Activates Gene Expression 169
## Rrna Modification In The Mitochondrion 169
## Rrna Modification In The Nucleus And Cytosol 169
## Rrna Processing 169
## Rrna Processing In The Mitochondrion 169
## Rsk Activation 169
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 169
## Runx1 Regulates Estrogen Receptor Mediated Transcription 169
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 169
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 169
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 169
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 169
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 169
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 169
## Runx3 Regulates Bcl2l11 Bim Transcription 169
## Runx3 Regulates Cdkn1a Transcription 169
## Runx3 Regulates Immune Response And Cell Migration 169
## Runx3 Regulates Notch Signaling 169
## Runx3 Regulates P14 Arf 169
## Runx3 Regulates Yap1 Mediated Transcription 169
## Sars Cov 1 Genome Replication And Transcription 169
## Sars Cov 1 Infection 169
## Sars Cov 2 Infection 169
## Scavenging By Class F Receptors 169
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 169
## Selenoamino Acid Metabolism 169
## Sema3a Pak Dependent Axon Repulsion 169
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 169
## Sema4d In Semaphorin Signaling 169
## Sema4d Induced Cell Migration And Growth Cone Collapse 169
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 169
## Sensory Processing Of Sound 169
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 169
## Separation Of Sister Chromatids 169
## Serine Biosynthesis 169
## Serotonin And Melatonin Biosynthesis 169
## Serotonin Neurotransmitter Release Cycle 169
## Serotonin Receptors 169
## Shc Mediated Cascade Fgfr1 169
## Shc Mediated Cascade Fgfr3 169
## Shc Mediated Cascade Fgfr4 169
## Shc Related Events Triggered By Igf1r 169
## Shc1 Events In Erbb4 Signaling 169
## Signal Attenuation 169
## Signaling By Activin 169
## Signaling By Bmp 169
## Signaling By Ctnnb1 Phospho Site Mutants 169
## Signaling By Erythropoietin 169
## Signaling By Fgfr2 Iiia Tm 169
## Signaling By Fgfr2 In Disease 169
## Signaling By Fgfr3 Fusions In Cancer 169
## Signaling By Fgfr4 In Disease 169
## Signaling By Flt3 Fusion Proteins 169
## Signaling By Flt3 Itd And Tkd Mutants 169
## Signaling By Hedgehog 169
## Signaling By Lrp5 Mutants 169
## Signaling By Mapk Mutants 169
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 169
## Signaling By Mras Complex Mutants 169
## Signaling By Mst1 169
## Signaling By Nodal 169
## Signaling By Notch1 Hd Domain Mutants In Cancer 169
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 169
## Signaling By Notch4 169
## Signaling By Retinoic Acid 169
## Signaling By Rnf43 Mutants 169
## Signaling By Tgf Beta Receptor Complex In Cancer 169
## Signaling By Wnt In Cancer 169
## Signalling To P38 Via Rit And Rin 169
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 169
## Slc Mediated Transmembrane Transport 169
## Slc Transporter Disorders 169
## Small Interfering Rna Sirna Biogenesis 169
## Smooth Muscle Contraction 169
## Snrnp Assembly 169
## Sodium Calcium Exchangers 169
## Sodium Coupled Phosphate Cotransporters 169
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 169
## Sodium Proton Exchangers 169
## Sos Mediated Signalling 169
## Sperm Motility And Taxes 169
## Sphingolipid De Novo Biosynthesis 169
## Sphingolipid Metabolism 169
## Srp Dependent Cotranslational Protein Targeting To Membrane 169
## Stat5 Activation 169
## Stat5 Activation Downstream Of Flt3 Itd Mutants 169
## Striated Muscle Contraction 169
## Sulfide Oxidation To Sulfate 169
## Sulfur Amino Acid Metabolism 169
## Sumo Is Conjugated To E1 Uba2 Sae1 169
## Sumo Is Proteolytically Processed 169
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 169
## Sumoylation Of Chromatin Organization Proteins 169
## Sumoylation Of Dna Damage Response And Repair Proteins 169
## Sumoylation Of Dna Replication Proteins 169
## Sumoylation Of Intracellular Receptors 169
## Sumoylation Of Rna Binding Proteins 169
## Sumoylation Of Sumoylation Proteins 169
## Sumoylation Of Transcription Factors 169
## Sumoylation Of Ubiquitinylation Proteins 169
## Suppression Of Apoptosis 169
## Suppression Of Phagosomal Maturation 169
## Surfactant Metabolism 169
## Switching Of Origins To A Post Replicative State 169
## Synaptic Adhesion Like Molecules 169
## Syndecan Interactions 169
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 169
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 169
## Synthesis Of 5 Eicosatetraenoic Acids 169
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 169
## Synthesis Of Bile Acids And Bile Salts 169
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 169
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 169
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 169
## Synthesis Of Diphthamide Eef2 169
## Synthesis Of Dolichyl Phosphate 169
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 169
## Synthesis Of Gdp Mannose 169
## Synthesis Of Glycosylphosphatidylinositol Gpi 169
## Synthesis Of Ip2 Ip And Ins In The Cytosol 169
## Synthesis Of Ip3 And Ip4 In The Cytosol 169
## Synthesis Of Ketone Bodies 169
## Synthesis Of Leukotrienes Lt And Eoxins Ex 169
## Synthesis Of Lipoxins Lx 169
## Synthesis Of Pa 169
## Synthesis Of Pc 169
## Synthesis Of Pe 169
## Synthesis Of Pg 169
## Synthesis Of Pi 169
## Synthesis Of Pips At The Early Endosome Membrane 169
## Synthesis Of Pips At The Er Membrane 169
## Synthesis Of Pips At The Golgi Membrane 169
## Synthesis Of Pips At The Late Endosome Membrane 169
## Synthesis Of Pyrophosphates In The Cytosol 169
## Synthesis Of Udp N Acetyl Glucosamine 169
## Synthesis Of Very Long Chain Fatty Acyl Coas 169
## Synthesis Of Wybutosine At G37 Of Trna Phe 169
## Synthesis Secretion And Deacylation Of Ghrelin 169
## Tachykinin Receptors Bind Tachykinins 169
## Tbc Rabgaps 169
## Telomere C Strand Lagging Strand Synthesis 169
## Telomere C Strand Synthesis Initiation 169
## Terminal Pathway Of Complement 169
## Termination Of Translesion Dna Synthesis 169
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 169
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 169
## Tgf Beta Receptor Signaling Activates Smads 169
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 169
## The Activation Of Arylsulfatases 169
## The Canonical Retinoid Cycle In Rods Twilight Vision 169
## The Citric Acid Tca Cycle And Respiratory Electron Transport 169
## The Fatty Acid Cycling Model 169
## The Phototransduction Cascade 169
## The Retinoid Cycle In Cones Daylight Vision 169
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 169
## Thromboxane Signalling Through Tp Receptor 169
## Thyroxine Biosynthesis 169
## Tie2 Signaling 169
## Tight Junction Interactions 169
## Toxicity Of Botulinum Toxin Type D Botd 169
## Tp53 Regulates Metabolic Genes 169
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 169
## Tp53 Regulates Transcription Of Death Receptors And Ligands 169
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 169
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 169
## Trafficking Of Ampa Receptors 169
## Trafficking Of Glur2 Containing Ampa Receptors 169
## Trafficking Of Myristoylated Proteins To The Cilium 169
## Trail Signaling 169
## Trans Golgi Network Vesicle Budding 169
## Transcription Coupled Nucleotide Excision Repair Tc Ner 169
## Transcription Of The Hiv Genome 169
## Transcriptional Regulation By E2f6 169
## Transcriptional Regulation By Small Rnas 169
## Transcriptional Regulation Of Testis Differentiation 169
## Transferrin Endocytosis And Recycling 169
## Translation 169
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 169
## Translation Of Sars Cov 1 Structural Proteins 169
## Translation Of Sars Cov 2 Structural Proteins 169
## Translesion Synthesis By Polh 169
## Translesion Synthesis By Polk 169
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 169
## Transport And Synthesis Of Paps 169
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 169
## Transport Of Connexons To The Plasma Membrane 169
## Transport Of Fatty Acids 169
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 169
## Transport Of Mature Mrnas Derived From Intronless Transcripts 169
## Transport Of Mature Transcript To Cytoplasm 169
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 169
## Transport Of Nucleotide Sugars 169
## Transport Of Organic Anions 169
## Transport Of The Slbp Dependant Mature Mrna 169
## Transport Of Vitamins Nucleosides And Related Molecules 169
## Triglyceride Biosynthesis 169
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 169
## Trna Aminoacylation 169
## Trna Modification In The Mitochondrion 169
## Trna Modification In The Nucleus And Cytosol 169
## Trna Processing 169
## Trna Processing In The Mitochondrion 169
## Trna Processing In The Nucleus 169
## Trp Channels 169
## Tryptophan Catabolism 169
## Type I Hemidesmosome Assembly 169
## Tyrosine Catabolism 169
## Tysnd1 Cleaves Peroxisomal Proteins 169
## Ubiquinol Biosynthesis 169
## Uch Proteinases 169
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 169
## Unwinding Of Dna 169
## Uptake And Actions Of Bacterial Toxins 169
## Uptake And Function Of Anthrax Toxins 169
## Uptake And Function Of Diphtheria Toxin 169
## Urea Cycle 169
## Vasopressin Like Receptors 169
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 169
## Vegf Ligand Receptor Interactions 169
## Viral Messenger Rna Synthesis 169
## Vitamin B1 Thiamin Metabolism 169
## Vitamin B2 Riboflavin Metabolism 169
## Vitamin B5 Pantothenate Metabolism 169
## Vitamin C Ascorbate Metabolism 169
## Vitamin D Calciferol Metabolism 169
## Vitamins 169
## Vldl Assembly 169
## Vldl Clearance 169
## Voltage Gated Potassium Channels 169
## Vxpx Cargo Targeting To Cilium 169
## Wax And Plasmalogen Biosynthesis 169
## Wnt Mediated Activation Of Dvl 169
## Xenobiotics 169
## Zinc Efflux And Compartmentalization By The Slc30 Family 169
## Zinc Influx Into Cells By The Slc39 Gene Family 169
## Zinc Transporters 169
## geneset
## Cytokine Signaling In Immune System 719
## Signaling By Interleukins 463
## Innate Immune System 1117
## Interleukin 10 Signaling 46
## Interleukin 4 And Interleukin 13 Signaling 111
## Chemokine Receptors Bind Chemokines 58
## Peptide Ligand Binding Receptors 198
## Toll Like Receptor Cascades 155
## Signaling By Gpcr 698
## Class A 1 Rhodopsin Like Receptors 331
## Toll Like Receptor Tlr1 Tlr2 Cascade 103
## Gpcr Ligand Binding 463
## Interleukin 1 Family Signaling 140
## G Alpha I Signalling Events 314
## Neutrophil Degranulation 479
## Toll Like Receptor 9 Tlr9 Cascade 94
## Adaptive Immune System 825
## Myd88 Independent Tlr4 Cascade 97
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 56
## Diseases Of Immune System 31
## Death Receptor Signalling 141
## Leishmania Infection 308
## Irak4 Deficiency Tlr2 4 18
## Extra Nuclear Estrogen Signaling 75
## Nod1 2 Signaling Pathway 36
## Regulation Of Tlr By Endogenous Ligand 21
## Complement Cascade 115
## Purinergic Signaling In Leishmaniasis Infection 26
## Programmed Cell Death 208
## Interleukin 17 Signaling 71
## Tnfr2 Non Canonical Nf Kb Pathway 101
## Tnfs Bind Their Physiological Receptors 29
## Interleukin 1 Signaling 102
## Costimulation By The Cd28 Family 74
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 32
## Negative Regulation Of The Pi3k Akt Network 113
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 191
## Regulated Necrosis 56
## Ovarian Tumor Domain Proteases 38
## Extracellular Matrix Organization 301
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 22
## P75 Ntr Receptor Mediated Signalling 97
## Antigen Processing Cross Presentation 106
## Heme Signaling 48
## Pyroptosis 27
## Deubiquitination 298
## Infectious Disease 924
## Activation Of Matrix Metalloproteinases 33
## Post Translational Protein Modification 1435
## P75ntr Signals Via Nf Kb 16
## Esr Mediated Signaling 221
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 17
## Fibronectin Matrix Formation 6
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 18
## Pi3k Akt Signaling In Cancer 105
## Beta Defensins 42
## Ctla4 Inhibitory Signaling 21
## Inflammasomes 21
## Interleukin 2 Family Signaling 44
## Dap12 Interactions 45
## Interleukin 18 Signaling 8
## Activated Tak1 Mediates P38 Mapk Activation 23
## Constitutive Signaling By Aberrant Pi3k In Cancer 78
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 24
## Mapk Family Signaling Cascades 327
## Cd163 Mediating An Anti Inflammatory Response 9
## Interleukin 1 Processing 9
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 26
## Defensins 52
## Apoptosis 179
## Interleukin 12 Family Signaling 57
## Interleukin 6 Signaling 11
## Signaling By Nuclear Receptors 297
## Antimicrobial Peptides 97
## Cd28 Dependent Vav1 Pathway 12
## Killing Mechanisms 12
## Intracellular Signaling By Second Messengers 307
## Cell Surface Interactions At The Vascular Wall 194
## Cd28 Co Stimulation 33
## Collagen Degradation 64
## P75ntr Recruits Signalling Complexes 13
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 13
## Hemostasis 678
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 394
## Caspase Activation Via Death Receptors In The Presence Of Ligand 16
## The Nlrp3 Inflammasome 16
## Gab1 Signalosome 17
## Rip Mediated Nfkb Activation Via Zbp1 17
## Transcriptional Regulation By Runx2 120
## Signaling By Scf Kit 43
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 124
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 81
## Signaling By Receptor Tyrosine Kinases 504
## Rna Polymerase Ii Transcription 1374
## Signaling By Kit In Disease 20
## Zbp1 Dai Mediated Induction Of Type I Ifns 21
## Signaling By Egfr 50
## Eph Ephrin Mediated Repulsion Of Cells 51
## Degradation Of The Extracellular Matrix 140
## Eph Ephrin Signaling 92
## Interferon Gamma Signaling 93
## Ikk Complex Recruitment Mediated By Rip1 23
## Cellular Senescence 198
## Rac3 Gtpase Cycle 94
## Cellular Responses To External Stimuli 706
## Signaling By Ptk6 54
## Platelet Activation Signaling And Aggregation 261
## Interleukin 6 Family Signaling 24
## Traf6 Mediated Nf Kb Activation 24
## Vesicle Mediated Transport 724
## Rhoq Gtpase Cycle 59
## Assembly Of Collagen Fibrils And Other Multimeric Structures 61
## Cargo Recognition For Clathrin Mediated Endocytosis 105
## Cytosolic Sensors Of Pathogen Associated Dna 63
## Pd 1 Signaling 28
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 7
## Dap12 Signaling 29
## Downstream Signal Transduction 29
## Senescence Associated Secretory Phenotype Sasp 112
## Tnfr1 Induced Nfkappab Signaling Pathway 30
## Activation Of C3 And C5 8
## Egfr Downregulation 31
## Mapk Targets Nuclear Events Mediated By Map Kinases 31
## Runx2 Regulates Genes Involved In Cell Migration 8
## Egfr Interacts With Phospholipase C Gamma 9
## Egfr Transactivation By Gastrin 9
## Interleukin 9 Signaling 9
## Trif Mediated Programmed Cell Death 9
## Negative Regulators Of Ddx58 Ifih1 Signaling 34
## Regulation Of Tnfr1 Signaling 35
## Rhog Gtpase Cycle 74
## Activation Of The Ap 1 Family Of Transcription Factors 10
## Interleukin 21 Signaling 10
## Mapk3 Erk1 Activation 10
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 10
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 38
## Apoptotic Cleavage Of Cell Adhesion Proteins 11
## Initial Triggering Of Complement 80
## Interleukin 27 Signaling 11
## Receptor Mediated Mitophagy 11
## Response To Elevated Platelet Cytosolic Ca2 132
## Selective Autophagy 82
## Gp1b Ix V Activation Signalling 12
## Interleukin 35 Signalling 12
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 12
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 12
## Nervous System Development 580
## C Type Lectin Receptors Clrs 140
## Interferon Signaling 203
## Apoptosis Induced Dna Fragmentation 13
## Erbb2 Activates Ptk6 Signaling 13
## Nf Kb Is Activated And Signals Survival 13
## Rac2 Gtpase Cycle 88
## Tnfr1 Induced Proapoptotic Signaling 13
## Trafficking And Processing Of Endosomal Tlr 13
## Tnf Signaling 44
## Clathrin Mediated Endocytosis 145
## Collagen Formation 90
## Transcriptional Regulation Of Granulopoiesis 90
## Dcc Mediated Attractive Signaling 14
## Early Phase Of Hiv Life Cycle 14
## Interleukin 15 Signaling 14
## Shc1 Events In Egfr Signaling 14
## Mapk6 Mapk4 Signaling 93
## Interleukin 12 Signaling 47
## Constitutive Signaling By Egfrviii 15
## Erbb2 Regulates Cell Motility 15
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 15
## P130cas Linkage To Mapk Signaling For Integrins 15
## Signaling By Notch3 49
## Ub Specific Processing Proteases 221
## Binding And Uptake Of Ligands By Scavenger Receptors 98
## Netrin 1 Signaling 50
## Signaling By Erbb2 50
## Grb2 Events In Erbb2 Signaling 16
## Pi3k Events In Erbb2 Signaling 16
## Signal Regulatory Protein Family Interactions 16
## Signaling By Erbb2 Ecd Mutants 16
## Sumoylation Of Dna Methylation Proteins 16
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 16
## Cdc42 Gtpase Cycle 159
## Clec7a Dectin 1 Signaling 100
## Class I Mhc Mediated Antigen Processing Presentation 377
## Apoptotic Execution Phase 52
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 17
## Intrinsic Pathway For Apoptosis 55
## Rhoj Gtpase Cycle 55
## Signaling By Cytosolic Fgfr1 Fusion Mutants 18
## Signaling By Vegf 106
## Transcriptional Regulation By Runx1 239
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 19
## Other Semaphorin Interactions 19
## Scavenging By Class A Receptors 19
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 19
## Signaling By Erbb4 58
## Signaling By Pdgf 58
## Signaling By Pdgfr In Disease 20
## Interleukin 37 Signaling 21
## Signal Transduction By L1 21
## Cd28 Dependent Pi3k Akt Signaling 22
## Rac1 Gtpase Cycle 184
## Shc1 Events In Erbb2 Signaling 22
## Foxo Mediated Transcription 66
## Raf Independent Mapk1 3 Activation 23
## Growth Hormone Receptor Signaling 24
## Runx2 Regulates Osteoblast Differentiation 24
## Circadian Clock 70
## Inactivation Of Csf3 G Csf Signaling 25
## Notch3 Activation And Transmission Of Signal To The Nucleus 25
## Rhob Gtpase Cycle 70
## Scavenging Of Heme From Plasma 69
## Signaling By Egfr In Cancer 25
## Interleukin 20 Family Signaling 26
## Signaling By Erbb2 In Cancer 26
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 27
## G0 And Early G1 27
## Integrin Signaling 27
## Interferon Alpha Beta Signaling 73
## Interleukin Receptor Shc Signaling 27
## Membrane Trafficking 629
## Rhoc Gtpase Cycle 74
## Signaling By Ntrks 134
## Vegfr2 Mediated Vascular Permeability 27
## Cell Death Signalling Via Nrage Nrif And Nade 76
## Developmental Biology 1143
## Downregulation Of Erbb2 Signaling 29
## Mitophagy 29
## Ripk1 Mediated Regulated Necrosis 29
## G Alpha Q Signalling Events 216
## Signaling By Csf3 G Csf 30
## Fgfr1 Mutant Receptor Activation 31
## Nicotinate Metabolism 31
## Runx2 Regulates Bone Development 31
## Perk Regulates Gene Expression 32
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 32
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 223
## Mitotic G1 Phase And G1 S Transition 149
## Autophagy 151
## Cargo Concentration In The Er 33
## Plasma Lipoprotein Clearance 33
## Fceri Mediated Mapk Activation 87
## Gpvi Mediated Activation Cascade 35
## Regulation Of Tp53 Expression And Degradation 37
## Rhoh Gtpase Cycle 37
## Apoptotic Cleavage Of Cellular Proteins 38
## Fcgr3a Mediated Il10 Synthesis 95
## Signaling By Fgfr1 In Disease 38
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 38
## Ngf Stimulated Transcription 39
## Platelet Aggregation Plug Formation 39
## Map2k And Mapk Activation 40
## Signaling By Notch 247
## Alternative Complement Activation 5
## Fasl Cd95l Signaling 5
## G2 M Dna Replication Checkpoint 5
## Galactose Catabolism 5
## Hdl Clearance 5
## Mecp2 Regulates Transcription Factors 5
## Nostrin Mediated Enos Trafficking 5
## Runx1 Regulates Expression Of Components Of Tight Junctions 5
## Runx2 Regulates Chondrocyte Maturation 5
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 5
## Ephb Mediated Forward Signaling 42
## Rhof Gtpase Cycle 42
## Diseases Of Programmed Cell Death 102
## Tp53 Regulates Transcription Of Cell Death Genes 44
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 44
## Activated Ntrk3 Signals Through Pi3k 6
## Activation Of Caspases Through Apoptosome Mediated Cleavage 6
## Biosynthesis Of Epa Derived Spms 6
## Clec7a Inflammasome Pathway 6
## Nade Modulates Death Signalling 6
## Phosphorylation Of Emi1 6
## Protein Repair 6
## Ptk6 Promotes Hif1a Stabilization 6
## Ptk6 Regulates Cell Cycle 6
## Scavenging By Class B Receptors 6
## Sensing Of Dna Double Strand Breaks 6
## Signaling By Moderate Kinase Activity Braf Mutants 45
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 6
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 6
## Tnfr1 Mediated Ceramide Production 6
## Cyclin D Associated Events In G1 47
## Fc Epsilon Receptor Fceri Signaling 186
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 48
## Sumoylation 187
## Activated Ntrk2 Signals Through Fyn 7
## Activation Of Nima Kinases Nek9 Nek6 Nek7 7
## Creb Phosphorylation 7
## Defective Factor Viii Causes Hemophilia A 7
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 7
## Ikba Variant Leads To Eda Id 7
## Modulation By Mtb Of Host Immune System 7
## Parasite Infection 116
## Rhod Gtpase Cycle 51
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 8
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 8
## Hdl Assembly 8
## Inactivation Of Cdc42 And Rac1 8
## Lectin Pathway Of Complement Activation 8
## Mecp2 Regulates Transcription Of Neuronal Ligands 8
## Netrin Mediated Repulsion Signals 8
## Runx3 Regulates Wnt Signaling 8
## Smac Xiap Regulated Apoptotic Response 8
## L1cam Interactions 121
## Cytoprotection By Hmox1 124
## Tcr Signaling 124
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 9
## Downregulation Of Erbb4 Signaling 9
## E2f Enabled Inhibition Of Pre Replication Complex Formation 9
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 9
## Interleukin 23 Signaling 9
## Mapk1 Erk2 Activation 9
## Oas Antiviral Response 9
## Oxidative Stress Induced Senescence 126
## Nrage Signals Death Through Jnk 59
## Akt Phosphorylates Targets In The Nucleus 10
## Camk Iv Mediated Phosphorylation Of Creb 10
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 10
## Chylomicron Assembly 10
## Chylomicron Remodeling 10
## Hdl Remodeling 10
## Mastl Facilitates Mitotic Progression 10
## P75ntr Regulates Axonogenesis 10
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 10
## Regulation Of Foxo Transcriptional Activity By Acetylation 10
## Nuclear Events Kinase And Transcription Factor Activation 61
## Ca2 Pathway 62
## Tp53 Regulates Transcription Of Dna Repair Genes 62
## Condensation Of Prometaphase Chromosomes 11
## Dermatan Sulfate Biosynthesis 11
## Dscam Interactions 11
## Endosomal Vacuolar Pathway 11
## Enos Activation 11
## Ncam Signaling For Neurite Out Growth 63
## Pexophagy 11
## Regulation By C Flip 11
## Rho Gtpases Activate Ktn1 11
## Signaling By Fgfr In Disease 63
## Signaling By Leptin 11
## Sumoylation Of Immune Response Proteins 11
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 11
## Transcriptional Regulation By Mecp2 63
## Semaphorin Interactions 64
## Dna Methylation 65
## Signaling By Braf And Raf Fusions 65
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 12
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 12
## Interleukin 2 Signaling 12
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 12
## Notch2 Intracellular Domain Regulates Transcription 12
## Pecam1 Interactions 12
## Tandem Pore Domain Potassium Channels 12
## Ticam1 Dependent Activation Of Irf3 Irf7 12
## Vldlr Internalisation And Degradation 12
## Fcgamma Receptor Fcgr Dependent Phagocytosis 143
## Copii Mediated Vesicle Transport 68
## Tcf Dependent Signaling In Response To Wnt 234
## Advanced Glycosylation Endproduct Receptor Signaling 13
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 13
## Cytochrome C Mediated Apoptotic Response 13
## Dissolution Of Fibrin Clot 13
## Irf3 Mediated Induction Of Type I Ifn 13
## P38mapk Events 13
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 13
## Purine Salvage 13
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 13
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 13
## Epigenetic Regulation Of Gene Expression 148
## Creation Of C4 And C2 Activators 71
## Plasma Lipoprotein Assembly Remodeling And Clearance 71
## Rhoa Gtpase Cycle 149
## Golgi Cisternae Pericentriolar Stack Reorganization 14
## Irak1 Recruits Ikk Complex 14
## Regulation Of Ifng Signaling 14
## Repression Of Wnt Target Genes 14
## Traf3 Dependent Irf Activation Pathway 14
## Prc2 Methylates Histones And Dna 73
## Regulation Of Runx2 Expression And Activity 73
## Signaling By Tgf Beta Receptor Complex 73
## Depolymerisation Of The Nuclear Lamina 15
## Er To Golgi Anterograde Transport 155
## Heme Degradation 15
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 15
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 15
## Platelet Adhesion To Exposed Collagen 15
## Rho Gtpase Cycle 444
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 15
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 15
## Wnt5a Dependent Internalization Of Fzd4 15
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 15
## Abc Transporter Disorders 77
## Cellular Response To Chemical Stress 160
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 16
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 16
## Dna Double Strand Break Response 78
## Foxo Mediated Transcription Of Cell Death Genes 16
## Nrif Signals Cell Death From The Nucleus 16
## Regulation Of Kit Signaling 16
## Rmts Methylate Histone Arginines 79
## Signaling By Met 79
## Spry Regulation Of Fgf Signaling 16
## Sting Mediated Induction Of Host Immune Responses 16
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 16
## Abc Transporters In Lipid Homeostasis 18
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 17
## Antiviral Mechanism By Ifn Stimulated Genes 82
## Crosslinking Of Collagen Fibrils 18
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 17
## Diseases Associated With Glycosylation Precursor Biosynthesis 18
## Foxo Mediated Transcription Of Cell Cycle Genes 17
## Mecp2 Regulates Neuronal Receptors And Channels 18
## Oncogenic Mapk Signaling 82
## Regulation Of Hsf1 Mediated Heat Shock Response 82
## Regulation Of Runx1 Expression And Activity 17
## Signaling By Ntrk3 Trkc 17
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 18
## Transcriptional Regulation Of White Adipocyte Differentiation 84
## Apoptotic Factor Mediated Response 20
## Biosynthesis Of Specialized Proresolving Mediators Spms 19
## Cyclin A Cdk2 Associated Events At S Phase Entry 85
## Ephrin Signaling 19
## G Beta Gamma Signalling Through Cdc42 20
## Initiation Of Nuclear Envelope Ne Reformation 19
## Integrin Cell Surface Interactions 85
## Ldl Clearance 19
## Listeria Monocytogenes Entry Into Host Cells 20
## Meiotic Recombination 87
## Nicotinamide Salvaging 19
## Phase 4 Resting Membrane Potential 19
## Phosphorylation Of The Apc C 20
## Pka Mediated Phosphorylation Of Creb 20
## Plasma Lipoprotein Assembly 19
## Regulation Of Tp53 Activity Through Methylation 19
## Signaling By Hippo 20
## Signalling To Ras 20
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 20
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 20
## Transcription Of E2f Targets Under Negative Control By Dream Complex 19
## Vegfr2 Mediated Cell Proliferation 19
## Branched Chain Amino Acid Catabolism 21
## Formation Of The Beta Catenin Tcf Transactivating Complex 92
## Rho Gtpases Activate Paks 21
## Unfolded Protein Response Upr 92
## Activation Of Nmda Receptors And Postsynaptic Events 94
## Chaperone Mediated Autophagy 22
## Class B 2 Secretin Family Receptors 94
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 22
## E2f Mediated Regulation Of Dna Replication 22
## G2 M Dna Damage Checkpoint 95
## Incretin Synthesis Secretion And Inactivation 23
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 22
## Intrinsic Pathway Of Fibrin Clot Formation 23
## Long Term Potentiation 23
## Nucleotide Salvage 23
## Pink1 Prkn Mediated Mitophagy 22
## Telomere Extension By Telomerase 23
## Termination Of O Glycan Biosynthesis 23
## Transcriptional Regulation By Runx3 96
## Transport To The Golgi And Subsequent Modification 186
## Apc C Cdc20 Mediated Degradation Of Cyclin B 24
## Cellular Response To Heat Stress 101
## Metabolism Of Vitamins And Cofactors 189
## Other Interleukin Signaling 24
## Rho Gtpases Activate Nadph Oxidases 24
## Triglyceride Catabolism 24
## Abc Family Proteins Mediated Transport 103
## Adp Signalling Through P2y Purinoceptor 1 25
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 25
## Basigin Interactions 25
## Constitutive Signaling By Akt1 E17k In Cancer 26
## Copi Mediated Anterograde Transport 102
## Cyclin A B1 B2 Associated Events During G2 M Transition 25
## Dectin 2 Family 26
## Notch3 Intracellular Domain Regulates Transcription 25
## Regulation Of Ifna Signaling 26
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 26
## Signaling By Ntrk2 Trkb 25
## Signaling By Tgfb Family Members 102
## Wnt Ligand Biogenesis And Trafficking 26
## Asparagine N Linked Glycosylation 305
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 27
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 28
## Infection With Mycobacterium Tuberculosis 27
## Metabolism Of Porphyrins 27
## Amyloid Fiber Formation 110
## Epha Mediated Growth Cone Collapse 29
## G1 S Specific Transcription 29
## Myogenesis 29
## Negative Epigenetic Regulation Of Rrna Expression 109
## Negative Regulation Of Fgfr3 Signaling 29
## Traf6 Mediated Irf7 Activation 29
## Activation Of Bh3 Only Proteins 30
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 31
## Met Activates Ptk2 Signaling 30
## Negative Regulation Of Fgfr4 Signaling 31
## Transcriptional Regulation Of Pluripotent Stem Cells 31
## G Protein Beta Gamma Signalling 32
## Meiosis 119
## Negative Regulation Of Fgfr1 Signaling 33
## Nuclear Signaling By Erbb4 32
## Plasma Lipoprotein Remodeling 32
## Regulation Of Mecp2 Expression And Activity 32
## Rho Gtpase Effectors 324
## Rho Gtpases Activate Iqgaps 32
## Rhov Gtpase Cycle 33
## Sialic Acid Metabolism 33
## Signal Amplification 33
## Signaling By Notch2 33
## Signaling By Robo Receptors 218
## Thrombin Signalling Through Proteinase Activated Receptors Pars 32
## Late Endosomal Microautophagy 34
## Metabolism Of Water Soluble Vitamins And Cofactors 123
## Negative Regulation Of Fgfr2 Signaling 34
## Oncogene Induced Senescence 35
## Raf Activation 34
## Resolution Of D Loop Structures 34
## Rhou Gtpase Cycle 34
## Signaling By Wnt 331
## Signalling To Erks 34
## Ca Dependent Events 37
## Hdr Through Single Strand Annealing Ssa 37
## Interleukin 7 Signaling 36
## Metalloprotease Dubs 37
## Mhc Class Ii Antigen Presentation 126
## Nuclear Pore Complex Npc Disassembly 36
## Rho Gtpases Activate Wasps And Waves 36
## Ros And Rns Production In Phagocytes 36
## Cell Cell Communication 130
## Diseases Of Mitotic Cell Cycle 38
## Triglyceride Metabolism 38
## Adora2b Mediated Anti Inflammatory Cytokines Production 133
## Association Of Tric Cct With Target Proteins During Biosynthesis 39
## Formation Of Fibrin Clot Clotting Cascade 39
## Generation Of Second Messenger Molecules 39
## Ret Signaling 40
## Signaling By Fgfr3 40
## Dag And Ip3 Signaling 41
## Hcmv Early Events 138
## Homologous Dna Pairing And Strand Exchange 42
## Met Promotes Cell Motility 41
## Rnd1 Gtpase Cycle 42
## Rnd3 Gtpase Cycle 42
## Signaling By Fgfr4 41
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 717
## Transcriptional Regulation By Ventx 41
## Aggrephagy 44
## Rho Gtpases Activate Formins 140
## Rnd2 Gtpase Cycle 43
## Sumoylation Of Transcription Cofactors 43
## Transcriptional Regulation By Tp53 363
## Beta Catenin Independent Wnt Signaling 146
## Diseases Of Glycosylation 143
## Elastic Fibre Formation 45
## Reproduction 145
## Estrogen Dependent Gene Expression 150
## Hiv Life Cycle 149
## Irs Mediated Signalling 48
## Metabolism Of Fat Soluble Vitamins 48
## Notch1 Intracellular Domain Regulates Transcription 48
## Chondroitin Sulfate Dermatan Sulfate Metabolism 50
## Recycling Pathway Of L1 49
## Retrograde Transport At The Trans Golgi Network 49
## Signaling By Fgfr1 50
## Tp53 Regulates Transcription Of Cell Cycle Genes 49
## Extension Of Telomeres 51
## Gap Junction Trafficking And Regulation 51
## Chromatin Modifying Enzymes 274
## G Protein Mediated Events 54
## Insulin Receptor Signalling Cascade 54
## Nuclear Envelope Breakdown 53
## Regulation Of Tp53 Activity 160
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 54
## Synthesis Of Pips At The Plasma Membrane 53
## Hcmv Infection 162
## Regulation Of Runx3 Expression And Activity 55
## S Phase 162
## Transcriptional Activation Of Mitochondrial Biogenesis 55
## Dna Double Strand Break Repair 167
## G2 M Checkpoints 168
## Iron Uptake And Transport 58
## Signaling By Notch1 Pest Domain Mutants In Cancer 58
## Signaling By The B Cell Receptor Bcr 166
## Stabilization Of P53 57
## Arachidonic Acid Metabolism 59
## Scf Skp2 Mediated Degradation Of P27 P21 60
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 62
## Defective Cftr Causes Cystic Fibrosis 61
## Disorders Of Transmembrane Transporters 176
## O Linked Glycosylation Of Mucins 62
## Asymmetric Localization Of Pcp Proteins 64
## Synthesis Of Substrates In N Glycan Biosythesis 63
## Cell Cycle 693
## Hdr Through Homologous Recombination Hrr 67
## Rab Geranylgeranylation 65
## Regulation Of Hmox1 Expression And Activity 65
## Diseases Associated With O Glycosylation Of Proteins 68
## Fcgr Activation 69
## G1 S Dna Damage Checkpoints 68
## Nonhomologous End Joining Nhej 69
## Sirt1 Negatively Regulates Rrna Expression 68
## Aurka Activation By Tpx2 72
## Condensation Of Prophase Chromosomes 74
## Signaling By Fgfr2 73
## Signaling By Notch1 74
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 72
## Ecm Proteoglycans 76
## Nuclear Envelope Ne Reassembly 76
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 78
## Signaling By Insulin Receptor 78
## Dna Damage Telomere Stress Induced Senescence 80
## Downstream Signaling Events Of B Cell Receptor Bcr 81
## G Alpha 12 13 Signalling Events 80
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 205
## Potential Therapeutics For Sars 81
## Recruitment Of Mitotic Centrosome Proteins And Complexes 81
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 79
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 86
## Degradation Of Beta Catenin By The Destruction Complex 85
## Fceri Mediated Ca 2 Mobilization 86
## Pi Metabolism 84
## Apc C Mediated Degradation Of Cell Cycle Proteins 88
## Regulation Of Plk1 Activity At G2 M Transition 87
## Signaling By Fgfr 87
## Opioid Signalling 90
## Peptide Hormone Metabolism 90
## Rab Gefs Exchange Gtp For Gdp On Rabs 90
## Mitochondrial Biogenesis 94
## Pcp Ce Pathway 92
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 94
## Regulation Of Tp53 Activity Through Phosphorylation 92
## Anchoring Of The Basal Body To The Plasma Membrane 97
## Hiv Infection 231
## Recruitment Of Numa To Mitotic Centrosomes 95
## Metabolism Of Nucleotides 98
## Processing Of Dna Double Strand Break Ends 98
## Protein Folding 98
## Visual Phototransduction 100
## Diseases Of Metabolism 246
## Potassium Channels 103
## Stimuli Sensing Channels 106
## O Linked Glycosylation 111
## Telomere Maintenance 113
## Neuronal System 410
## Cell Cycle Mitotic 561
## Regulation Of Lipid Metabolism By Pparalpha 120
## Transmission Across Chemical Synapses 269
## Glycosaminoglycan Metabolism 124
## Rab Regulation Of Trafficking 122
## Cardiac Conduction 127
## Resolution Of Sister Chromatid Cohesion 126
## Transport Of Small Molecules 728
## Cell Cycle Checkpoints 292
## Fceri Mediated Nf Kb Activation 136
## Homology Directed Repair 138
## Metabolism Of Carbohydrates 293
## Organelle Biogenesis And Maintenance 296
## Chromosome Maintenance 140
## G Alpha S Signalling Events 144
## Mitotic Prophase 143
## Sars Cov Infections 146
## Dna Repair 332
## Protein Localization 164
## Factors Involved In Megakaryocyte Development And Platelet Production 170
## Fatty Acid Metabolism 177
## Ion Channel Transport 183
## Muscle Contraction 195
## Cilium Assembly 202
## Intra Golgi And Retrograde Golgi To Er Traffic 203
## Mitotic G2 G2 M Phases 200
## Mitotic Prometaphase 203
## Metabolism Of Lipids 741
## Phospholipid Metabolism 211
## Mitotic Metaphase And Anaphase 236
## Metabolism Of Amino Acids And Derivatives 374
## M Phase 417
## Sensory Perception 575
## 2 Ltr Circle Formation 7
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 26
## Abacavir Metabolism 5
## Abacavir Transmembrane Transport 5
## Abacavir Transport And Metabolism 10
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 20
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 23
## Acetylcholine Binding And Downstream Events 14
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 5
## Acetylcholine Neurotransmitter Release Cycle 17
## Acetylcholine Regulates Insulin Secretion 10
## Acrosome Reaction And Sperm Oocyte Membrane Binding 6
## Activated Notch1 Transmits Signal To The Nucleus 31
## Activated Ntrk2 Signals Through Cdk5 6
## Activated Ntrk2 Signals Through Frs2 And Frs3 11
## Activated Ntrk2 Signals Through Pi3k 7
## Activated Ntrk2 Signals Through Ras 9
## Activated Ntrk3 Signals Through Ras 8
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 67
## Activation Of Ampk Downstream Of Nmdars 29
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 122
## Activation Of Atr In Response To Replication Stress 37
## Activation Of Bad And Translocation To Mitochondria 15
## Activation Of Gene Expression By Srebf Srebp 42
## Activation Of Kainate Receptors Upon Glutamate Binding 30
## Activation Of Noxa And Translocation To Mitochondria 5
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 10
## Activation Of Puma And Translocation To Mitochondria 9
## Activation Of Rac1 13
## Activation Of Rac1 Downstream Of Nmdars 7
## Activation Of Ras In B Cells 5
## Activation Of Smo 18
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 60
## Activation Of The Phototransduction Cascade 11
## Activation Of The Pre Replicative Complex 33
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 12
## Activation Of Trka Receptors 6
## Acyl Chain Remodeling Of Cl 6
## Acyl Chain Remodeling Of Dag And Tag 7
## Acyl Chain Remodelling Of Pc 27
## Acyl Chain Remodelling Of Pe 29
## Acyl Chain Remodelling Of Pg 18
## Acyl Chain Remodelling Of Pi 17
## Acyl Chain Remodelling Of Ps 22
## Adenylate Cyclase Activating Pathway 10
## Adenylate Cyclase Inhibitory Pathway 14
## Adherens Junctions Interactions 33
## Adp Signalling Through P2y Purinoceptor 12 22
## Adrenaline Noradrenaline Inhibits Insulin Secretion 28
## Adrenoceptors 9
## Aflatoxin Activation And Detoxification 19
## Akt Phosphorylates Targets In The Cytosol 14
## Alpha Defensins 10
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 13
## Alpha Oxidation Of Phytanate 6
## Alpha Protein Kinase 1 Signaling Pathway 11
## Amine Ligand Binding Receptors 42
## Amino Acid Conjugation 9
## Amino Acid Transport Across The Plasma Membrane 33
## Amino Acids Regulate Mtorc1 55
## Ampk Inhibits Chrebp Transcriptional Activation Activity 8
## Anchoring Fibril Formation 15
## Androgen Biosynthesis 11
## Antigen Processing Ubiquitination Proteasome Degradation 308
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 74
## Apc Cdc20 Mediated Degradation Of Nek2a 26
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 7
## Apobec3g Mediated Resistance To Hiv 1 Infection 5
## Aquaporin Mediated Transport 52
## Arachidonate Production From Dag 5
## Arms Mediated Activation 7
## Aryl Hydrocarbon Receptor Signalling 8
## Aspartate And Asparagine Metabolism 11
## Assembly And Cell Surface Presentation Of Nmda Receptors 44
## Assembly Of Active Lpl And Lipc Lipase Complexes 19
## Assembly Of The Hiv Virion 16
## Assembly Of The Orc Complex At The Origin Of Replication 6
## Assembly Of The Pre Replicative Complex 68
## Atf6 Atf6 Alpha Activates Chaperone Genes 10
## Atf6 Atf6 Alpha Activates Chaperones 12
## Attachment And Entry 5
## Attachment Of Gpi Anchor To Upar 7
## Attenuation Phase 28
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 55
## B Wich Complex Positively Regulates Rrna Expression 91
## Base Excision Repair 91
## Base Excision Repair Ap Site Formation 63
## Bbsome Mediated Cargo Targeting To Cilium 23
## Beta Catenin Phosphorylation Cascade 17
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 5
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 6
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 5
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 5
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 5
## Beta Oxidation Of Pristanoyl Coa 9
## Beta Oxidation Of Very Long Chain Fatty Acids 11
## Bicarbonate Transporters 10
## Bile Acid And Bile Salt Metabolism 43
## Biological Oxidations 222
## Biosynthesis Of Maresin Like Spms 6
## Biosynthesis Of Maresins 8
## Biotin Transport And Metabolism 11
## Blood Group Systems Biosynthesis 21
## Budding And Maturation Of Hiv Virion 28
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 17
## Butyrophilin Btn Family Interactions 12
## Ca2 Activated K Channels 9
## Calcineurin Activates Nfat 9
## Calcitonin Like Ligand Receptors 10
## Calnexin Calreticulin Cycle 26
## Carboxyterminal Post Translational Modifications Of Tubulin 46
## Cargo Trafficking To The Periciliary Membrane 51
## Carnitine Metabolism 14
## Cation Coupled Chloride Cotransporters 7
## Cd209 Dc Sign Signaling 21
## Cd22 Mediated Bcr Regulation 61
## Cdc6 Association With The Orc Origin Complex 11
## Cell Cell Junction Organization 65
## Cell Extracellular Matrix Interactions 18
## Cell Junction Organization 92
## Cellular Hexose Transport 21
## Cellular Response To Hypoxia 75
## Cellular Response To Starvation 157
## Cgmp Effects 16
## Chl1 Interactions 9
## Cholesterol Biosynthesis 25
## Choline Catabolism 6
## Chondroitin Sulfate Biosynthesis 20
## Chrebp Activates Metabolic Gene Expression 8
## Chylomicron Clearance 5
## Citric Acid Cycle Tca Cycle 22
## Class C 3 Metabotropic Glutamate Pheromone Receptors 39
## Class I Peroxisomal Membrane Protein Import 20
## Clec7a Dectin 1 Induces Nfat Activation 11
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 21
## Coenzyme A Biosynthesis 8
## Cohesin Loading Onto Chromatin 10
## Collagen Biosynthesis And Modifying Enzymes 67
## Collagen Chain Trimerization 44
## Common Pathway Of Fibrin Clot Formation 22
## Competing Endogenous Rnas Cernas Regulate Pten Translation 8
## Complex I Biogenesis 57
## Conjugation Of Benzoate With Glycine 6
## Constitutive Signaling By Overexpressed Erbb2 11
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 20
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 38
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 33
## Copi Dependent Golgi To Er Retrograde Traffic 100
## Copi Independent Golgi To Er Retrograde Traffic 53
## Creatine Metabolism 11
## Creb3 Factors Activate Genes 9
## Cristae Formation 31
## Crmps In Sema3a Signaling 16
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 8
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 50
## Cs Ds Degradation 14
## Cyp2e1 Reactions 11
## Cytochrome P450 Arranged By Substrate Type 66
## Cytosolic Iron Sulfur Cluster Assembly 13
## Cytosolic Sulfonation Of Small Molecules 24
## Cytosolic Trna Aminoacylation 24
## Darpp 32 Events 24
## Deactivation Of The Beta Catenin Transactivating Complex 42
## Deadenylation Dependent Mrna Decay 56
## Deadenylation Of Mrna 25
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 8
## Defective B4galt7 Causes Eds Progeroid Type 20
## Defective Chst14 Causes Eds Musculocontractural Type 8
## Defective Chst3 Causes Sedcjd 8
## Defective Chst6 Causes Mcdc1 8
## Defective Chsy1 Causes Tpbs 8
## Defective Csf2rb Causes Smdp5 8
## Defective Ext2 Causes Exostoses 2 14
## Defective F9 Activation 6
## Defective Factor Ix Causes Hemophilia B 9
## Defective Lfng Causes Scdo3 5
## Defective Ripk1 Mediated Regulated Necrosis 5
## Defective St3gal3 Causes Mct12 And Eiee15 8
## Defects In Biotin Btn Metabolism 8
## Defects In Cobalamin B12 Metabolism 14
## Defects In Vitamin And Cofactor Metabolism 22
## Degradation Of Axin 55
## Degradation Of Cysteine And Homocysteine 14
## Degradation Of Dvl 57
## Degradation Of Gli1 By The Proteasome 60
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 73
## Detoxification Of Reactive Oxygen Species 37
## Digestion 23
## Digestion And Absorption 28
## Digestion Of Dietary Carbohydrate 11
## Digestion Of Dietary Lipid 7
## Diseases Associated With Glycosaminoglycan Metabolism 41
## Diseases Associated With N Glycosylation Of Proteins 17
## Diseases Associated With Surfactant Metabolism 10
## Diseases Of Base Excision Repair 5
## Diseases Of Carbohydrate Metabolism 34
## Diseases Of Dna Repair 12
## Diseases Of Mismatch Repair Mmr 5
## Disinhibition Of Snare Formation 5
## Displacement Of Dna Glycosylase By Apex1 9
## Dna Damage Bypass 48
## Dna Damage Recognition In Gg Ner 38
## Dna Damage Reversal 8
## Dna Replication 128
## Dna Replication Initiation 8
## Dna Replication Pre Initiation 85
## Dna Strand Elongation 32
## Dopamine Neurotransmitter Release Cycle 23
## Dopamine Receptors 5
## Downregulation Of Erbb2 Erbb3 Signaling 13
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 23
## Downregulation Of Tgf Beta Receptor Signaling 26
## Downstream Signaling Of Activated Fgfr1 31
## Downstream Signaling Of Activated Fgfr2 30
## Downstream Signaling Of Activated Fgfr3 25
## Downstream Signaling Of Activated Fgfr4 27
## Dual Incision In Gg Ner 41
## Dual Incision In Tc Ner 65
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 59
## Effects Of Pip2 Hydrolysis 27
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 29
## Eicosanoid Ligand Binding Receptors 15
## Eicosanoids 12
## Electric Transmission Across Gap Junctions 5
## Elevation Of Cytosolic Ca2 Levels 16
## Endogenous Sterols 28
## Endosomal Sorting Complex Required For Transport Escrt 31
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 29
## Er Quality Control Compartment Erqc 21
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 76
## Erk Mapk Targets 22
## Erks Are Inactivated 13
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 13
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 9
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 12
## Erythropoietin Activates Phospholipase C Gamma Plcg 7
## Erythropoietin Activates Ras 14
## Erythropoietin Activates Stat5 7
## Establishment Of Sister Chromatid Cohesion 11
## Estrogen Biosynthesis 6
## Estrogen Stimulated Signaling Through Prkcz 6
## Ethanol Oxidation 12
## Eukaryotic Translation Elongation 94
## Eukaryotic Translation Initiation 120
## Export Of Viral Ribonucleoproteins From Nucleus 33
## Extrinsic Pathway Of Fibrin Clot Formation 5
## Fanconi Anemia Pathway 39
## Fatty Acids 15
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 8
## Fatty Acyl Coa Biosynthesis 37
## Fbxw7 Mutants And Notch1 In Cancer 5
## Fertilization 26
## Fgfr1 Ligand Binding And Activation 16
## Fgfr1b Ligand Binding And Activation 6
## Fgfr1c Ligand Binding And Activation 12
## Fgfr2 Alternative Splicing 27
## Fgfr2 Ligand Binding And Activation 20
## Fgfr2 Mutant Receptor Activation 33
## Fgfr2b Ligand Binding And Activation 10
## Fgfr2c Ligand Binding And Activation 13
## Fgfr3 Ligand Binding And Activation 13
## Fgfr3b Ligand Binding And Activation 7
## Fgfrl1 Modulation Of Fgfr1 Signaling 13
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 5
## Flt3 Signaling 38
## Flt3 Signaling By Cbl Mutants 7
## Flt3 Signaling In Disease 28
## Flt3 Signaling Through Src Family Kinases 6
## Folding Of Actin By Cct Tric 10
## Formation Of Apoptosome 11
## Formation Of Atp By Chemiosmotic Coupling 18
## Formation Of Incision Complex In Gg Ner 43
## Formation Of Rna Pol Ii Elongation Complex 58
## Formation Of Senescence Associated Heterochromatin Foci Sahf 17
## Formation Of Tc Ner Pre Incision Complex 53
## Formation Of The Cornified Envelope 129
## Formation Of The Early Elongation Complex 33
## Formation Of Tubulin Folding Intermediates By Cct Tric 26
## Formation Of Xylulose 5 Phosphate 5
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 8
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 30
## Free Fatty Acid Receptors 5
## Free Fatty Acids Regulate Insulin Secretion 11
## Frs Mediated Fgfr1 Signaling 23
## Frs Mediated Fgfr2 Signaling 25
## Frs Mediated Fgfr3 Signaling 20
## Frs Mediated Fgfr4 Signaling 22
## Fructose Catabolism 5
## Fructose Metabolism 7
## G Alpha Z Signalling Events 48
## G Beta Gamma Signalling Through Pi3kgamma 25
## G Protein Activation 24
## G2 Phase 5
## Gaba B Receptor Activation 43
## Gaba Receptor Activation 60
## Gaba Synthesis Release Reuptake And Degradation 19
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 42
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 11
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 25
## Gap Junction Assembly 38
## Gap Junction Degradation 12
## Gdp Fucose Biosynthesis 6
## Gene Silencing By Rna 140
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 7
## Global Genome Nucleotide Excision Repair Gg Ner 84
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 42
## Glucagon Signaling In Metabolic Regulation 33
## Glucagon Type Ligand Receptors 33
## Glucocorticoid Biosynthesis 10
## Gluconeogenesis 34
## Glucose Metabolism 92
## Glucuronidation 25
## Glutamate And Glutamine Metabolism 14
## Glutamate Neurotransmitter Release Cycle 24
## Glutathione Conjugation 36
## Glutathione Synthesis And Recycling 12
## Glycerophospholipid Biosynthesis 128
## Glycerophospholipid Catabolism 7
## Glycogen Breakdown Glycogenolysis 15
## Glycogen Metabolism 27
## Glycogen Storage Diseases 16
## Glycogen Synthesis 16
## Glycolysis 72
## Glycosphingolipid Metabolism 45
## Glyoxylate Metabolism And Glycine Degradation 31
## Golgi Associated Vesicle Biogenesis 56
## Golgi To Er Retrograde Transport 134
## Grb7 Events In Erbb2 Signaling 5
## Hats Acetylate Histones 142
## Hcmv Late Events 116
## Hdacs Deacetylate Histones 94
## Hdms Demethylate Histones 50
## Hdr Through Mmej Alt Nhej 10
## Hedgehog Ligand Biogenesis 65
## Hedgehog Off State 113
## Hedgehog On State 86
## Heme Biosynthesis 14
## Heparan Sulfate Heparin Hs Gag Metabolism 55
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 9
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 11
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 7
## Histidine Catabolism 8
## Hiv Elongation Arrest And Recovery 33
## Hiv Transcription Elongation 43
## Hiv Transcription Initiation 47
## Hormone Ligand Binding Receptors 12
## Host Interactions Of Hiv Factors 131
## Hs Gag Biosynthesis 31
## Hs Gag Degradation 22
## Hsf1 Activation 31
## Hsf1 Dependent Transactivation 38
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 57
## Hur Elavl1 Binds And Stabilizes Mrna 8
## Hyaluronan Biosynthesis And Export 5
## Hyaluronan Metabolism 17
## Hyaluronan Uptake And Degradation 12
## Hydrolysis Of Lpc 9
## Il 6 Type Cytokine Receptor Ligand Interactions 17
## Influenza Infection 157
## Inhibition Of Dna Recombination At Telomere 68
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 13
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 21
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 15
## Inositol Phosphate Metabolism 48
## Insulin Processing 27
## Insulin Receptor Recycling 26
## Integration Of Energy Metabolism 108
## Integration Of Provirus 9
## Interaction Between L1 And Ankyrins 31
## Interaction With Cumulus Cells And The Zona Pellucida 11
## Interactions Of Rev With Host Cellular Proteins 37
## Interactions Of Vpr With Host Cellular Proteins 37
## Interconversion Of Nucleotide Di And Triphosphates 29
## Interleukin 36 Pathway 7
## Intestinal Absorption 5
## Intra Golgi Traffic 44
## Intraflagellar Transport 54
## Inwardly Rectifying K Channels 35
## Ion Homeostasis 54
## Ion Transport By P Type Atpases 55
## Ionotropic Activity Of Kainate Receptors 10
## Irak2 Mediated Activation Of Tak1 Complex 10
## Ire1alpha Activates Chaperones 50
## Irf3 Mediated Activation Of Type 1 Ifn 5
## Irs Activation 5
## Josephin Domain Dubs 12
## Keratan Sulfate Biosynthesis 28
## Keratan Sulfate Degradation 13
## Keratan Sulfate Keratin Metabolism 34
## Keratinization 217
## Ketone Body Metabolism 10
## Kinesins 61
## Ksrp Khsrp Binds And Destabilizes Mrna 17
## Lagging Strand Synthesis 20
## Laminin Interactions 30
## Leukotriene Receptors 5
## Lgi Adam Interactions 14
## Ligand Receptor Interactions 8
## Linoleic Acid La Metabolism 8
## Lipid Particle Organization 6
## Lipophagy 9
## Loss Of Function Of Mecp2 In Rett Syndrome 13
## Loss Of Function Of Smad2 3 In Cancer 7
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 7
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 5
## Ltc4 Cysltr Mediated Il4 Production 7
## Lysine Catabolism 12
## Lysosome Vesicle Biogenesis 35
## Lysosphingolipid And Lpa Receptors 14
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 16
## Maturation Of Nucleoprotein 10
## Maturation Of Protein 3a 9
## Maturation Of Sars Cov 1 Spike Protein 5
## Maturation Of Sars Cov 2 Spike Protein 29
## Meiotic Synapsis 79
## Melanin Biosynthesis 5
## Met Activates Pi3k Akt Signaling 6
## Met Activates Ptpn11 5
## Met Activates Rap1 And Rac1 11
## Met Activates Ras Signaling 11
## Met Interacts With Tns Proteins 5
## Met Receptor Activation 6
## Met Receptor Recycling 10
## Metabolic Disorders Of Biological Oxidation Enzymes 34
## Metabolism Of Amine Derived Hormones 18
## Metabolism Of Angiotensinogen To Angiotensins 18
## Metabolism Of Cofactors 19
## Metabolism Of Folate And Pterines 17
## Metabolism Of Ingested Semet Sec Mesec Into H2se 8
## Metabolism Of Polyamines 59
## Metabolism Of Rna 672
## Metabolism Of Steroid Hormones 35
## Metabolism Of Steroids 151
## Metal Ion Slc Transporters 26
## Metal Sequestration By Antimicrobial Proteins 6
## Metallothioneins Bind Metals 11
## Methionine Salvage Pathway 6
## Methylation 14
## Microrna Mirna Biogenesis 25
## Mineralocorticoid Biosynthesis 6
## Miro Gtpase Cycle 8
## Miscellaneous Substrates 12
## Miscellaneous Transport And Binding Events 26
## Mismatch Repair 15
## Mitochondrial Calcium Ion Transport 23
## Mitochondrial Fatty Acid Beta Oxidation 37
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 11
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 6
## Mitochondrial Iron Sulfur Cluster Biogenesis 13
## Mitochondrial Protein Import 65
## Mitochondrial Translation 96
## Mitochondrial Trna Aminoacylation 21
## Mitochondrial Uncoupling 6
## Mitotic Spindle Checkpoint 111
## Mitotic Telophase Cytokinesis 13
## Molecules Associated With Elastic Fibres 38
## Molybdenum Cofactor Biosynthesis 6
## Mrna Capping 29
## Mrna Decay By 3 To 5 Exoribonuclease 16
## Mrna Decay By 5 To 3 Exoribonuclease 15
## Mrna Editing 10
## Mrna Editing C To U Conversion 8
## Mrna Splicing 188
## Mrna Splicing Minor Pathway 52
## Mtor Signalling 41
## Mtorc1 Mediated Signalling 24
## Mucopolysaccharidoses 11
## Multifunctional Anion Exchangers 9
## Muscarinic Acetylcholine Receptors 5
## Myoclonic Epilepsy Of Lafora 9
## N Glycan Antennae Elongation 15
## N Glycan Antennae Elongation In The Medial Trans Golgi 26
## N Glycan Trimming And Elongation In The Cis Golgi 5
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 35
## Na Cl Dependent Neurotransmitter Transporters 19
## Ncam1 Interactions 42
## Nectin Necl Trans Heterodimerization 7
## Neddylation 234
## Nef And Signal Transduction 8
## Nef Mediated Cd4 Down Regulation 9
## Nef Mediated Cd8 Down Regulation 7
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 10
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 21
## Negative Feedback Regulation Of Mapk Pathway 6
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 10
## Negative Regulation Of Flt3 15
## Negative Regulation Of Mapk Pathway 43
## Negative Regulation Of Met Activity 21
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 21
## Negative Regulation Of Notch4 Signaling 54
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 5
## Nephrin Family Interactions 23
## Neurexins And Neuroligins 56
## Neurofascin Interactions 7
## Neurotoxicity Of Clostridium Toxins 10
## Neurotransmitter Clearance 10
## Neurotransmitter Release Cycle 51
## Ngf Independant Trka Activation 5
## Nitric Oxide Stimulates Guanylate Cyclase 22
## Non Integrin Membrane Ecm Interactions 59
## Noncanonical Activation Of Notch3 8
## Nonsense Mediated Decay Nmd 116
## Norepinephrine Neurotransmitter Release Cycle 18
## Notch Hlh Transcription Pathway 28
## Notch2 Activation And Transmission Of Signal To The Nucleus 22
## Notch4 Activation And Transmission Of Signal To The Nucleus 11
## Notch4 Intracellular Domain Regulates Transcription 20
## Nr1h2 And Nr1h3 Mediated Signaling 47
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 5
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 9
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 5
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 9
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 5
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 37
## Nrcam Interactions 7
## Ns1 Mediated Effects On Host Pathways 41
## Ntrk2 Activates Rac1 5
## Nuclear Import Of Rev Protein 34
## Nuclear Receptor Transcription Pathway 53
## Nucleobase Biosynthesis 15
## Nucleobase Catabolism 35
## Nucleotide Excision Repair 110
## Nucleotide Like Purinergic Receptors 16
## O Glycosylation Of Tsr Domain Containing Proteins 39
## Olfactory Signaling Pathway 400
## Opsins 9
## Orc1 Removal From Chromatin 71
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 8
## Organic Anion Transport 5
## Organic Anion Transporters 10
## Organic Cation Anion Zwitterion Transport 15
## Organic Cation Transport 10
## P2y Receptors 12
## P75ntr Negatively Regulates Cell Cycle Via Sc1 6
## Passive Transport By Aquaporins 13
## Pcna Dependent Long Patch Base Excision Repair 21
## Pentose Phosphate Pathway 15
## Peptide Hormone Biosynthesis 14
## Peroxisomal Lipid Metabolism 29
## Peroxisomal Protein Import 63
## Phase 0 Rapid Depolarisation 32
## Phase 1 Inactivation Of Fast Na Channels 7
## Phase 2 Plateau Phase 15
## Phase 3 Rapid Repolarisation 8
## Phase I Functionalization Of Compounds 106
## Phase Ii Conjugation Of Compounds 109
## Phenylalanine And Tyrosine Metabolism 11
## Phenylalanine Metabolism 6
## Phosphate Bond Hydrolysis By Ntpdase Proteins 8
## Phosphate Bond Hydrolysis By Nudt Proteins 7
## Phospholipase C Mediated Cascade Fgfr2 18
## Phospholipase C Mediated Cascade Fgfr4 15
## Physiological Factors 12
## Pi 3k Cascade Fgfr1 21
## Pi 3k Cascade Fgfr2 23
## Pi 3k Cascade Fgfr3 18
## Pi 3k Cascade Fgfr4 20
## Pi3k Akt Activation 9
## Pi3k Events In Erbb4 Signaling 10
## Pi5p Regulates Tp53 Acetylation 9
## Piwi Interacting Rna Pirna Biogenesis 29
## Pka Activation In Glucagon Signalling 17
## Pka Mediated Phosphorylation Of Key Metabolic Factors 5
## Pkmts Methylate Histone Lysines 71
## Platelet Calcium Homeostasis 28
## Platelet Homeostasis 86
## Platelet Sensitization By Ldl 17
## Polb Dependent Long Patch Base Excision Repair 8
## Polo Like Kinase Mediated Events 16
## Polymerase Switching 14
## Polymerase Switching On The C Strand Of The Telomere 26
## Positive Epigenetic Regulation Of Rrna Expression 106
## Post Chaperonin Tubulin Folding Pathway 23
## Postmitotic Nuclear Pore Complex Npc Reformation 27
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 10
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 7
## Pre Notch Expression And Processing 120
## Pre Notch Processing In Golgi 18
## Pre Notch Processing In The Endoplasmic Reticulum 6
## Pregnenolone Biosynthesis 12
## Presynaptic Depolarization And Calcium Channel Opening 11
## Presynaptic Function Of Kainate Receptors 21
## Prevention Of Phagosomal Lysosomal Fusion 9
## Processing And Activation Of Sumo 10
## Processing Of Capped Intron Containing Pre Mrna 242
## Processing Of Capped Intronless Pre Mrna 28
## Processing Of Intronless Pre Mrnas 19
## Processing Of Smdt1 16
## Processive Synthesis On The C Strand Of The Telomere 19
## Processive Synthesis On The Lagging Strand 15
## Prolactin Receptor Signaling 15
## Prolonged Erk Activation Events 14
## Propionyl Coa Catabolism 5
## Prostacyclin Signalling Through Prostacyclin Receptor 19
## Prostanoid Ligand Receptors 9
## Protein Methylation 17
## Protein Protein Interactions At Synapses 87
## Protein Ubiquitination 79
## Proton Coupled Monocarboxylate Transport 6
## Pten Regulation 139
## Ptk6 Expression 5
## Ptk6 Regulates Proteins Involved In Rna Processing 5
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 14
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 9
## Purine Catabolism 17
## Purine Ribonucleoside Monophosphate Biosynthesis 12
## Pyrimidine Catabolism 12
## Pyrimidine Salvage 11
## Pyruvate Metabolism 31
## Pyruvate Metabolism And Citric Acid Tca Cycle 55
## Ra Biosynthesis Pathway 22
## Rap1 Signalling 16
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 20
## Ras Processing 24
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 7
## Reactions Specific To The Complex N Glycan Synthesis Pathway 10
## Receptor Type Tyrosine Protein Phosphatases 20
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 56
## Recognition Of Dna Damage By Pcna Containing Replication Complex 30
## Recycling Of Bile Acids And Salts 16
## Recycling Of Eif2 Gdp 8
## Reduction Of Cytosolic Ca Levels 12
## Reelin Signalling Pathway 5
## Regulated Proteolysis Of P75ntr 11
## Regulation Of Bach1 Activity 11
## Regulation Of Beta Cell Development 42
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 55
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 8
## Regulation Of Expression Of Slits And Robos 172
## Regulation Of Fzd By Ubiquitination 21
## Regulation Of Gene Expression By Hypoxia Inducible Factor 11
## Regulation Of Gene Expression In Beta Cells 21
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 8
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 5
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 16
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 32
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 12
## Regulation Of Innate Immune Responses To Cytosolic Dna 15
## Regulation Of Insulin Secretion 78
## Regulation Of Localization Of Foxo Transcription Factors 12
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 87
## Regulation Of Pten Gene Transcription 61
## Regulation Of Pten Localization 9
## Regulation Of Pten Mrna Translation 9
## Regulation Of Pten Stability And Activity 69
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 16
## Regulation Of Ras By Gaps 68
## Regulation Of Signaling By Cbl 22
## Regulation Of Signaling By Nodal 11
## Regulation Of Tp53 Activity Through Acetylation 30
## Regulation Of Tp53 Activity Through Association With Co Factors 14
## Relaxin Receptors 8
## Release Of Apoptotic Factors From The Mitochondria 7
## Release Of Hh Np From The Secreting Cell 8
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 10
## Resolution Of Abasic Sites Ap Sites 38
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 25
## Respiratory Electron Transport 103
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 127
## Response Of Eif2ak1 Hri To Heme Deficiency 15
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 102
## Response Of Mtb To Phagocytosis 23
## Response To Metal Ions 14
## Retinoid Cycle Disease Events 13
## Retrograde Neurotrophin Signalling 14
## Reversible Hydration Of Carbon Dioxide 12
## Rho Gtpases Activate Cit 19
## Rho Gtpases Activate Pkns 94
## Rho Gtpases Activate Rhotekin And Rhophilins 9
## Rho Gtpases Activate Rocks 19
## Rhobtb Gtpase Cycle 35
## Rhobtb1 Gtpase Cycle 23
## Rhobtb2 Gtpase Cycle 23
## Rhobtb3 Atpase Cycle 10
## Rhot1 Gtpase Cycle 5
## Rna Polymerase I Promoter Escape 91
## Rna Polymerase I Transcription 111
## Rna Polymerase I Transcription Initiation 47
## Rna Polymerase I Transcription Termination 31
## Rna Polymerase Ii Transcribes Snrna Genes 81
## Rna Polymerase Ii Transcription Termination 66
## Rna Polymerase Iii Chain Elongation 18
## Rna Polymerase Iii Transcription 41
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 28
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 28
## Rna Polymerase Iii Transcription Termination 23
## Robo Receptors Bind Akap5 9
## Role Of Abl In Robo Slit Signaling 8
## Role Of Lat2 Ntal Lab On Calcium Mobilization 71
## Role Of Phospholipids In Phagocytosis 82
## Role Of Second Messengers In Netrin 1 Signaling 10
## Rora Activates Gene Expression 18
## Rrna Modification In The Mitochondrion 8
## Rrna Modification In The Nucleus And Cytosol 60
## Rrna Processing 205
## Rrna Processing In The Mitochondrion 12
## Rsk Activation 7
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 37
## Runx1 Regulates Estrogen Receptor Mediated Transcription 6
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 98
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 6
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 130
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 8
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 5
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 6
## Runx3 Regulates Bcl2l11 Bim Transcription 5
## Runx3 Regulates Cdkn1a Transcription 7
## Runx3 Regulates Immune Response And Cell Migration 6
## Runx3 Regulates Notch Signaling 14
## Runx3 Regulates P14 Arf 10
## Runx3 Regulates Yap1 Mediated Transcription 8
## Sars Cov 1 Genome Replication And Transcription 6
## Sars Cov 1 Infection 50
## Sars Cov 2 Infection 67
## Scavenging By Class F Receptors 6
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 32
## Selenoamino Acid Metabolism 118
## Sema3a Pak Dependent Axon Repulsion 16
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 14
## Sema4d In Semaphorin Signaling 24
## Sema4d Induced Cell Migration And Growth Cone Collapse 20
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 8
## Sensory Processing Of Sound 77
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 55
## Separation Of Sister Chromatids 191
## Serine Biosynthesis 9
## Serotonin And Melatonin Biosynthesis 5
## Serotonin Neurotransmitter Release Cycle 18
## Serotonin Receptors 12
## Shc Mediated Cascade Fgfr1 21
## Shc Mediated Cascade Fgfr3 18
## Shc Mediated Cascade Fgfr4 20
## Shc Related Events Triggered By Igf1r 9
## Shc1 Events In Erbb4 Signaling 14
## Signal Attenuation 10
## Signaling By Activin 13
## Signaling By Bmp 28
## Signaling By Ctnnb1 Phospho Site Mutants 15
## Signaling By Erythropoietin 25
## Signaling By Fgfr2 Iiia Tm 19
## Signaling By Fgfr2 In Disease 43
## Signaling By Fgfr3 Fusions In Cancer 10
## Signaling By Fgfr4 In Disease 11
## Signaling By Flt3 Fusion Proteins 19
## Signaling By Flt3 Itd And Tkd Mutants 16
## Signaling By Hedgehog 150
## Signaling By Lrp5 Mutants 6
## Signaling By Mapk Mutants 7
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 5
## Signaling By Mras Complex Mutants 8
## Signaling By Mst1 5
## Signaling By Nodal 20
## Signaling By Notch1 Hd Domain Mutants In Cancer 15
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 7
## Signaling By Notch4 82
## Signaling By Retinoic Acid 43
## Signaling By Rnf43 Mutants 8
## Signaling By Tgf Beta Receptor Complex In Cancer 8
## Signaling By Wnt In Cancer 34
## Signalling To P38 Via Rit And Rin 5
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 11
## Slc Mediated Transmembrane Transport 250
## Slc Transporter Disorders 99
## Small Interfering Rna Sirna Biogenesis 9
## Smooth Muscle Contraction 38
## Snrnp Assembly 54
## Sodium Calcium Exchangers 11
## Sodium Coupled Phosphate Cotransporters 5
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 5
## Sodium Proton Exchangers 9
## Sos Mediated Signalling 7
## Sperm Motility And Taxes 9
## Sphingolipid De Novo Biosynthesis 45
## Sphingolipid Metabolism 90
## Srp Dependent Cotranslational Protein Targeting To Membrane 113
## Stat5 Activation 7
## Stat5 Activation Downstream Of Flt3 Itd Mutants 10
## Striated Muscle Contraction 36
## Sulfide Oxidation To Sulfate 6
## Sulfur Amino Acid Metabolism 28
## Sumo Is Conjugated To E1 Uba2 Sae1 5
## Sumo Is Proteolytically Processed 6
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 7
## Sumoylation Of Chromatin Organization Proteins 71
## Sumoylation Of Dna Damage Response And Repair Proteins 77
## Sumoylation Of Dna Replication Proteins 46
## Sumoylation Of Intracellular Receptors 30
## Sumoylation Of Rna Binding Proteins 47
## Sumoylation Of Sumoylation Proteins 35
## Sumoylation Of Transcription Factors 20
## Sumoylation Of Ubiquitinylation Proteins 39
## Suppression Of Apoptosis 7
## Suppression Of Phagosomal Maturation 13
## Surfactant Metabolism 30
## Switching Of Origins To A Post Replicative State 91
## Synaptic Adhesion Like Molecules 21
## Syndecan Interactions 27
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 7
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 9
## Synthesis Of 5 Eicosatetraenoic Acids 9
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 30
## Synthesis Of Bile Acids And Bile Salts 34
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 14
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 15
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 24
## Synthesis Of Diphthamide Eef2 8
## Synthesis Of Dolichyl Phosphate 6
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 8
## Synthesis Of Gdp Mannose 5
## Synthesis Of Glycosylphosphatidylinositol Gpi 18
## Synthesis Of Ip2 Ip And Ins In The Cytosol 14
## Synthesis Of Ip3 And Ip4 In The Cytosol 26
## Synthesis Of Ketone Bodies 8
## Synthesis Of Leukotrienes Lt And Eoxins Ex 21
## Synthesis Of Lipoxins Lx 6
## Synthesis Of Pa 39
## Synthesis Of Pc 28
## Synthesis Of Pe 13
## Synthesis Of Pg 8
## Synthesis Of Pi 5
## Synthesis Of Pips At The Early Endosome Membrane 16
## Synthesis Of Pips At The Er Membrane 5
## Synthesis Of Pips At The Golgi Membrane 18
## Synthesis Of Pips At The Late Endosome Membrane 11
## Synthesis Of Pyrophosphates In The Cytosol 10
## Synthesis Of Udp N Acetyl Glucosamine 8
## Synthesis Of Very Long Chain Fatty Acyl Coas 24
## Synthesis Of Wybutosine At G37 Of Trna Phe 6
## Synthesis Secretion And Deacylation Of Ghrelin 19
## Tachykinin Receptors Bind Tachykinins 5
## Tbc Rabgaps 44
## Telomere C Strand Lagging Strand Synthesis 34
## Telomere C Strand Synthesis Initiation 13
## Terminal Pathway Of Complement 8
## Termination Of Translesion Dna Synthesis 32
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 10
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 5
## Tgf Beta Receptor Signaling Activates Smads 32
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 16
## The Activation Of Arylsulfatases 13
## The Canonical Retinoid Cycle In Rods Twilight Vision 23
## The Citric Acid Tca Cycle And Respiratory Electron Transport 178
## The Fatty Acid Cycling Model 5
## The Phototransduction Cascade 34
## The Retinoid Cycle In Cones Daylight Vision 7
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 28
## Thromboxane Signalling Through Tp Receptor 24
## Thyroxine Biosynthesis 10
## Tie2 Signaling 18
## Tight Junction Interactions 30
## Toxicity Of Botulinum Toxin Type D Botd 5
## Tp53 Regulates Metabolic Genes 87
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 21
## Tp53 Regulates Transcription Of Death Receptors And Ligands 12
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 14
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 14
## Trafficking Of Ampa Receptors 31
## Trafficking Of Glur2 Containing Ampa Receptors 17
## Trafficking Of Myristoylated Proteins To The Cilium 5
## Trail Signaling 8
## Trans Golgi Network Vesicle Budding 72
## Transcription Coupled Nucleotide Excision Repair Tc Ner 78
## Transcription Of The Hiv Genome 70
## Transcriptional Regulation By E2f6 34
## Transcriptional Regulation By Small Rnas 107
## Transcriptional Regulation Of Testis Differentiation 13
## Transferrin Endocytosis And Recycling 31
## Translation 295
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 13
## Translation Of Sars Cov 1 Structural Proteins 28
## Translation Of Sars Cov 2 Structural Proteins 44
## Translesion Synthesis By Polh 19
## Translesion Synthesis By Polk 17
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 39
## Transport And Synthesis Of Paps 6
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 86
## Transport Of Connexons To The Plasma Membrane 21
## Transport Of Fatty Acids 8
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 106
## Transport Of Mature Mrnas Derived From Intronless Transcripts 43
## Transport Of Mature Transcript To Cytoplasm 84
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 12
## Transport Of Nucleotide Sugars 9
## Transport Of Organic Anions 12
## Transport Of The Slbp Dependant Mature Mrna 36
## Transport Of Vitamins Nucleosides And Related Molecules 44
## Triglyceride Biosynthesis 14
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 17
## Trna Aminoacylation 42
## Trna Modification In The Mitochondrion 9
## Trna Modification In The Nucleus And Cytosol 43
## Trna Processing 111
## Trna Processing In The Mitochondrion 7
## Trna Processing In The Nucleus 59
## Trp Channels 28
## Tryptophan Catabolism 14
## Type I Hemidesmosome Assembly 11
## Tyrosine Catabolism 5
## Tysnd1 Cleaves Peroxisomal Proteins 7
## Ubiquinol Biosynthesis 8
## Uch Proteinases 102
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 21
## Unwinding Of Dna 12
## Uptake And Actions Of Bacterial Toxins 29
## Uptake And Function Of Anthrax Toxins 11
## Uptake And Function Of Diphtheria Toxin 6
## Urea Cycle 10
## Vasopressin Like Receptors 6
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 43
## Vegf Ligand Receptor Interactions 8
## Viral Messenger Rna Synthesis 44
## Vitamin B1 Thiamin Metabolism 5
## Vitamin B2 Riboflavin Metabolism 7
## Vitamin B5 Pantothenate Metabolism 17
## Vitamin C Ascorbate Metabolism 8
## Vitamin D Calciferol Metabolism 11
## Vitamins 6
## Vldl Assembly 5
## Vldl Clearance 6
## Voltage Gated Potassium Channels 43
## Vxpx Cargo Targeting To Cilium 21
## Wax And Plasmalogen Biosynthesis 7
## Wnt Mediated Activation Of Dvl 8
## Xenobiotics 25
## Zinc Efflux And Compartmentalization By The Slc30 Family 7
## Zinc Influx Into Cells By The Slc39 Gene Family 10
## Zinc Transporters 17
## overlap
## Cytokine Signaling In Immune System 62
## Signaling By Interleukins 52
## Innate Immune System 66
## Interleukin 10 Signaling 21
## Interleukin 4 And Interleukin 13 Signaling 25
## Chemokine Receptors Bind Chemokines 19
## Peptide Ligand Binding Receptors 23
## Toll Like Receptor Cascades 20
## Signaling By Gpcr 32
## Class A 1 Rhodopsin Like Receptors 23
## Toll Like Receptor Tlr1 Tlr2 Cascade 15
## Gpcr Ligand Binding 25
## Interleukin 1 Family Signaling 16
## G Alpha I Signalling Events 21
## Neutrophil Degranulation 24
## Toll Like Receptor 9 Tlr9 Cascade 13
## Adaptive Immune System 29
## Myd88 Independent Tlr4 Cascade 12
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 10
## Diseases Of Immune System 8
## Death Receptor Signalling 12
## Leishmania Infection 16
## Irak4 Deficiency Tlr2 4 6
## Extra Nuclear Estrogen Signaling 9
## Nod1 2 Signaling Pathway 7
## Regulation Of Tlr By Endogenous Ligand 6
## Complement Cascade 10
## Purinergic Signaling In Leishmaniasis Infection 6
## Programmed Cell Death 12
## Interleukin 17 Signaling 8
## Tnfr2 Non Canonical Nf Kb Pathway 9
## Tnfs Bind Their Physiological Receptors 6
## Interleukin 1 Signaling 9
## Costimulation By The Cd28 Family 8
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 6
## Negative Regulation Of The Pi3k Akt Network 9
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 11
## Regulated Necrosis 7
## Ovarian Tumor Domain Proteases 6
## Extracellular Matrix Organization 13
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 5
## P75 Ntr Receptor Mediated Signalling 8
## Antigen Processing Cross Presentation 8
## Heme Signaling 6
## Pyroptosis 5
## Deubiquitination 12
## Infectious Disease 21
## Activation Of Matrix Metalloproteinases 5
## Post Translational Protein Modification 27
## P75ntr Signals Via Nf Kb 4
## Esr Mediated Signaling 10
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 4
## Fibronectin Matrix Formation 3
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 4
## Pi3k Akt Signaling In Cancer 7
## Beta Defensins 5
## Ctla4 Inhibitory Signaling 4
## Inflammasomes 4
## Interleukin 2 Family Signaling 5
## Dap12 Interactions 5
## Interleukin 18 Signaling 3
## Activated Tak1 Mediates P38 Mapk Activation 4
## Constitutive Signaling By Aberrant Pi3k In Cancer 6
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 4
## Mapk Family Signaling Cascades 11
## Cd163 Mediating An Anti Inflammatory Response 3
## Interleukin 1 Processing 3
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 4
## Defensins 5
## Apoptosis 8
## Interleukin 12 Family Signaling 5
## Interleukin 6 Signaling 3
## Signaling By Nuclear Receptors 10
## Antimicrobial Peptides 6
## Cd28 Dependent Vav1 Pathway 3
## Killing Mechanisms 3
## Intracellular Signaling By Second Messengers 10
## Cell Surface Interactions At The Vascular Wall 8
## Cd28 Co Stimulation 4
## Collagen Degradation 5
## P75ntr Recruits Signalling Complexes 3
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 3
## Hemostasis 15
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 11
## Caspase Activation Via Death Receptors In The Presence Of Ligand 3
## The Nlrp3 Inflammasome 3
## Gab1 Signalosome 3
## Rip Mediated Nfkb Activation Via Zbp1 3
## Transcriptional Regulation By Runx2 6
## Signaling By Scf Kit 4
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 6
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 5
## Signaling By Receptor Tyrosine Kinases 12
## Rna Polymerase Ii Transcription 22
## Signaling By Kit In Disease 3
## Zbp1 Dai Mediated Induction Of Type I Ifns 3
## Signaling By Egfr 4
## Eph Ephrin Mediated Repulsion Of Cells 4
## Degradation Of The Extracellular Matrix 6
## Eph Ephrin Signaling 5
## Interferon Gamma Signaling 5
## Ikk Complex Recruitment Mediated By Rip1 3
## Cellular Senescence 7
## Rac3 Gtpase Cycle 5
## Cellular Responses To External Stimuli 14
## Signaling By Ptk6 4
## Platelet Activation Signaling And Aggregation 8
## Interleukin 6 Family Signaling 3
## Traf6 Mediated Nf Kb Activation 3
## Vesicle Mediated Transport 14
## Rhoq Gtpase Cycle 4
## Assembly Of Collagen Fibrils And Other Multimeric Structures 4
## Cargo Recognition For Clathrin Mediated Endocytosis 5
## Cytosolic Sensors Of Pathogen Associated Dna 4
## Pd 1 Signaling 3
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 2
## Dap12 Signaling 3
## Downstream Signal Transduction 3
## Senescence Associated Secretory Phenotype Sasp 5
## Tnfr1 Induced Nfkappab Signaling Pathway 3
## Activation Of C3 And C5 2
## Egfr Downregulation 3
## Mapk Targets Nuclear Events Mediated By Map Kinases 3
## Runx2 Regulates Genes Involved In Cell Migration 2
## Egfr Interacts With Phospholipase C Gamma 2
## Egfr Transactivation By Gastrin 2
## Interleukin 9 Signaling 2
## Trif Mediated Programmed Cell Death 2
## Negative Regulators Of Ddx58 Ifih1 Signaling 3
## Regulation Of Tnfr1 Signaling 3
## Rhog Gtpase Cycle 4
## Activation Of The Ap 1 Family Of Transcription Factors 2
## Interleukin 21 Signaling 2
## Mapk3 Erk1 Activation 2
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 2
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 3
## Apoptotic Cleavage Of Cell Adhesion Proteins 2
## Initial Triggering Of Complement 4
## Interleukin 27 Signaling 2
## Receptor Mediated Mitophagy 2
## Response To Elevated Platelet Cytosolic Ca2 5
## Selective Autophagy 4
## Gp1b Ix V Activation Signalling 2
## Interleukin 35 Signalling 2
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 2
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 2
## Nervous System Development 11
## C Type Lectin Receptors Clrs 5
## Interferon Signaling 6
## Apoptosis Induced Dna Fragmentation 2
## Erbb2 Activates Ptk6 Signaling 2
## Nf Kb Is Activated And Signals Survival 2
## Rac2 Gtpase Cycle 4
## Tnfr1 Induced Proapoptotic Signaling 2
## Trafficking And Processing Of Endosomal Tlr 2
## Tnf Signaling 3
## Clathrin Mediated Endocytosis 5
## Collagen Formation 4
## Transcriptional Regulation Of Granulopoiesis 4
## Dcc Mediated Attractive Signaling 2
## Early Phase Of Hiv Life Cycle 2
## Interleukin 15 Signaling 2
## Shc1 Events In Egfr Signaling 2
## Mapk6 Mapk4 Signaling 4
## Interleukin 12 Signaling 3
## Constitutive Signaling By Egfrviii 2
## Erbb2 Regulates Cell Motility 2
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 2
## P130cas Linkage To Mapk Signaling For Integrins 2
## Signaling By Notch3 3
## Ub Specific Processing Proteases 6
## Binding And Uptake Of Ligands By Scavenger Receptors 4
## Netrin 1 Signaling 3
## Signaling By Erbb2 3
## Grb2 Events In Erbb2 Signaling 2
## Pi3k Events In Erbb2 Signaling 2
## Signal Regulatory Protein Family Interactions 2
## Signaling By Erbb2 Ecd Mutants 2
## Sumoylation Of Dna Methylation Proteins 2
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 2
## Cdc42 Gtpase Cycle 5
## Clec7a Dectin 1 Signaling 4
## Class I Mhc Mediated Antigen Processing Presentation 8
## Apoptotic Execution Phase 3
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 2
## Intrinsic Pathway For Apoptosis 3
## Rhoj Gtpase Cycle 3
## Signaling By Cytosolic Fgfr1 Fusion Mutants 2
## Signaling By Vegf 4
## Transcriptional Regulation By Runx1 6
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 2
## Other Semaphorin Interactions 2
## Scavenging By Class A Receptors 2
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 2
## Signaling By Erbb4 3
## Signaling By Pdgf 3
## Signaling By Pdgfr In Disease 2
## Interleukin 37 Signaling 2
## Signal Transduction By L1 2
## Cd28 Dependent Pi3k Akt Signaling 2
## Rac1 Gtpase Cycle 5
## Shc1 Events In Erbb2 Signaling 2
## Foxo Mediated Transcription 3
## Raf Independent Mapk1 3 Activation 2
## Growth Hormone Receptor Signaling 2
## Runx2 Regulates Osteoblast Differentiation 2
## Circadian Clock 3
## Inactivation Of Csf3 G Csf Signaling 2
## Notch3 Activation And Transmission Of Signal To The Nucleus 2
## Rhob Gtpase Cycle 3
## Scavenging Of Heme From Plasma 3
## Signaling By Egfr In Cancer 2
## Interleukin 20 Family Signaling 2
## Signaling By Erbb2 In Cancer 2
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 2
## G0 And Early G1 2
## Integrin Signaling 2
## Interferon Alpha Beta Signaling 3
## Interleukin Receptor Shc Signaling 2
## Membrane Trafficking 10
## Rhoc Gtpase Cycle 3
## Signaling By Ntrks 4
## Vegfr2 Mediated Vascular Permeability 2
## Cell Death Signalling Via Nrage Nrif And Nade 3
## Developmental Biology 15
## Downregulation Of Erbb2 Signaling 2
## Mitophagy 2
## Ripk1 Mediated Regulated Necrosis 2
## G Alpha Q Signalling Events 5
## Signaling By Csf3 G Csf 2
## Fgfr1 Mutant Receptor Activation 2
## Nicotinate Metabolism 2
## Runx2 Regulates Bone Development 2
## Perk Regulates Gene Expression 2
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 2
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 5
## Mitotic G1 Phase And G1 S Transition 4
## Autophagy 4
## Cargo Concentration In The Er 2
## Plasma Lipoprotein Clearance 2
## Fceri Mediated Mapk Activation 3
## Gpvi Mediated Activation Cascade 2
## Regulation Of Tp53 Expression And Degradation 2
## Rhoh Gtpase Cycle 2
## Apoptotic Cleavage Of Cellular Proteins 2
## Fcgr3a Mediated Il10 Synthesis 3
## Signaling By Fgfr1 In Disease 2
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 2
## Ngf Stimulated Transcription 2
## Platelet Aggregation Plug Formation 2
## Map2k And Mapk Activation 2
## Signaling By Notch 5
## Alternative Complement Activation 1
## Fasl Cd95l Signaling 1
## G2 M Dna Replication Checkpoint 1
## Galactose Catabolism 1
## Hdl Clearance 1
## Mecp2 Regulates Transcription Factors 1
## Nostrin Mediated Enos Trafficking 1
## Runx1 Regulates Expression Of Components Of Tight Junctions 1
## Runx2 Regulates Chondrocyte Maturation 1
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 1
## Ephb Mediated Forward Signaling 2
## Rhof Gtpase Cycle 2
## Diseases Of Programmed Cell Death 3
## Tp53 Regulates Transcription Of Cell Death Genes 2
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 2
## Activated Ntrk3 Signals Through Pi3k 1
## Activation Of Caspases Through Apoptosome Mediated Cleavage 1
## Biosynthesis Of Epa Derived Spms 1
## Clec7a Inflammasome Pathway 1
## Nade Modulates Death Signalling 1
## Phosphorylation Of Emi1 1
## Protein Repair 1
## Ptk6 Promotes Hif1a Stabilization 1
## Ptk6 Regulates Cell Cycle 1
## Scavenging By Class B Receptors 1
## Sensing Of Dna Double Strand Breaks 1
## Signaling By Moderate Kinase Activity Braf Mutants 2
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 1
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 1
## Tnfr1 Mediated Ceramide Production 1
## Cyclin D Associated Events In G1 2
## Fc Epsilon Receptor Fceri Signaling 4
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 2
## Sumoylation 4
## Activated Ntrk2 Signals Through Fyn 1
## Activation Of Nima Kinases Nek9 Nek6 Nek7 1
## Creb Phosphorylation 1
## Defective Factor Viii Causes Hemophilia A 1
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 1
## Ikba Variant Leads To Eda Id 1
## Modulation By Mtb Of Host Immune System 1
## Parasite Infection 3
## Rhod Gtpase Cycle 2
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 1
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 1
## Hdl Assembly 1
## Inactivation Of Cdc42 And Rac1 1
## Lectin Pathway Of Complement Activation 1
## Mecp2 Regulates Transcription Of Neuronal Ligands 1
## Netrin Mediated Repulsion Signals 1
## Runx3 Regulates Wnt Signaling 1
## Smac Xiap Regulated Apoptotic Response 1
## L1cam Interactions 3
## Cytoprotection By Hmox1 3
## Tcr Signaling 3
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 1
## Downregulation Of Erbb4 Signaling 1
## E2f Enabled Inhibition Of Pre Replication Complex Formation 1
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 1
## Interleukin 23 Signaling 1
## Mapk1 Erk2 Activation 1
## Oas Antiviral Response 1
## Oxidative Stress Induced Senescence 3
## Nrage Signals Death Through Jnk 2
## Akt Phosphorylates Targets In The Nucleus 1
## Camk Iv Mediated Phosphorylation Of Creb 1
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 1
## Chylomicron Assembly 1
## Chylomicron Remodeling 1
## Hdl Remodeling 1
## Mastl Facilitates Mitotic Progression 1
## P75ntr Regulates Axonogenesis 1
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 1
## Regulation Of Foxo Transcriptional Activity By Acetylation 1
## Nuclear Events Kinase And Transcription Factor Activation 2
## Ca2 Pathway 2
## Tp53 Regulates Transcription Of Dna Repair Genes 2
## Condensation Of Prometaphase Chromosomes 1
## Dermatan Sulfate Biosynthesis 1
## Dscam Interactions 1
## Endosomal Vacuolar Pathway 1
## Enos Activation 1
## Ncam Signaling For Neurite Out Growth 2
## Pexophagy 1
## Regulation By C Flip 1
## Rho Gtpases Activate Ktn1 1
## Signaling By Fgfr In Disease 2
## Signaling By Leptin 1
## Sumoylation Of Immune Response Proteins 1
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 1
## Transcriptional Regulation By Mecp2 2
## Semaphorin Interactions 2
## Dna Methylation 2
## Signaling By Braf And Raf Fusions 2
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 1
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 1
## Interleukin 2 Signaling 1
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 1
## Notch2 Intracellular Domain Regulates Transcription 1
## Pecam1 Interactions 1
## Tandem Pore Domain Potassium Channels 1
## Ticam1 Dependent Activation Of Irf3 Irf7 1
## Vldlr Internalisation And Degradation 1
## Fcgamma Receptor Fcgr Dependent Phagocytosis 3
## Copii Mediated Vesicle Transport 2
## Tcf Dependent Signaling In Response To Wnt 4
## Advanced Glycosylation Endproduct Receptor Signaling 1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 1
## Cytochrome C Mediated Apoptotic Response 1
## Dissolution Of Fibrin Clot 1
## Irf3 Mediated Induction Of Type I Ifn 1
## P38mapk Events 1
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 1
## Purine Salvage 1
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 1
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 1
## Epigenetic Regulation Of Gene Expression 3
## Creation Of C4 And C2 Activators 2
## Plasma Lipoprotein Assembly Remodeling And Clearance 2
## Rhoa Gtpase Cycle 3
## Golgi Cisternae Pericentriolar Stack Reorganization 1
## Irak1 Recruits Ikk Complex 1
## Regulation Of Ifng Signaling 1
## Repression Of Wnt Target Genes 1
## Traf3 Dependent Irf Activation Pathway 1
## Prc2 Methylates Histones And Dna 2
## Regulation Of Runx2 Expression And Activity 2
## Signaling By Tgf Beta Receptor Complex 2
## Depolymerisation Of The Nuclear Lamina 1
## Er To Golgi Anterograde Transport 3
## Heme Degradation 1
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 1
## Platelet Adhesion To Exposed Collagen 1
## Rho Gtpase Cycle 6
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 1
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 1
## Wnt5a Dependent Internalization Of Fzd4 1
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 1
## Abc Transporter Disorders 2
## Cellular Response To Chemical Stress 3
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 1
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 1
## Dna Double Strand Break Response 2
## Foxo Mediated Transcription Of Cell Death Genes 1
## Nrif Signals Cell Death From The Nucleus 1
## Regulation Of Kit Signaling 1
## Rmts Methylate Histone Arginines 2
## Signaling By Met 2
## Spry Regulation Of Fgf Signaling 1
## Sting Mediated Induction Of Host Immune Responses 1
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 1
## Abc Transporters In Lipid Homeostasis 1
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 1
## Antiviral Mechanism By Ifn Stimulated Genes 2
## Crosslinking Of Collagen Fibrils 1
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 1
## Diseases Associated With Glycosylation Precursor Biosynthesis 1
## Foxo Mediated Transcription Of Cell Cycle Genes 1
## Mecp2 Regulates Neuronal Receptors And Channels 1
## Oncogenic Mapk Signaling 2
## Regulation Of Hsf1 Mediated Heat Shock Response 2
## Regulation Of Runx1 Expression And Activity 1
## Signaling By Ntrk3 Trkc 1
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 1
## Transcriptional Regulation Of White Adipocyte Differentiation 2
## Apoptotic Factor Mediated Response 1
## Biosynthesis Of Specialized Proresolving Mediators Spms 1
## Cyclin A Cdk2 Associated Events At S Phase Entry 2
## Ephrin Signaling 1
## G Beta Gamma Signalling Through Cdc42 1
## Initiation Of Nuclear Envelope Ne Reformation 1
## Integrin Cell Surface Interactions 2
## Ldl Clearance 1
## Listeria Monocytogenes Entry Into Host Cells 1
## Meiotic Recombination 2
## Nicotinamide Salvaging 1
## Phase 4 Resting Membrane Potential 1
## Phosphorylation Of The Apc C 1
## Pka Mediated Phosphorylation Of Creb 1
## Plasma Lipoprotein Assembly 1
## Regulation Of Tp53 Activity Through Methylation 1
## Signaling By Hippo 1
## Signalling To Ras 1
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 1
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 1
## Transcription Of E2f Targets Under Negative Control By Dream Complex 1
## Vegfr2 Mediated Cell Proliferation 1
## Branched Chain Amino Acid Catabolism 1
## Formation Of The Beta Catenin Tcf Transactivating Complex 2
## Rho Gtpases Activate Paks 1
## Unfolded Protein Response Upr 2
## Activation Of Nmda Receptors And Postsynaptic Events 2
## Chaperone Mediated Autophagy 1
## Class B 2 Secretin Family Receptors 2
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 1
## E2f Mediated Regulation Of Dna Replication 1
## G2 M Dna Damage Checkpoint 2
## Incretin Synthesis Secretion And Inactivation 1
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 1
## Intrinsic Pathway Of Fibrin Clot Formation 1
## Long Term Potentiation 1
## Nucleotide Salvage 1
## Pink1 Prkn Mediated Mitophagy 1
## Telomere Extension By Telomerase 1
## Termination Of O Glycan Biosynthesis 1
## Transcriptional Regulation By Runx3 2
## Transport To The Golgi And Subsequent Modification 3
## Apc C Cdc20 Mediated Degradation Of Cyclin B 1
## Cellular Response To Heat Stress 2
## Metabolism Of Vitamins And Cofactors 3
## Other Interleukin Signaling 1
## Rho Gtpases Activate Nadph Oxidases 1
## Triglyceride Catabolism 1
## Abc Family Proteins Mediated Transport 2
## Adp Signalling Through P2y Purinoceptor 1 1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 1
## Basigin Interactions 1
## Constitutive Signaling By Akt1 E17k In Cancer 1
## Copi Mediated Anterograde Transport 2
## Cyclin A B1 B2 Associated Events During G2 M Transition 1
## Dectin 2 Family 1
## Notch3 Intracellular Domain Regulates Transcription 1
## Regulation Of Ifna Signaling 1
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 1
## Signaling By Ntrk2 Trkb 1
## Signaling By Tgfb Family Members 2
## Wnt Ligand Biogenesis And Trafficking 1
## Asparagine N Linked Glycosylation 4
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 1
## Infection With Mycobacterium Tuberculosis 1
## Metabolism Of Porphyrins 1
## Amyloid Fiber Formation 2
## Epha Mediated Growth Cone Collapse 1
## G1 S Specific Transcription 1
## Myogenesis 1
## Negative Epigenetic Regulation Of Rrna Expression 2
## Negative Regulation Of Fgfr3 Signaling 1
## Traf6 Mediated Irf7 Activation 1
## Activation Of Bh3 Only Proteins 1
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 1
## Met Activates Ptk2 Signaling 1
## Negative Regulation Of Fgfr4 Signaling 1
## Transcriptional Regulation Of Pluripotent Stem Cells 1
## G Protein Beta Gamma Signalling 1
## Meiosis 2
## Negative Regulation Of Fgfr1 Signaling 1
## Nuclear Signaling By Erbb4 1
## Plasma Lipoprotein Remodeling 1
## Regulation Of Mecp2 Expression And Activity 1
## Rho Gtpase Effectors 4
## Rho Gtpases Activate Iqgaps 1
## Rhov Gtpase Cycle 1
## Sialic Acid Metabolism 1
## Signal Amplification 1
## Signaling By Notch2 1
## Signaling By Robo Receptors 3
## Thrombin Signalling Through Proteinase Activated Receptors Pars 1
## Late Endosomal Microautophagy 1
## Metabolism Of Water Soluble Vitamins And Cofactors 2
## Negative Regulation Of Fgfr2 Signaling 1
## Oncogene Induced Senescence 1
## Raf Activation 1
## Resolution Of D Loop Structures 1
## Rhou Gtpase Cycle 1
## Signaling By Wnt 4
## Signalling To Erks 1
## Ca Dependent Events 1
## Hdr Through Single Strand Annealing Ssa 1
## Interleukin 7 Signaling 1
## Metalloprotease Dubs 1
## Mhc Class Ii Antigen Presentation 2
## Nuclear Pore Complex Npc Disassembly 1
## Rho Gtpases Activate Wasps And Waves 1
## Ros And Rns Production In Phagocytes 1
## Cell Cell Communication 2
## Diseases Of Mitotic Cell Cycle 1
## Triglyceride Metabolism 1
## Adora2b Mediated Anti Inflammatory Cytokines Production 2
## Association Of Tric Cct With Target Proteins During Biosynthesis 1
## Formation Of Fibrin Clot Clotting Cascade 1
## Generation Of Second Messenger Molecules 1
## Ret Signaling 1
## Signaling By Fgfr3 1
## Dag And Ip3 Signaling 1
## Hcmv Early Events 2
## Homologous Dna Pairing And Strand Exchange 1
## Met Promotes Cell Motility 1
## Rnd1 Gtpase Cycle 1
## Rnd3 Gtpase Cycle 1
## Signaling By Fgfr4 1
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 7
## Transcriptional Regulation By Ventx 1
## Aggrephagy 1
## Rho Gtpases Activate Formins 2
## Rnd2 Gtpase Cycle 1
## Sumoylation Of Transcription Cofactors 1
## Transcriptional Regulation By Tp53 4
## Beta Catenin Independent Wnt Signaling 2
## Diseases Of Glycosylation 2
## Elastic Fibre Formation 1
## Reproduction 2
## Estrogen Dependent Gene Expression 2
## Hiv Life Cycle 2
## Irs Mediated Signalling 1
## Metabolism Of Fat Soluble Vitamins 1
## Notch1 Intracellular Domain Regulates Transcription 1
## Chondroitin Sulfate Dermatan Sulfate Metabolism 1
## Recycling Pathway Of L1 1
## Retrograde Transport At The Trans Golgi Network 1
## Signaling By Fgfr1 1
## Tp53 Regulates Transcription Of Cell Cycle Genes 1
## Extension Of Telomeres 1
## Gap Junction Trafficking And Regulation 1
## Chromatin Modifying Enzymes 3
## G Protein Mediated Events 1
## Insulin Receptor Signalling Cascade 1
## Nuclear Envelope Breakdown 1
## Regulation Of Tp53 Activity 2
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 1
## Synthesis Of Pips At The Plasma Membrane 1
## Hcmv Infection 2
## Regulation Of Runx3 Expression And Activity 1
## S Phase 2
## Transcriptional Activation Of Mitochondrial Biogenesis 1
## Dna Double Strand Break Repair 2
## G2 M Checkpoints 2
## Iron Uptake And Transport 1
## Signaling By Notch1 Pest Domain Mutants In Cancer 1
## Signaling By The B Cell Receptor Bcr 2
## Stabilization Of P53 1
## Arachidonic Acid Metabolism 1
## Scf Skp2 Mediated Degradation Of P27 P21 1
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 1
## Defective Cftr Causes Cystic Fibrosis 1
## Disorders Of Transmembrane Transporters 2
## O Linked Glycosylation Of Mucins 1
## Asymmetric Localization Of Pcp Proteins 1
## Synthesis Of Substrates In N Glycan Biosythesis 1
## Cell Cycle 6
## Hdr Through Homologous Recombination Hrr 1
## Rab Geranylgeranylation 1
## Regulation Of Hmox1 Expression And Activity 1
## Diseases Associated With O Glycosylation Of Proteins 1
## Fcgr Activation 1
## G1 S Dna Damage Checkpoints 1
## Nonhomologous End Joining Nhej 1
## Sirt1 Negatively Regulates Rrna Expression 1
## Aurka Activation By Tpx2 1
## Condensation Of Prophase Chromosomes 1
## Signaling By Fgfr2 1
## Signaling By Notch1 1
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 1
## Ecm Proteoglycans 1
## Nuclear Envelope Ne Reassembly 1
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 1
## Signaling By Insulin Receptor 1
## Dna Damage Telomere Stress Induced Senescence 1
## Downstream Signaling Events Of B Cell Receptor Bcr 1
## G Alpha 12 13 Signalling Events 1
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 2
## Potential Therapeutics For Sars 1
## Recruitment Of Mitotic Centrosome Proteins And Complexes 1
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 1
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 1
## Degradation Of Beta Catenin By The Destruction Complex 1
## Fceri Mediated Ca 2 Mobilization 1
## Pi Metabolism 1
## Apc C Mediated Degradation Of Cell Cycle Proteins 1
## Regulation Of Plk1 Activity At G2 M Transition 1
## Signaling By Fgfr 1
## Opioid Signalling 1
## Peptide Hormone Metabolism 1
## Rab Gefs Exchange Gtp For Gdp On Rabs 1
## Mitochondrial Biogenesis 1
## Pcp Ce Pathway 1
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 1
## Regulation Of Tp53 Activity Through Phosphorylation 1
## Anchoring Of The Basal Body To The Plasma Membrane 1
## Hiv Infection 2
## Recruitment Of Numa To Mitotic Centrosomes 1
## Metabolism Of Nucleotides 1
## Processing Of Dna Double Strand Break Ends 1
## Protein Folding 1
## Visual Phototransduction 1
## Diseases Of Metabolism 2
## Potassium Channels 1
## Stimuli Sensing Channels 1
## O Linked Glycosylation 1
## Telomere Maintenance 1
## Neuronal System 3
## Cell Cycle Mitotic 4
## Regulation Of Lipid Metabolism By Pparalpha 1
## Transmission Across Chemical Synapses 2
## Glycosaminoglycan Metabolism 1
## Rab Regulation Of Trafficking 1
## Cardiac Conduction 1
## Resolution Of Sister Chromatid Cohesion 1
## Transport Of Small Molecules 5
## Cell Cycle Checkpoints 2
## Fceri Mediated Nf Kb Activation 1
## Homology Directed Repair 1
## Metabolism Of Carbohydrates 2
## Organelle Biogenesis And Maintenance 2
## Chromosome Maintenance 1
## G Alpha S Signalling Events 1
## Mitotic Prophase 1
## Sars Cov Infections 1
## Dna Repair 2
## Protein Localization 1
## Factors Involved In Megakaryocyte Development And Platelet Production 1
## Fatty Acid Metabolism 1
## Ion Channel Transport 1
## Muscle Contraction 1
## Cilium Assembly 1
## Intra Golgi And Retrograde Golgi To Er Traffic 1
## Mitotic G2 G2 M Phases 1
## Mitotic Prometaphase 1
## Metabolism Of Lipids 4
## Phospholipid Metabolism 1
## Mitotic Metaphase And Anaphase 1
## Metabolism Of Amino Acids And Derivatives 1
## M Phase 1
## Sensory Perception 1
## 2 Ltr Circle Formation 0
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 0
## Abacavir Metabolism 0
## Abacavir Transmembrane Transport 0
## Abacavir Transport And Metabolism 0
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 0
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 0
## Acetylcholine Binding And Downstream Events 0
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 0
## Acetylcholine Neurotransmitter Release Cycle 0
## Acetylcholine Regulates Insulin Secretion 0
## Acrosome Reaction And Sperm Oocyte Membrane Binding 0
## Activated Notch1 Transmits Signal To The Nucleus 0
## Activated Ntrk2 Signals Through Cdk5 0
## Activated Ntrk2 Signals Through Frs2 And Frs3 0
## Activated Ntrk2 Signals Through Pi3k 0
## Activated Ntrk2 Signals Through Ras 0
## Activated Ntrk3 Signals Through Ras 0
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 0
## Activation Of Ampk Downstream Of Nmdars 0
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 0
## Activation Of Atr In Response To Replication Stress 0
## Activation Of Bad And Translocation To Mitochondria 0
## Activation Of Gene Expression By Srebf Srebp 0
## Activation Of Kainate Receptors Upon Glutamate Binding 0
## Activation Of Noxa And Translocation To Mitochondria 0
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 0
## Activation Of Puma And Translocation To Mitochondria 0
## Activation Of Rac1 0
## Activation Of Rac1 Downstream Of Nmdars 0
## Activation Of Ras In B Cells 0
## Activation Of Smo 0
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 0
## Activation Of The Phototransduction Cascade 0
## Activation Of The Pre Replicative Complex 0
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 0
## Activation Of Trka Receptors 0
## Acyl Chain Remodeling Of Cl 0
## Acyl Chain Remodeling Of Dag And Tag 0
## Acyl Chain Remodelling Of Pc 0
## Acyl Chain Remodelling Of Pe 0
## Acyl Chain Remodelling Of Pg 0
## Acyl Chain Remodelling Of Pi 0
## Acyl Chain Remodelling Of Ps 0
## Adenylate Cyclase Activating Pathway 0
## Adenylate Cyclase Inhibitory Pathway 0
## Adherens Junctions Interactions 0
## Adp Signalling Through P2y Purinoceptor 12 0
## Adrenaline Noradrenaline Inhibits Insulin Secretion 0
## Adrenoceptors 0
## Aflatoxin Activation And Detoxification 0
## Akt Phosphorylates Targets In The Cytosol 0
## Alpha Defensins 0
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 0
## Alpha Oxidation Of Phytanate 0
## Alpha Protein Kinase 1 Signaling Pathway 0
## Amine Ligand Binding Receptors 0
## Amino Acid Conjugation 0
## Amino Acid Transport Across The Plasma Membrane 0
## Amino Acids Regulate Mtorc1 0
## Ampk Inhibits Chrebp Transcriptional Activation Activity 0
## Anchoring Fibril Formation 0
## Androgen Biosynthesis 0
## Antigen Processing Ubiquitination Proteasome Degradation 0
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 0
## Apc Cdc20 Mediated Degradation Of Nek2a 0
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 0
## Apobec3g Mediated Resistance To Hiv 1 Infection 0
## Aquaporin Mediated Transport 0
## Arachidonate Production From Dag 0
## Arms Mediated Activation 0
## Aryl Hydrocarbon Receptor Signalling 0
## Aspartate And Asparagine Metabolism 0
## Assembly And Cell Surface Presentation Of Nmda Receptors 0
## Assembly Of Active Lpl And Lipc Lipase Complexes 0
## Assembly Of The Hiv Virion 0
## Assembly Of The Orc Complex At The Origin Of Replication 0
## Assembly Of The Pre Replicative Complex 0
## Atf6 Atf6 Alpha Activates Chaperone Genes 0
## Atf6 Atf6 Alpha Activates Chaperones 0
## Attachment And Entry 0
## Attachment Of Gpi Anchor To Upar 0
## Attenuation Phase 0
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 0
## B Wich Complex Positively Regulates Rrna Expression 0
## Base Excision Repair 0
## Base Excision Repair Ap Site Formation 0
## Bbsome Mediated Cargo Targeting To Cilium 0
## Beta Catenin Phosphorylation Cascade 0
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 0
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 0
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 0
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 0
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 0
## Beta Oxidation Of Pristanoyl Coa 0
## Beta Oxidation Of Very Long Chain Fatty Acids 0
## Bicarbonate Transporters 0
## Bile Acid And Bile Salt Metabolism 0
## Biological Oxidations 0
## Biosynthesis Of Maresin Like Spms 0
## Biosynthesis Of Maresins 0
## Biotin Transport And Metabolism 0
## Blood Group Systems Biosynthesis 0
## Budding And Maturation Of Hiv Virion 0
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 0
## Butyrophilin Btn Family Interactions 0
## Ca2 Activated K Channels 0
## Calcineurin Activates Nfat 0
## Calcitonin Like Ligand Receptors 0
## Calnexin Calreticulin Cycle 0
## Carboxyterminal Post Translational Modifications Of Tubulin 0
## Cargo Trafficking To The Periciliary Membrane 0
## Carnitine Metabolism 0
## Cation Coupled Chloride Cotransporters 0
## Cd209 Dc Sign Signaling 0
## Cd22 Mediated Bcr Regulation 0
## Cdc6 Association With The Orc Origin Complex 0
## Cell Cell Junction Organization 0
## Cell Extracellular Matrix Interactions 0
## Cell Junction Organization 0
## Cellular Hexose Transport 0
## Cellular Response To Hypoxia 0
## Cellular Response To Starvation 0
## Cgmp Effects 0
## Chl1 Interactions 0
## Cholesterol Biosynthesis 0
## Choline Catabolism 0
## Chondroitin Sulfate Biosynthesis 0
## Chrebp Activates Metabolic Gene Expression 0
## Chylomicron Clearance 0
## Citric Acid Cycle Tca Cycle 0
## Class C 3 Metabotropic Glutamate Pheromone Receptors 0
## Class I Peroxisomal Membrane Protein Import 0
## Clec7a Dectin 1 Induces Nfat Activation 0
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 0
## Coenzyme A Biosynthesis 0
## Cohesin Loading Onto Chromatin 0
## Collagen Biosynthesis And Modifying Enzymes 0
## Collagen Chain Trimerization 0
## Common Pathway Of Fibrin Clot Formation 0
## Competing Endogenous Rnas Cernas Regulate Pten Translation 0
## Complex I Biogenesis 0
## Conjugation Of Benzoate With Glycine 0
## Constitutive Signaling By Overexpressed Erbb2 0
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 0
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 0
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 0
## Copi Dependent Golgi To Er Retrograde Traffic 0
## Copi Independent Golgi To Er Retrograde Traffic 0
## Creatine Metabolism 0
## Creb3 Factors Activate Genes 0
## Cristae Formation 0
## Crmps In Sema3a Signaling 0
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 0
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 0
## Cs Ds Degradation 0
## Cyp2e1 Reactions 0
## Cytochrome P450 Arranged By Substrate Type 0
## Cytosolic Iron Sulfur Cluster Assembly 0
## Cytosolic Sulfonation Of Small Molecules 0
## Cytosolic Trna Aminoacylation 0
## Darpp 32 Events 0
## Deactivation Of The Beta Catenin Transactivating Complex 0
## Deadenylation Dependent Mrna Decay 0
## Deadenylation Of Mrna 0
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 0
## Defective B4galt7 Causes Eds Progeroid Type 0
## Defective Chst14 Causes Eds Musculocontractural Type 0
## Defective Chst3 Causes Sedcjd 0
## Defective Chst6 Causes Mcdc1 0
## Defective Chsy1 Causes Tpbs 0
## Defective Csf2rb Causes Smdp5 0
## Defective Ext2 Causes Exostoses 2 0
## Defective F9 Activation 0
## Defective Factor Ix Causes Hemophilia B 0
## Defective Lfng Causes Scdo3 0
## Defective Ripk1 Mediated Regulated Necrosis 0
## Defective St3gal3 Causes Mct12 And Eiee15 0
## Defects In Biotin Btn Metabolism 0
## Defects In Cobalamin B12 Metabolism 0
## Defects In Vitamin And Cofactor Metabolism 0
## Degradation Of Axin 0
## Degradation Of Cysteine And Homocysteine 0
## Degradation Of Dvl 0
## Degradation Of Gli1 By The Proteasome 0
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 0
## Detoxification Of Reactive Oxygen Species 0
## Digestion 0
## Digestion And Absorption 0
## Digestion Of Dietary Carbohydrate 0
## Digestion Of Dietary Lipid 0
## Diseases Associated With Glycosaminoglycan Metabolism 0
## Diseases Associated With N Glycosylation Of Proteins 0
## Diseases Associated With Surfactant Metabolism 0
## Diseases Of Base Excision Repair 0
## Diseases Of Carbohydrate Metabolism 0
## Diseases Of Dna Repair 0
## Diseases Of Mismatch Repair Mmr 0
## Disinhibition Of Snare Formation 0
## Displacement Of Dna Glycosylase By Apex1 0
## Dna Damage Bypass 0
## Dna Damage Recognition In Gg Ner 0
## Dna Damage Reversal 0
## Dna Replication 0
## Dna Replication Initiation 0
## Dna Replication Pre Initiation 0
## Dna Strand Elongation 0
## Dopamine Neurotransmitter Release Cycle 0
## Dopamine Receptors 0
## Downregulation Of Erbb2 Erbb3 Signaling 0
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 0
## Downregulation Of Tgf Beta Receptor Signaling 0
## Downstream Signaling Of Activated Fgfr1 0
## Downstream Signaling Of Activated Fgfr2 0
## Downstream Signaling Of Activated Fgfr3 0
## Downstream Signaling Of Activated Fgfr4 0
## Dual Incision In Gg Ner 0
## Dual Incision In Tc Ner 0
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 0
## Effects Of Pip2 Hydrolysis 0
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 0
## Eicosanoid Ligand Binding Receptors 0
## Eicosanoids 0
## Electric Transmission Across Gap Junctions 0
## Elevation Of Cytosolic Ca2 Levels 0
## Endogenous Sterols 0
## Endosomal Sorting Complex Required For Transport Escrt 0
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 0
## Er Quality Control Compartment Erqc 0
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 0
## Erk Mapk Targets 0
## Erks Are Inactivated 0
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 0
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 0
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 0
## Erythropoietin Activates Phospholipase C Gamma Plcg 0
## Erythropoietin Activates Ras 0
## Erythropoietin Activates Stat5 0
## Establishment Of Sister Chromatid Cohesion 0
## Estrogen Biosynthesis 0
## Estrogen Stimulated Signaling Through Prkcz 0
## Ethanol Oxidation 0
## Eukaryotic Translation Elongation 0
## Eukaryotic Translation Initiation 0
## Export Of Viral Ribonucleoproteins From Nucleus 0
## Extrinsic Pathway Of Fibrin Clot Formation 0
## Fanconi Anemia Pathway 0
## Fatty Acids 0
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 0
## Fatty Acyl Coa Biosynthesis 0
## Fbxw7 Mutants And Notch1 In Cancer 0
## Fertilization 0
## Fgfr1 Ligand Binding And Activation 0
## Fgfr1b Ligand Binding And Activation 0
## Fgfr1c Ligand Binding And Activation 0
## Fgfr2 Alternative Splicing 0
## Fgfr2 Ligand Binding And Activation 0
## Fgfr2 Mutant Receptor Activation 0
## Fgfr2b Ligand Binding And Activation 0
## Fgfr2c Ligand Binding And Activation 0
## Fgfr3 Ligand Binding And Activation 0
## Fgfr3b Ligand Binding And Activation 0
## Fgfrl1 Modulation Of Fgfr1 Signaling 0
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 0
## Flt3 Signaling 0
## Flt3 Signaling By Cbl Mutants 0
## Flt3 Signaling In Disease 0
## Flt3 Signaling Through Src Family Kinases 0
## Folding Of Actin By Cct Tric 0
## Formation Of Apoptosome 0
## Formation Of Atp By Chemiosmotic Coupling 0
## Formation Of Incision Complex In Gg Ner 0
## Formation Of Rna Pol Ii Elongation Complex 0
## Formation Of Senescence Associated Heterochromatin Foci Sahf 0
## Formation Of Tc Ner Pre Incision Complex 0
## Formation Of The Cornified Envelope 0
## Formation Of The Early Elongation Complex 0
## Formation Of Tubulin Folding Intermediates By Cct Tric 0
## Formation Of Xylulose 5 Phosphate 0
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 0
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 0
## Free Fatty Acid Receptors 0
## Free Fatty Acids Regulate Insulin Secretion 0
## Frs Mediated Fgfr1 Signaling 0
## Frs Mediated Fgfr2 Signaling 0
## Frs Mediated Fgfr3 Signaling 0
## Frs Mediated Fgfr4 Signaling 0
## Fructose Catabolism 0
## Fructose Metabolism 0
## G Alpha Z Signalling Events 0
## G Beta Gamma Signalling Through Pi3kgamma 0
## G Protein Activation 0
## G2 Phase 0
## Gaba B Receptor Activation 0
## Gaba Receptor Activation 0
## Gaba Synthesis Release Reuptake And Degradation 0
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 0
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 0
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 0
## Gap Junction Assembly 0
## Gap Junction Degradation 0
## Gdp Fucose Biosynthesis 0
## Gene Silencing By Rna 0
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 0
## Global Genome Nucleotide Excision Repair Gg Ner 0
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 0
## Glucagon Signaling In Metabolic Regulation 0
## Glucagon Type Ligand Receptors 0
## Glucocorticoid Biosynthesis 0
## Gluconeogenesis 0
## Glucose Metabolism 0
## Glucuronidation 0
## Glutamate And Glutamine Metabolism 0
## Glutamate Neurotransmitter Release Cycle 0
## Glutathione Conjugation 0
## Glutathione Synthesis And Recycling 0
## Glycerophospholipid Biosynthesis 0
## Glycerophospholipid Catabolism 0
## Glycogen Breakdown Glycogenolysis 0
## Glycogen Metabolism 0
## Glycogen Storage Diseases 0
## Glycogen Synthesis 0
## Glycolysis 0
## Glycosphingolipid Metabolism 0
## Glyoxylate Metabolism And Glycine Degradation 0
## Golgi Associated Vesicle Biogenesis 0
## Golgi To Er Retrograde Transport 0
## Grb7 Events In Erbb2 Signaling 0
## Hats Acetylate Histones 0
## Hcmv Late Events 0
## Hdacs Deacetylate Histones 0
## Hdms Demethylate Histones 0
## Hdr Through Mmej Alt Nhej 0
## Hedgehog Ligand Biogenesis 0
## Hedgehog Off State 0
## Hedgehog On State 0
## Heme Biosynthesis 0
## Heparan Sulfate Heparin Hs Gag Metabolism 0
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 0
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 0
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 0
## Histidine Catabolism 0
## Hiv Elongation Arrest And Recovery 0
## Hiv Transcription Elongation 0
## Hiv Transcription Initiation 0
## Hormone Ligand Binding Receptors 0
## Host Interactions Of Hiv Factors 0
## Hs Gag Biosynthesis 0
## Hs Gag Degradation 0
## Hsf1 Activation 0
## Hsf1 Dependent Transactivation 0
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 0
## Hur Elavl1 Binds And Stabilizes Mrna 0
## Hyaluronan Biosynthesis And Export 0
## Hyaluronan Metabolism 0
## Hyaluronan Uptake And Degradation 0
## Hydrolysis Of Lpc 0
## Il 6 Type Cytokine Receptor Ligand Interactions 0
## Influenza Infection 0
## Inhibition Of Dna Recombination At Telomere 0
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 0
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 0
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 0
## Inositol Phosphate Metabolism 0
## Insulin Processing 0
## Insulin Receptor Recycling 0
## Integration Of Energy Metabolism 0
## Integration Of Provirus 0
## Interaction Between L1 And Ankyrins 0
## Interaction With Cumulus Cells And The Zona Pellucida 0
## Interactions Of Rev With Host Cellular Proteins 0
## Interactions Of Vpr With Host Cellular Proteins 0
## Interconversion Of Nucleotide Di And Triphosphates 0
## Interleukin 36 Pathway 0
## Intestinal Absorption 0
## Intra Golgi Traffic 0
## Intraflagellar Transport 0
## Inwardly Rectifying K Channels 0
## Ion Homeostasis 0
## Ion Transport By P Type Atpases 0
## Ionotropic Activity Of Kainate Receptors 0
## Irak2 Mediated Activation Of Tak1 Complex 0
## Ire1alpha Activates Chaperones 0
## Irf3 Mediated Activation Of Type 1 Ifn 0
## Irs Activation 0
## Josephin Domain Dubs 0
## Keratan Sulfate Biosynthesis 0
## Keratan Sulfate Degradation 0
## Keratan Sulfate Keratin Metabolism 0
## Keratinization 0
## Ketone Body Metabolism 0
## Kinesins 0
## Ksrp Khsrp Binds And Destabilizes Mrna 0
## Lagging Strand Synthesis 0
## Laminin Interactions 0
## Leukotriene Receptors 0
## Lgi Adam Interactions 0
## Ligand Receptor Interactions 0
## Linoleic Acid La Metabolism 0
## Lipid Particle Organization 0
## Lipophagy 0
## Loss Of Function Of Mecp2 In Rett Syndrome 0
## Loss Of Function Of Smad2 3 In Cancer 0
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 0
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 0
## Ltc4 Cysltr Mediated Il4 Production 0
## Lysine Catabolism 0
## Lysosome Vesicle Biogenesis 0
## Lysosphingolipid And Lpa Receptors 0
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 0
## Maturation Of Nucleoprotein 0
## Maturation Of Protein 3a 0
## Maturation Of Sars Cov 1 Spike Protein 0
## Maturation Of Sars Cov 2 Spike Protein 0
## Meiotic Synapsis 0
## Melanin Biosynthesis 0
## Met Activates Pi3k Akt Signaling 0
## Met Activates Ptpn11 0
## Met Activates Rap1 And Rac1 0
## Met Activates Ras Signaling 0
## Met Interacts With Tns Proteins 0
## Met Receptor Activation 0
## Met Receptor Recycling 0
## Metabolic Disorders Of Biological Oxidation Enzymes 0
## Metabolism Of Amine Derived Hormones 0
## Metabolism Of Angiotensinogen To Angiotensins 0
## Metabolism Of Cofactors 0
## Metabolism Of Folate And Pterines 0
## Metabolism Of Ingested Semet Sec Mesec Into H2se 0
## Metabolism Of Polyamines 0
## Metabolism Of Rna 0
## Metabolism Of Steroid Hormones 0
## Metabolism Of Steroids 0
## Metal Ion Slc Transporters 0
## Metal Sequestration By Antimicrobial Proteins 0
## Metallothioneins Bind Metals 0
## Methionine Salvage Pathway 0
## Methylation 0
## Microrna Mirna Biogenesis 0
## Mineralocorticoid Biosynthesis 0
## Miro Gtpase Cycle 0
## Miscellaneous Substrates 0
## Miscellaneous Transport And Binding Events 0
## Mismatch Repair 0
## Mitochondrial Calcium Ion Transport 0
## Mitochondrial Fatty Acid Beta Oxidation 0
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 0
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 0
## Mitochondrial Iron Sulfur Cluster Biogenesis 0
## Mitochondrial Protein Import 0
## Mitochondrial Translation 0
## Mitochondrial Trna Aminoacylation 0
## Mitochondrial Uncoupling 0
## Mitotic Spindle Checkpoint 0
## Mitotic Telophase Cytokinesis 0
## Molecules Associated With Elastic Fibres 0
## Molybdenum Cofactor Biosynthesis 0
## Mrna Capping 0
## Mrna Decay By 3 To 5 Exoribonuclease 0
## Mrna Decay By 5 To 3 Exoribonuclease 0
## Mrna Editing 0
## Mrna Editing C To U Conversion 0
## Mrna Splicing 0
## Mrna Splicing Minor Pathway 0
## Mtor Signalling 0
## Mtorc1 Mediated Signalling 0
## Mucopolysaccharidoses 0
## Multifunctional Anion Exchangers 0
## Muscarinic Acetylcholine Receptors 0
## Myoclonic Epilepsy Of Lafora 0
## N Glycan Antennae Elongation 0
## N Glycan Antennae Elongation In The Medial Trans Golgi 0
## N Glycan Trimming And Elongation In The Cis Golgi 0
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 0
## Na Cl Dependent Neurotransmitter Transporters 0
## Ncam1 Interactions 0
## Nectin Necl Trans Heterodimerization 0
## Neddylation 0
## Nef And Signal Transduction 0
## Nef Mediated Cd4 Down Regulation 0
## Nef Mediated Cd8 Down Regulation 0
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 0
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 0
## Negative Feedback Regulation Of Mapk Pathway 0
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 0
## Negative Regulation Of Flt3 0
## Negative Regulation Of Mapk Pathway 0
## Negative Regulation Of Met Activity 0
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 0
## Negative Regulation Of Notch4 Signaling 0
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 0
## Nephrin Family Interactions 0
## Neurexins And Neuroligins 0
## Neurofascin Interactions 0
## Neurotoxicity Of Clostridium Toxins 0
## Neurotransmitter Clearance 0
## Neurotransmitter Release Cycle 0
## Ngf Independant Trka Activation 0
## Nitric Oxide Stimulates Guanylate Cyclase 0
## Non Integrin Membrane Ecm Interactions 0
## Noncanonical Activation Of Notch3 0
## Nonsense Mediated Decay Nmd 0
## Norepinephrine Neurotransmitter Release Cycle 0
## Notch Hlh Transcription Pathway 0
## Notch2 Activation And Transmission Of Signal To The Nucleus 0
## Notch4 Activation And Transmission Of Signal To The Nucleus 0
## Notch4 Intracellular Domain Regulates Transcription 0
## Nr1h2 And Nr1h3 Mediated Signaling 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 0
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 0
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 0
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 0
## Nrcam Interactions 0
## Ns1 Mediated Effects On Host Pathways 0
## Ntrk2 Activates Rac1 0
## Nuclear Import Of Rev Protein 0
## Nuclear Receptor Transcription Pathway 0
## Nucleobase Biosynthesis 0
## Nucleobase Catabolism 0
## Nucleotide Excision Repair 0
## Nucleotide Like Purinergic Receptors 0
## O Glycosylation Of Tsr Domain Containing Proteins 0
## Olfactory Signaling Pathway 0
## Opsins 0
## Orc1 Removal From Chromatin 0
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 0
## Organic Anion Transport 0
## Organic Anion Transporters 0
## Organic Cation Anion Zwitterion Transport 0
## Organic Cation Transport 0
## P2y Receptors 0
## P75ntr Negatively Regulates Cell Cycle Via Sc1 0
## Passive Transport By Aquaporins 0
## Pcna Dependent Long Patch Base Excision Repair 0
## Pentose Phosphate Pathway 0
## Peptide Hormone Biosynthesis 0
## Peroxisomal Lipid Metabolism 0
## Peroxisomal Protein Import 0
## Phase 0 Rapid Depolarisation 0
## Phase 1 Inactivation Of Fast Na Channels 0
## Phase 2 Plateau Phase 0
## Phase 3 Rapid Repolarisation 0
## Phase I Functionalization Of Compounds 0
## Phase Ii Conjugation Of Compounds 0
## Phenylalanine And Tyrosine Metabolism 0
## Phenylalanine Metabolism 0
## Phosphate Bond Hydrolysis By Ntpdase Proteins 0
## Phosphate Bond Hydrolysis By Nudt Proteins 0
## Phospholipase C Mediated Cascade Fgfr2 0
## Phospholipase C Mediated Cascade Fgfr4 0
## Physiological Factors 0
## Pi 3k Cascade Fgfr1 0
## Pi 3k Cascade Fgfr2 0
## Pi 3k Cascade Fgfr3 0
## Pi 3k Cascade Fgfr4 0
## Pi3k Akt Activation 0
## Pi3k Events In Erbb4 Signaling 0
## Pi5p Regulates Tp53 Acetylation 0
## Piwi Interacting Rna Pirna Biogenesis 0
## Pka Activation In Glucagon Signalling 0
## Pka Mediated Phosphorylation Of Key Metabolic Factors 0
## Pkmts Methylate Histone Lysines 0
## Platelet Calcium Homeostasis 0
## Platelet Homeostasis 0
## Platelet Sensitization By Ldl 0
## Polb Dependent Long Patch Base Excision Repair 0
## Polo Like Kinase Mediated Events 0
## Polymerase Switching 0
## Polymerase Switching On The C Strand Of The Telomere 0
## Positive Epigenetic Regulation Of Rrna Expression 0
## Post Chaperonin Tubulin Folding Pathway 0
## Postmitotic Nuclear Pore Complex Npc Reformation 0
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 0
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 0
## Pre Notch Expression And Processing 0
## Pre Notch Processing In Golgi 0
## Pre Notch Processing In The Endoplasmic Reticulum 0
## Pregnenolone Biosynthesis 0
## Presynaptic Depolarization And Calcium Channel Opening 0
## Presynaptic Function Of Kainate Receptors 0
## Prevention Of Phagosomal Lysosomal Fusion 0
## Processing And Activation Of Sumo 0
## Processing Of Capped Intron Containing Pre Mrna 0
## Processing Of Capped Intronless Pre Mrna 0
## Processing Of Intronless Pre Mrnas 0
## Processing Of Smdt1 0
## Processive Synthesis On The C Strand Of The Telomere 0
## Processive Synthesis On The Lagging Strand 0
## Prolactin Receptor Signaling 0
## Prolonged Erk Activation Events 0
## Propionyl Coa Catabolism 0
## Prostacyclin Signalling Through Prostacyclin Receptor 0
## Prostanoid Ligand Receptors 0
## Protein Methylation 0
## Protein Protein Interactions At Synapses 0
## Protein Ubiquitination 0
## Proton Coupled Monocarboxylate Transport 0
## Pten Regulation 0
## Ptk6 Expression 0
## Ptk6 Regulates Proteins Involved In Rna Processing 0
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 0
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 0
## Purine Catabolism 0
## Purine Ribonucleoside Monophosphate Biosynthesis 0
## Pyrimidine Catabolism 0
## Pyrimidine Salvage 0
## Pyruvate Metabolism 0
## Pyruvate Metabolism And Citric Acid Tca Cycle 0
## Ra Biosynthesis Pathway 0
## Rap1 Signalling 0
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 0
## Ras Processing 0
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 0
## Reactions Specific To The Complex N Glycan Synthesis Pathway 0
## Receptor Type Tyrosine Protein Phosphatases 0
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 0
## Recognition Of Dna Damage By Pcna Containing Replication Complex 0
## Recycling Of Bile Acids And Salts 0
## Recycling Of Eif2 Gdp 0
## Reduction Of Cytosolic Ca Levels 0
## Reelin Signalling Pathway 0
## Regulated Proteolysis Of P75ntr 0
## Regulation Of Bach1 Activity 0
## Regulation Of Beta Cell Development 0
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 0
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 0
## Regulation Of Expression Of Slits And Robos 0
## Regulation Of Fzd By Ubiquitination 0
## Regulation Of Gene Expression By Hypoxia Inducible Factor 0
## Regulation Of Gene Expression In Beta Cells 0
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 0
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 0
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 0
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 0
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 0
## Regulation Of Innate Immune Responses To Cytosolic Dna 0
## Regulation Of Insulin Secretion 0
## Regulation Of Localization Of Foxo Transcription Factors 0
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 0
## Regulation Of Pten Gene Transcription 0
## Regulation Of Pten Localization 0
## Regulation Of Pten Mrna Translation 0
## Regulation Of Pten Stability And Activity 0
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 0
## Regulation Of Ras By Gaps 0
## Regulation Of Signaling By Cbl 0
## Regulation Of Signaling By Nodal 0
## Regulation Of Tp53 Activity Through Acetylation 0
## Regulation Of Tp53 Activity Through Association With Co Factors 0
## Relaxin Receptors 0
## Release Of Apoptotic Factors From The Mitochondria 0
## Release Of Hh Np From The Secreting Cell 0
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 0
## Resolution Of Abasic Sites Ap Sites 0
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 0
## Respiratory Electron Transport 0
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 0
## Response Of Eif2ak1 Hri To Heme Deficiency 0
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 0
## Response Of Mtb To Phagocytosis 0
## Response To Metal Ions 0
## Retinoid Cycle Disease Events 0
## Retrograde Neurotrophin Signalling 0
## Reversible Hydration Of Carbon Dioxide 0
## Rho Gtpases Activate Cit 0
## Rho Gtpases Activate Pkns 0
## Rho Gtpases Activate Rhotekin And Rhophilins 0
## Rho Gtpases Activate Rocks 0
## Rhobtb Gtpase Cycle 0
## Rhobtb1 Gtpase Cycle 0
## Rhobtb2 Gtpase Cycle 0
## Rhobtb3 Atpase Cycle 0
## Rhot1 Gtpase Cycle 0
## Rna Polymerase I Promoter Escape 0
## Rna Polymerase I Transcription 0
## Rna Polymerase I Transcription Initiation 0
## Rna Polymerase I Transcription Termination 0
## Rna Polymerase Ii Transcribes Snrna Genes 0
## Rna Polymerase Ii Transcription Termination 0
## Rna Polymerase Iii Chain Elongation 0
## Rna Polymerase Iii Transcription 0
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 0
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 0
## Rna Polymerase Iii Transcription Termination 0
## Robo Receptors Bind Akap5 0
## Role Of Abl In Robo Slit Signaling 0
## Role Of Lat2 Ntal Lab On Calcium Mobilization 0
## Role Of Phospholipids In Phagocytosis 0
## Role Of Second Messengers In Netrin 1 Signaling 0
## Rora Activates Gene Expression 0
## Rrna Modification In The Mitochondrion 0
## Rrna Modification In The Nucleus And Cytosol 0
## Rrna Processing 0
## Rrna Processing In The Mitochondrion 0
## Rsk Activation 0
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 0
## Runx1 Regulates Estrogen Receptor Mediated Transcription 0
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 0
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 0
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 0
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 0
## Runx3 Regulates Bcl2l11 Bim Transcription 0
## Runx3 Regulates Cdkn1a Transcription 0
## Runx3 Regulates Immune Response And Cell Migration 0
## Runx3 Regulates Notch Signaling 0
## Runx3 Regulates P14 Arf 0
## Runx3 Regulates Yap1 Mediated Transcription 0
## Sars Cov 1 Genome Replication And Transcription 0
## Sars Cov 1 Infection 0
## Sars Cov 2 Infection 0
## Scavenging By Class F Receptors 0
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 0
## Selenoamino Acid Metabolism 0
## Sema3a Pak Dependent Axon Repulsion 0
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 0
## Sema4d In Semaphorin Signaling 0
## Sema4d Induced Cell Migration And Growth Cone Collapse 0
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 0
## Sensory Processing Of Sound 0
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 0
## Separation Of Sister Chromatids 0
## Serine Biosynthesis 0
## Serotonin And Melatonin Biosynthesis 0
## Serotonin Neurotransmitter Release Cycle 0
## Serotonin Receptors 0
## Shc Mediated Cascade Fgfr1 0
## Shc Mediated Cascade Fgfr3 0
## Shc Mediated Cascade Fgfr4 0
## Shc Related Events Triggered By Igf1r 0
## Shc1 Events In Erbb4 Signaling 0
## Signal Attenuation 0
## Signaling By Activin 0
## Signaling By Bmp 0
## Signaling By Ctnnb1 Phospho Site Mutants 0
## Signaling By Erythropoietin 0
## Signaling By Fgfr2 Iiia Tm 0
## Signaling By Fgfr2 In Disease 0
## Signaling By Fgfr3 Fusions In Cancer 0
## Signaling By Fgfr4 In Disease 0
## Signaling By Flt3 Fusion Proteins 0
## Signaling By Flt3 Itd And Tkd Mutants 0
## Signaling By Hedgehog 0
## Signaling By Lrp5 Mutants 0
## Signaling By Mapk Mutants 0
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 0
## Signaling By Mras Complex Mutants 0
## Signaling By Mst1 0
## Signaling By Nodal 0
## Signaling By Notch1 Hd Domain Mutants In Cancer 0
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 0
## Signaling By Notch4 0
## Signaling By Retinoic Acid 0
## Signaling By Rnf43 Mutants 0
## Signaling By Tgf Beta Receptor Complex In Cancer 0
## Signaling By Wnt In Cancer 0
## Signalling To P38 Via Rit And Rin 0
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 0
## Slc Mediated Transmembrane Transport 0
## Slc Transporter Disorders 0
## Small Interfering Rna Sirna Biogenesis 0
## Smooth Muscle Contraction 0
## Snrnp Assembly 0
## Sodium Calcium Exchangers 0
## Sodium Coupled Phosphate Cotransporters 0
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 0
## Sodium Proton Exchangers 0
## Sos Mediated Signalling 0
## Sperm Motility And Taxes 0
## Sphingolipid De Novo Biosynthesis 0
## Sphingolipid Metabolism 0
## Srp Dependent Cotranslational Protein Targeting To Membrane 0
## Stat5 Activation 0
## Stat5 Activation Downstream Of Flt3 Itd Mutants 0
## Striated Muscle Contraction 0
## Sulfide Oxidation To Sulfate 0
## Sulfur Amino Acid Metabolism 0
## Sumo Is Conjugated To E1 Uba2 Sae1 0
## Sumo Is Proteolytically Processed 0
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 0
## Sumoylation Of Chromatin Organization Proteins 0
## Sumoylation Of Dna Damage Response And Repair Proteins 0
## Sumoylation Of Dna Replication Proteins 0
## Sumoylation Of Intracellular Receptors 0
## Sumoylation Of Rna Binding Proteins 0
## Sumoylation Of Sumoylation Proteins 0
## Sumoylation Of Transcription Factors 0
## Sumoylation Of Ubiquitinylation Proteins 0
## Suppression Of Apoptosis 0
## Suppression Of Phagosomal Maturation 0
## Surfactant Metabolism 0
## Switching Of Origins To A Post Replicative State 0
## Synaptic Adhesion Like Molecules 0
## Syndecan Interactions 0
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 0
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 0
## Synthesis Of 5 Eicosatetraenoic Acids 0
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 0
## Synthesis Of Bile Acids And Bile Salts 0
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 0
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 0
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 0
## Synthesis Of Diphthamide Eef2 0
## Synthesis Of Dolichyl Phosphate 0
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 0
## Synthesis Of Gdp Mannose 0
## Synthesis Of Glycosylphosphatidylinositol Gpi 0
## Synthesis Of Ip2 Ip And Ins In The Cytosol 0
## Synthesis Of Ip3 And Ip4 In The Cytosol 0
## Synthesis Of Ketone Bodies 0
## Synthesis Of Leukotrienes Lt And Eoxins Ex 0
## Synthesis Of Lipoxins Lx 0
## Synthesis Of Pa 0
## Synthesis Of Pc 0
## Synthesis Of Pe 0
## Synthesis Of Pg 0
## Synthesis Of Pi 0
## Synthesis Of Pips At The Early Endosome Membrane 0
## Synthesis Of Pips At The Er Membrane 0
## Synthesis Of Pips At The Golgi Membrane 0
## Synthesis Of Pips At The Late Endosome Membrane 0
## Synthesis Of Pyrophosphates In The Cytosol 0
## Synthesis Of Udp N Acetyl Glucosamine 0
## Synthesis Of Very Long Chain Fatty Acyl Coas 0
## Synthesis Of Wybutosine At G37 Of Trna Phe 0
## Synthesis Secretion And Deacylation Of Ghrelin 0
## Tachykinin Receptors Bind Tachykinins 0
## Tbc Rabgaps 0
## Telomere C Strand Lagging Strand Synthesis 0
## Telomere C Strand Synthesis Initiation 0
## Terminal Pathway Of Complement 0
## Termination Of Translesion Dna Synthesis 0
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 0
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 0
## Tgf Beta Receptor Signaling Activates Smads 0
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 0
## The Activation Of Arylsulfatases 0
## The Canonical Retinoid Cycle In Rods Twilight Vision 0
## The Citric Acid Tca Cycle And Respiratory Electron Transport 0
## The Fatty Acid Cycling Model 0
## The Phototransduction Cascade 0
## The Retinoid Cycle In Cones Daylight Vision 0
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 0
## Thromboxane Signalling Through Tp Receptor 0
## Thyroxine Biosynthesis 0
## Tie2 Signaling 0
## Tight Junction Interactions 0
## Toxicity Of Botulinum Toxin Type D Botd 0
## Tp53 Regulates Metabolic Genes 0
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 0
## Tp53 Regulates Transcription Of Death Receptors And Ligands 0
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 0
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 0
## Trafficking Of Ampa Receptors 0
## Trafficking Of Glur2 Containing Ampa Receptors 0
## Trafficking Of Myristoylated Proteins To The Cilium 0
## Trail Signaling 0
## Trans Golgi Network Vesicle Budding 0
## Transcription Coupled Nucleotide Excision Repair Tc Ner 0
## Transcription Of The Hiv Genome 0
## Transcriptional Regulation By E2f6 0
## Transcriptional Regulation By Small Rnas 0
## Transcriptional Regulation Of Testis Differentiation 0
## Transferrin Endocytosis And Recycling 0
## Translation 0
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 0
## Translation Of Sars Cov 1 Structural Proteins 0
## Translation Of Sars Cov 2 Structural Proteins 0
## Translesion Synthesis By Polh 0
## Translesion Synthesis By Polk 0
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 0
## Transport And Synthesis Of Paps 0
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 0
## Transport Of Connexons To The Plasma Membrane 0
## Transport Of Fatty Acids 0
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 0
## Transport Of Mature Mrnas Derived From Intronless Transcripts 0
## Transport Of Mature Transcript To Cytoplasm 0
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 0
## Transport Of Nucleotide Sugars 0
## Transport Of Organic Anions 0
## Transport Of The Slbp Dependant Mature Mrna 0
## Transport Of Vitamins Nucleosides And Related Molecules 0
## Triglyceride Biosynthesis 0
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 0
## Trna Aminoacylation 0
## Trna Modification In The Mitochondrion 0
## Trna Modification In The Nucleus And Cytosol 0
## Trna Processing 0
## Trna Processing In The Mitochondrion 0
## Trna Processing In The Nucleus 0
## Trp Channels 0
## Tryptophan Catabolism 0
## Type I Hemidesmosome Assembly 0
## Tyrosine Catabolism 0
## Tysnd1 Cleaves Peroxisomal Proteins 0
## Ubiquinol Biosynthesis 0
## Uch Proteinases 0
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 0
## Unwinding Of Dna 0
## Uptake And Actions Of Bacterial Toxins 0
## Uptake And Function Of Anthrax Toxins 0
## Uptake And Function Of Diphtheria Toxin 0
## Urea Cycle 0
## Vasopressin Like Receptors 0
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 0
## Vegf Ligand Receptor Interactions 0
## Viral Messenger Rna Synthesis 0
## Vitamin B1 Thiamin Metabolism 0
## Vitamin B2 Riboflavin Metabolism 0
## Vitamin B5 Pantothenate Metabolism 0
## Vitamin C Ascorbate Metabolism 0
## Vitamin D Calciferol Metabolism 0
## Vitamins 0
## Vldl Assembly 0
## Vldl Clearance 0
## Voltage Gated Potassium Channels 0
## Vxpx Cargo Targeting To Cilium 0
## Wax And Plasmalogen Biosynthesis 0
## Wnt Mediated Activation Of Dvl 0
## Xenobiotics 0
## Zinc Efflux And Compartmentalization By The Slc30 Family 0
## Zinc Influx Into Cells By The Slc39 Gene Family 0
## Zinc Transporters 0
## background
## Cytokine Signaling In Immune System 23467
## Signaling By Interleukins 23467
## Innate Immune System 23467
## Interleukin 10 Signaling 23467
## Interleukin 4 And Interleukin 13 Signaling 23467
## Chemokine Receptors Bind Chemokines 23467
## Peptide Ligand Binding Receptors 23467
## Toll Like Receptor Cascades 23467
## Signaling By Gpcr 23467
## Class A 1 Rhodopsin Like Receptors 23467
## Toll Like Receptor Tlr1 Tlr2 Cascade 23467
## Gpcr Ligand Binding 23467
## Interleukin 1 Family Signaling 23467
## G Alpha I Signalling Events 23467
## Neutrophil Degranulation 23467
## Toll Like Receptor 9 Tlr9 Cascade 23467
## Adaptive Immune System 23467
## Myd88 Independent Tlr4 Cascade 23467
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways 23467
## Diseases Of Immune System 23467
## Death Receptor Signalling 23467
## Leishmania Infection 23467
## Irak4 Deficiency Tlr2 4 23467
## Extra Nuclear Estrogen Signaling 23467
## Nod1 2 Signaling Pathway 23467
## Regulation Of Tlr By Endogenous Ligand 23467
## Complement Cascade 23467
## Purinergic Signaling In Leishmaniasis Infection 23467
## Programmed Cell Death 23467
## Interleukin 17 Signaling 23467
## Tnfr2 Non Canonical Nf Kb Pathway 23467
## Tnfs Bind Their Physiological Receptors 23467
## Interleukin 1 Signaling 23467
## Costimulation By The Cd28 Family 23467
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex 23467
## Negative Regulation Of The Pi3k Akt Network 23467
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell 23467
## Regulated Necrosis 23467
## Ovarian Tumor Domain Proteases 23467
## Extracellular Matrix Organization 23467
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 23467
## P75 Ntr Receptor Mediated Signalling 23467
## Antigen Processing Cross Presentation 23467
## Heme Signaling 23467
## Pyroptosis 23467
## Deubiquitination 23467
## Infectious Disease 23467
## Activation Of Matrix Metalloproteinases 23467
## Post Translational Protein Modification 23467
## P75ntr Signals Via Nf Kb 23467
## Esr Mediated Signaling 23467
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway 23467
## Fibronectin Matrix Formation 23467
## Gastrin Creb Signalling Pathway Via Pkc And Mapk 23467
## Pi3k Akt Signaling In Cancer 23467
## Beta Defensins 23467
## Ctla4 Inhibitory Signaling 23467
## Inflammasomes 23467
## Interleukin 2 Family Signaling 23467
## Dap12 Interactions 23467
## Interleukin 18 Signaling 23467
## Activated Tak1 Mediates P38 Mapk Activation 23467
## Constitutive Signaling By Aberrant Pi3k In Cancer 23467
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling 23467
## Mapk Family Signaling Cascades 23467
## Cd163 Mediating An Anti Inflammatory Response 23467
## Interleukin 1 Processing 23467
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway 23467
## Defensins 23467
## Apoptosis 23467
## Interleukin 12 Family Signaling 23467
## Interleukin 6 Signaling 23467
## Signaling By Nuclear Receptors 23467
## Antimicrobial Peptides 23467
## Cd28 Dependent Vav1 Pathway 23467
## Killing Mechanisms 23467
## Intracellular Signaling By Second Messengers 23467
## Cell Surface Interactions At The Vascular Wall 23467
## Cd28 Co Stimulation 23467
## Collagen Degradation 23467
## P75ntr Recruits Signalling Complexes 23467
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling 23467
## Hemostasis 23467
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers 23467
## Caspase Activation Via Death Receptors In The Presence Of Ligand 23467
## The Nlrp3 Inflammasome 23467
## Gab1 Signalosome 23467
## Rip Mediated Nfkb Activation Via Zbp1 23467
## Transcriptional Regulation By Runx2 23467
## Signaling By Scf Kit 23467
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps 23467
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta 23467
## Signaling By Receptor Tyrosine Kinases 23467
## Rna Polymerase Ii Transcription 23467
## Signaling By Kit In Disease 23467
## Zbp1 Dai Mediated Induction Of Type I Ifns 23467
## Signaling By Egfr 23467
## Eph Ephrin Mediated Repulsion Of Cells 23467
## Degradation Of The Extracellular Matrix 23467
## Eph Ephrin Signaling 23467
## Interferon Gamma Signaling 23467
## Ikk Complex Recruitment Mediated By Rip1 23467
## Cellular Senescence 23467
## Rac3 Gtpase Cycle 23467
## Cellular Responses To External Stimuli 23467
## Signaling By Ptk6 23467
## Platelet Activation Signaling And Aggregation 23467
## Interleukin 6 Family Signaling 23467
## Traf6 Mediated Nf Kb Activation 23467
## Vesicle Mediated Transport 23467
## Rhoq Gtpase Cycle 23467
## Assembly Of Collagen Fibrils And Other Multimeric Structures 23467
## Cargo Recognition For Clathrin Mediated Endocytosis 23467
## Cytosolic Sensors Of Pathogen Associated Dna 23467
## Pd 1 Signaling 23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells 23467
## Dap12 Signaling 23467
## Downstream Signal Transduction 23467
## Senescence Associated Secretory Phenotype Sasp 23467
## Tnfr1 Induced Nfkappab Signaling Pathway 23467
## Activation Of C3 And C5 23467
## Egfr Downregulation 23467
## Mapk Targets Nuclear Events Mediated By Map Kinases 23467
## Runx2 Regulates Genes Involved In Cell Migration 23467
## Egfr Interacts With Phospholipase C Gamma 23467
## Egfr Transactivation By Gastrin 23467
## Interleukin 9 Signaling 23467
## Trif Mediated Programmed Cell Death 23467
## Negative Regulators Of Ddx58 Ifih1 Signaling 23467
## Regulation Of Tnfr1 Signaling 23467
## Rhog Gtpase Cycle 23467
## Activation Of The Ap 1 Family Of Transcription Factors 23467
## Interleukin 21 Signaling 23467
## Mapk3 Erk1 Activation 23467
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs 23467
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation 23467
## Apoptotic Cleavage Of Cell Adhesion Proteins 23467
## Initial Triggering Of Complement 23467
## Interleukin 27 Signaling 23467
## Receptor Mediated Mitophagy 23467
## Response To Elevated Platelet Cytosolic Ca2 23467
## Selective Autophagy 23467
## Gp1b Ix V Activation Signalling 23467
## Interleukin 35 Signalling 23467
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants 23467
## Tp53 Regulates Transcription Of Caspase Activators And Caspases 23467
## Nervous System Development 23467
## C Type Lectin Receptors Clrs 23467
## Interferon Signaling 23467
## Apoptosis Induced Dna Fragmentation 23467
## Erbb2 Activates Ptk6 Signaling 23467
## Nf Kb Is Activated And Signals Survival 23467
## Rac2 Gtpase Cycle 23467
## Tnfr1 Induced Proapoptotic Signaling 23467
## Trafficking And Processing Of Endosomal Tlr 23467
## Tnf Signaling 23467
## Clathrin Mediated Endocytosis 23467
## Collagen Formation 23467
## Transcriptional Regulation Of Granulopoiesis 23467
## Dcc Mediated Attractive Signaling 23467
## Early Phase Of Hiv Life Cycle 23467
## Interleukin 15 Signaling 23467
## Shc1 Events In Egfr Signaling 23467
## Mapk6 Mapk4 Signaling 23467
## Interleukin 12 Signaling 23467
## Constitutive Signaling By Egfrviii 23467
## Erbb2 Regulates Cell Motility 23467
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins 23467
## P130cas Linkage To Mapk Signaling For Integrins 23467
## Signaling By Notch3 23467
## Ub Specific Processing Proteases 23467
## Binding And Uptake Of Ligands By Scavenger Receptors 23467
## Netrin 1 Signaling 23467
## Signaling By Erbb2 23467
## Grb2 Events In Erbb2 Signaling 23467
## Pi3k Events In Erbb2 Signaling 23467
## Signal Regulatory Protein Family Interactions 23467
## Signaling By Erbb2 Ecd Mutants 23467
## Sumoylation Of Dna Methylation Proteins 23467
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex 23467
## Cdc42 Gtpase Cycle 23467
## Clec7a Dectin 1 Signaling 23467
## Class I Mhc Mediated Antigen Processing Presentation 23467
## Apoptotic Execution Phase 23467
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon 23467
## Intrinsic Pathway For Apoptosis 23467
## Rhoj Gtpase Cycle 23467
## Signaling By Cytosolic Fgfr1 Fusion Mutants 23467
## Signaling By Vegf 23467
## Transcriptional Regulation By Runx1 23467
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants 23467
## Other Semaphorin Interactions 23467
## Scavenging By Class A Receptors 23467
## Ticam1 Rip1 Mediated Ikk Complex Recruitment 23467
## Signaling By Erbb4 23467
## Signaling By Pdgf 23467
## Signaling By Pdgfr In Disease 23467
## Interleukin 37 Signaling 23467
## Signal Transduction By L1 23467
## Cd28 Dependent Pi3k Akt Signaling 23467
## Rac1 Gtpase Cycle 23467
## Shc1 Events In Erbb2 Signaling 23467
## Foxo Mediated Transcription 23467
## Raf Independent Mapk1 3 Activation 23467
## Growth Hormone Receptor Signaling 23467
## Runx2 Regulates Osteoblast Differentiation 23467
## Circadian Clock 23467
## Inactivation Of Csf3 G Csf Signaling 23467
## Notch3 Activation And Transmission Of Signal To The Nucleus 23467
## Rhob Gtpase Cycle 23467
## Scavenging Of Heme From Plasma 23467
## Signaling By Egfr In Cancer 23467
## Interleukin 20 Family Signaling 23467
## Signaling By Erbb2 In Cancer 23467
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress 23467
## G0 And Early G1 23467
## Integrin Signaling 23467
## Interferon Alpha Beta Signaling 23467
## Interleukin Receptor Shc Signaling 23467
## Membrane Trafficking 23467
## Rhoc Gtpase Cycle 23467
## Signaling By Ntrks 23467
## Vegfr2 Mediated Vascular Permeability 23467
## Cell Death Signalling Via Nrage Nrif And Nade 23467
## Developmental Biology 23467
## Downregulation Of Erbb2 Signaling 23467
## Mitophagy 23467
## Ripk1 Mediated Regulated Necrosis 23467
## G Alpha Q Signalling Events 23467
## Signaling By Csf3 G Csf 23467
## Fgfr1 Mutant Receptor Activation 23467
## Nicotinate Metabolism 23467
## Runx2 Regulates Bone Development 23467
## Perk Regulates Gene Expression 23467
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription 23467
## Anti Inflammatory Response Favouring Leishmania Parasite Infection 23467
## Mitotic G1 Phase And G1 S Transition 23467
## Autophagy 23467
## Cargo Concentration In The Er 23467
## Plasma Lipoprotein Clearance 23467
## Fceri Mediated Mapk Activation 23467
## Gpvi Mediated Activation Cascade 23467
## Regulation Of Tp53 Expression And Degradation 23467
## Rhoh Gtpase Cycle 23467
## Apoptotic Cleavage Of Cellular Proteins 23467
## Fcgr3a Mediated Il10 Synthesis 23467
## Signaling By Fgfr1 In Disease 23467
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors 23467
## Ngf Stimulated Transcription 23467
## Platelet Aggregation Plug Formation 23467
## Map2k And Mapk Activation 23467
## Signaling By Notch 23467
## Alternative Complement Activation 23467
## Fasl Cd95l Signaling 23467
## G2 M Dna Replication Checkpoint 23467
## Galactose Catabolism 23467
## Hdl Clearance 23467
## Mecp2 Regulates Transcription Factors 23467
## Nostrin Mediated Enos Trafficking 23467
## Runx1 Regulates Expression Of Components Of Tight Junctions 23467
## Runx2 Regulates Chondrocyte Maturation 23467
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors 23467
## Ephb Mediated Forward Signaling 23467
## Rhof Gtpase Cycle 23467
## Diseases Of Programmed Cell Death 23467
## Tp53 Regulates Transcription Of Cell Death Genes 23467
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer 23467
## Activated Ntrk3 Signals Through Pi3k 23467
## Activation Of Caspases Through Apoptosome Mediated Cleavage 23467
## Biosynthesis Of Epa Derived Spms 23467
## Clec7a Inflammasome Pathway 23467
## Nade Modulates Death Signalling 23467
## Phosphorylation Of Emi1 23467
## Protein Repair 23467
## Ptk6 Promotes Hif1a Stabilization 23467
## Ptk6 Regulates Cell Cycle 23467
## Scavenging By Class B Receptors 23467
## Sensing Of Dna Double Strand Breaks 23467
## Signaling By Moderate Kinase Activity Braf Mutants 23467
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives 23467
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death 23467
## Tnfr1 Mediated Ceramide Production 23467
## Cyclin D Associated Events In G1 23467
## Fc Epsilon Receptor Fceri Signaling 23467
## Interleukin 3 Interleukin 5 And Gm Csf Signaling 23467
## Sumoylation 23467
## Activated Ntrk2 Signals Through Fyn 23467
## Activation Of Nima Kinases Nek9 Nek6 Nek7 23467
## Creb Phosphorylation 23467
## Defective Factor Viii Causes Hemophilia A 23467
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production 23467
## Ikba Variant Leads To Eda Id 23467
## Modulation By Mtb Of Host Immune System 23467
## Parasite Infection 23467
## Rhod Gtpase Cycle 23467
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters 23467
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde 23467
## Hdl Assembly 23467
## Inactivation Of Cdc42 And Rac1 23467
## Lectin Pathway Of Complement Activation 23467
## Mecp2 Regulates Transcription Of Neuronal Ligands 23467
## Netrin Mediated Repulsion Signals 23467
## Runx3 Regulates Wnt Signaling 23467
## Smac Xiap Regulated Apoptotic Response 23467
## L1cam Interactions 23467
## Cytoprotection By Hmox1 23467
## Tcr Signaling 23467
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members 23467
## Downregulation Of Erbb4 Signaling 23467
## E2f Enabled Inhibition Of Pre Replication Complex Formation 23467
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells 23467
## Interleukin 23 Signaling 23467
## Mapk1 Erk2 Activation 23467
## Oas Antiviral Response 23467
## Oxidative Stress Induced Senescence 23467
## Nrage Signals Death Through Jnk 23467
## Akt Phosphorylates Targets In The Nucleus 23467
## Camk Iv Mediated Phosphorylation Of Creb 23467
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand 23467
## Chylomicron Assembly 23467
## Chylomicron Remodeling 23467
## Hdl Remodeling 23467
## Mastl Facilitates Mitotic Progression 23467
## P75ntr Regulates Axonogenesis 23467
## Regulation Of Commissural Axon Pathfinding By Slit And Robo 23467
## Regulation Of Foxo Transcriptional Activity By Acetylation 23467
## Nuclear Events Kinase And Transcription Factor Activation 23467
## Ca2 Pathway 23467
## Tp53 Regulates Transcription Of Dna Repair Genes 23467
## Condensation Of Prometaphase Chromosomes 23467
## Dermatan Sulfate Biosynthesis 23467
## Dscam Interactions 23467
## Endosomal Vacuolar Pathway 23467
## Enos Activation 23467
## Ncam Signaling For Neurite Out Growth 23467
## Pexophagy 23467
## Regulation By C Flip 23467
## Rho Gtpases Activate Ktn1 23467
## Signaling By Fgfr In Disease 23467
## Signaling By Leptin 23467
## Sumoylation Of Immune Response Proteins 23467
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex 23467
## Transcriptional Regulation By Mecp2 23467
## Semaphorin Interactions 23467
## Dna Methylation 23467
## Signaling By Braf And Raf Fusions 23467
## Caspase Mediated Cleavage Of Cytoskeletal Proteins 23467
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase 23467
## Interleukin 2 Signaling 23467
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 23467
## Notch2 Intracellular Domain Regulates Transcription 23467
## Pecam1 Interactions 23467
## Tandem Pore Domain Potassium Channels 23467
## Ticam1 Dependent Activation Of Irf3 Irf7 23467
## Vldlr Internalisation And Degradation 23467
## Fcgamma Receptor Fcgr Dependent Phagocytosis 23467
## Copii Mediated Vesicle Transport 23467
## Tcf Dependent Signaling In Response To Wnt 23467
## Advanced Glycosylation Endproduct Receptor Signaling 23467
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex 23467
## Cytochrome C Mediated Apoptotic Response 23467
## Dissolution Of Fibrin Clot 23467
## Irf3 Mediated Induction Of Type I Ifn 23467
## P38mapk Events 23467
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation 23467
## Purine Salvage 23467
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip 23467
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 23467
## Epigenetic Regulation Of Gene Expression 23467
## Creation Of C4 And C2 Activators 23467
## Plasma Lipoprotein Assembly Remodeling And Clearance 23467
## Rhoa Gtpase Cycle 23467
## Golgi Cisternae Pericentriolar Stack Reorganization 23467
## Irak1 Recruits Ikk Complex 23467
## Regulation Of Ifng Signaling 23467
## Repression Of Wnt Target Genes 23467
## Traf3 Dependent Irf Activation Pathway 23467
## Prc2 Methylates Histones And Dna 23467
## Regulation Of Runx2 Expression And Activity 23467
## Signaling By Tgf Beta Receptor Complex 23467
## Depolymerisation Of The Nuclear Lamina 23467
## Er To Golgi Anterograde Transport 23467
## Heme Degradation 23467
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation 23467
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists 23467
## Platelet Adhesion To Exposed Collagen 23467
## Rho Gtpase Cycle 23467
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx 23467
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors 23467
## Wnt5a Dependent Internalization Of Fzd4 23467
## Yap1 And Wwtr1 Taz Stimulated Gene Expression 23467
## Abc Transporter Disorders 23467
## Cellular Response To Chemical Stress 23467
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc 23467
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks 23467
## Dna Double Strand Break Response 23467
## Foxo Mediated Transcription Of Cell Death Genes 23467
## Nrif Signals Cell Death From The Nucleus 23467
## Regulation Of Kit Signaling 23467
## Rmts Methylate Histone Arginines 23467
## Signaling By Met 23467
## Spry Regulation Of Fgf Signaling 23467
## Sting Mediated Induction Of Host Immune Responses 23467
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 23467
## Abc Transporters In Lipid Homeostasis 23467
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects 23467
## Antiviral Mechanism By Ifn Stimulated Genes 23467
## Crosslinking Of Collagen Fibrils 23467
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps 23467
## Diseases Associated With Glycosylation Precursor Biosynthesis 23467
## Foxo Mediated Transcription Of Cell Cycle Genes 23467
## Mecp2 Regulates Neuronal Receptors And Channels 23467
## Oncogenic Mapk Signaling 23467
## Regulation Of Hsf1 Mediated Heat Shock Response 23467
## Regulation Of Runx1 Expression And Activity 23467
## Signaling By Ntrk3 Trkc 23467
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest 23467
## Transcriptional Regulation Of White Adipocyte Differentiation 23467
## Apoptotic Factor Mediated Response 23467
## Biosynthesis Of Specialized Proresolving Mediators Spms 23467
## Cyclin A Cdk2 Associated Events At S Phase Entry 23467
## Ephrin Signaling 23467
## G Beta Gamma Signalling Through Cdc42 23467
## Initiation Of Nuclear Envelope Ne Reformation 23467
## Integrin Cell Surface Interactions 23467
## Ldl Clearance 23467
## Listeria Monocytogenes Entry Into Host Cells 23467
## Meiotic Recombination 23467
## Nicotinamide Salvaging 23467
## Phase 4 Resting Membrane Potential 23467
## Phosphorylation Of The Apc C 23467
## Pka Mediated Phosphorylation Of Creb 23467
## Plasma Lipoprotein Assembly 23467
## Regulation Of Tp53 Activity Through Methylation 23467
## Signaling By Hippo 23467
## Signalling To Ras 23467
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 23467
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release 23467
## Transcription Of E2f Targets Under Negative Control By Dream Complex 23467
## Vegfr2 Mediated Cell Proliferation 23467
## Branched Chain Amino Acid Catabolism 23467
## Formation Of The Beta Catenin Tcf Transactivating Complex 23467
## Rho Gtpases Activate Paks 23467
## Unfolded Protein Response Upr 23467
## Activation Of Nmda Receptors And Postsynaptic Events 23467
## Chaperone Mediated Autophagy 23467
## Class B 2 Secretin Family Receptors 23467
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models 23467
## E2f Mediated Regulation Of Dna Replication 23467
## G2 M Dna Damage Checkpoint 23467
## Incretin Synthesis Secretion And Inactivation 23467
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane 23467
## Intrinsic Pathway Of Fibrin Clot Formation 23467
## Long Term Potentiation 23467
## Nucleotide Salvage 23467
## Pink1 Prkn Mediated Mitophagy 23467
## Telomere Extension By Telomerase 23467
## Termination Of O Glycan Biosynthesis 23467
## Transcriptional Regulation By Runx3 23467
## Transport To The Golgi And Subsequent Modification 23467
## Apc C Cdc20 Mediated Degradation Of Cyclin B 23467
## Cellular Response To Heat Stress 23467
## Metabolism Of Vitamins And Cofactors 23467
## Other Interleukin Signaling 23467
## Rho Gtpases Activate Nadph Oxidases 23467
## Triglyceride Catabolism 23467
## Abc Family Proteins Mediated Transport 23467
## Adp Signalling Through P2y Purinoceptor 1 23467
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc 23467
## Basigin Interactions 23467
## Constitutive Signaling By Akt1 E17k In Cancer 23467
## Copi Mediated Anterograde Transport 23467
## Cyclin A B1 B2 Associated Events During G2 M Transition 23467
## Dectin 2 Family 23467
## Notch3 Intracellular Domain Regulates Transcription 23467
## Regulation Of Ifna Signaling 23467
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa 23467
## Signaling By Ntrk2 Trkb 23467
## Signaling By Tgfb Family Members 23467
## Wnt Ligand Biogenesis And Trafficking 23467
## Asparagine N Linked Glycosylation 23467
## Bmal1 Clock Npas2 Activates Circadian Gene Expression 23467
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling 23467
## Infection With Mycobacterium Tuberculosis 23467
## Metabolism Of Porphyrins 23467
## Amyloid Fiber Formation 23467
## Epha Mediated Growth Cone Collapse 23467
## G1 S Specific Transcription 23467
## Myogenesis 23467
## Negative Epigenetic Regulation Of Rrna Expression 23467
## Negative Regulation Of Fgfr3 Signaling 23467
## Traf6 Mediated Irf7 Activation 23467
## Activation Of Bh3 Only Proteins 23467
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane 23467
## Met Activates Ptk2 Signaling 23467
## Negative Regulation Of Fgfr4 Signaling 23467
## Transcriptional Regulation Of Pluripotent Stem Cells 23467
## G Protein Beta Gamma Signalling 23467
## Meiosis 23467
## Negative Regulation Of Fgfr1 Signaling 23467
## Nuclear Signaling By Erbb4 23467
## Plasma Lipoprotein Remodeling 23467
## Regulation Of Mecp2 Expression And Activity 23467
## Rho Gtpase Effectors 23467
## Rho Gtpases Activate Iqgaps 23467
## Rhov Gtpase Cycle 23467
## Sialic Acid Metabolism 23467
## Signal Amplification 23467
## Signaling By Notch2 23467
## Signaling By Robo Receptors 23467
## Thrombin Signalling Through Proteinase Activated Receptors Pars 23467
## Late Endosomal Microautophagy 23467
## Metabolism Of Water Soluble Vitamins And Cofactors 23467
## Negative Regulation Of Fgfr2 Signaling 23467
## Oncogene Induced Senescence 23467
## Raf Activation 23467
## Resolution Of D Loop Structures 23467
## Rhou Gtpase Cycle 23467
## Signaling By Wnt 23467
## Signalling To Erks 23467
## Ca Dependent Events 23467
## Hdr Through Single Strand Annealing Ssa 23467
## Interleukin 7 Signaling 23467
## Metalloprotease Dubs 23467
## Mhc Class Ii Antigen Presentation 23467
## Nuclear Pore Complex Npc Disassembly 23467
## Rho Gtpases Activate Wasps And Waves 23467
## Ros And Rns Production In Phagocytes 23467
## Cell Cell Communication 23467
## Diseases Of Mitotic Cell Cycle 23467
## Triglyceride Metabolism 23467
## Adora2b Mediated Anti Inflammatory Cytokines Production 23467
## Association Of Tric Cct With Target Proteins During Biosynthesis 23467
## Formation Of Fibrin Clot Clotting Cascade 23467
## Generation Of Second Messenger Molecules 23467
## Ret Signaling 23467
## Signaling By Fgfr3 23467
## Dag And Ip3 Signaling 23467
## Hcmv Early Events 23467
## Homologous Dna Pairing And Strand Exchange 23467
## Met Promotes Cell Motility 23467
## Rnd1 Gtpase Cycle 23467
## Rnd3 Gtpase Cycle 23467
## Signaling By Fgfr4 23467
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 23467
## Transcriptional Regulation By Ventx 23467
## Aggrephagy 23467
## Rho Gtpases Activate Formins 23467
## Rnd2 Gtpase Cycle 23467
## Sumoylation Of Transcription Cofactors 23467
## Transcriptional Regulation By Tp53 23467
## Beta Catenin Independent Wnt Signaling 23467
## Diseases Of Glycosylation 23467
## Elastic Fibre Formation 23467
## Reproduction 23467
## Estrogen Dependent Gene Expression 23467
## Hiv Life Cycle 23467
## Irs Mediated Signalling 23467
## Metabolism Of Fat Soluble Vitamins 23467
## Notch1 Intracellular Domain Regulates Transcription 23467
## Chondroitin Sulfate Dermatan Sulfate Metabolism 23467
## Recycling Pathway Of L1 23467
## Retrograde Transport At The Trans Golgi Network 23467
## Signaling By Fgfr1 23467
## Tp53 Regulates Transcription Of Cell Cycle Genes 23467
## Extension Of Telomeres 23467
## Gap Junction Trafficking And Regulation 23467
## Chromatin Modifying Enzymes 23467
## G Protein Mediated Events 23467
## Insulin Receptor Signalling Cascade 23467
## Nuclear Envelope Breakdown 23467
## Regulation Of Tp53 Activity 23467
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r 23467
## Synthesis Of Pips At The Plasma Membrane 23467
## Hcmv Infection 23467
## Regulation Of Runx3 Expression And Activity 23467
## S Phase 23467
## Transcriptional Activation Of Mitochondrial Biogenesis 23467
## Dna Double Strand Break Repair 23467
## G2 M Checkpoints 23467
## Iron Uptake And Transport 23467
## Signaling By Notch1 Pest Domain Mutants In Cancer 23467
## Signaling By The B Cell Receptor Bcr 23467
## Stabilization Of P53 23467
## Arachidonic Acid Metabolism 23467
## Scf Skp2 Mediated Degradation Of P27 P21 23467
## Dectin 1 Mediated Noncanonical Nf Kb Signaling 23467
## Defective Cftr Causes Cystic Fibrosis 23467
## Disorders Of Transmembrane Transporters 23467
## O Linked Glycosylation Of Mucins 23467
## Asymmetric Localization Of Pcp Proteins 23467
## Synthesis Of Substrates In N Glycan Biosythesis 23467
## Cell Cycle 23467
## Hdr Through Homologous Recombination Hrr 23467
## Rab Geranylgeranylation 23467
## Regulation Of Hmox1 Expression And Activity 23467
## Diseases Associated With O Glycosylation Of Proteins 23467
## Fcgr Activation 23467
## G1 S Dna Damage Checkpoints 23467
## Nonhomologous End Joining Nhej 23467
## Sirt1 Negatively Regulates Rrna Expression 23467
## Aurka Activation By Tpx2 23467
## Condensation Of Prophase Chromosomes 23467
## Signaling By Fgfr2 23467
## Signaling By Notch1 23467
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane 23467
## Ecm Proteoglycans 23467
## Nuclear Envelope Ne Reassembly 23467
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein 23467
## Signaling By Insulin Receptor 23467
## Dna Damage Telomere Stress Induced Senescence 23467
## Downstream Signaling Events Of B Cell Receptor Bcr 23467
## G Alpha 12 13 Signalling Events 23467
## Neurotransmitter Receptors And Postsynaptic Signal Transmission 23467
## Potential Therapeutics For Sars 23467
## Recruitment Of Mitotic Centrosome Proteins And Complexes 23467
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint 23467
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers 23467
## Degradation Of Beta Catenin By The Destruction Complex 23467
## Fceri Mediated Ca 2 Mobilization 23467
## Pi Metabolism 23467
## Apc C Mediated Degradation Of Cell Cycle Proteins 23467
## Regulation Of Plk1 Activity At G2 M Transition 23467
## Signaling By Fgfr 23467
## Opioid Signalling 23467
## Peptide Hormone Metabolism 23467
## Rab Gefs Exchange Gtp For Gdp On Rabs 23467
## Mitochondrial Biogenesis 23467
## Pcp Ce Pathway 23467
## Post Translational Modification Synthesis Of Gpi Anchored Proteins 23467
## Regulation Of Tp53 Activity Through Phosphorylation 23467
## Anchoring Of The Basal Body To The Plasma Membrane 23467
## Hiv Infection 23467
## Recruitment Of Numa To Mitotic Centrosomes 23467
## Metabolism Of Nucleotides 23467
## Processing Of Dna Double Strand Break Ends 23467
## Protein Folding 23467
## Visual Phototransduction 23467
## Diseases Of Metabolism 23467
## Potassium Channels 23467
## Stimuli Sensing Channels 23467
## O Linked Glycosylation 23467
## Telomere Maintenance 23467
## Neuronal System 23467
## Cell Cycle Mitotic 23467
## Regulation Of Lipid Metabolism By Pparalpha 23467
## Transmission Across Chemical Synapses 23467
## Glycosaminoglycan Metabolism 23467
## Rab Regulation Of Trafficking 23467
## Cardiac Conduction 23467
## Resolution Of Sister Chromatid Cohesion 23467
## Transport Of Small Molecules 23467
## Cell Cycle Checkpoints 23467
## Fceri Mediated Nf Kb Activation 23467
## Homology Directed Repair 23467
## Metabolism Of Carbohydrates 23467
## Organelle Biogenesis And Maintenance 23467
## Chromosome Maintenance 23467
## G Alpha S Signalling Events 23467
## Mitotic Prophase 23467
## Sars Cov Infections 23467
## Dna Repair 23467
## Protein Localization 23467
## Factors Involved In Megakaryocyte Development And Platelet Production 23467
## Fatty Acid Metabolism 23467
## Ion Channel Transport 23467
## Muscle Contraction 23467
## Cilium Assembly 23467
## Intra Golgi And Retrograde Golgi To Er Traffic 23467
## Mitotic G2 G2 M Phases 23467
## Mitotic Prometaphase 23467
## Metabolism Of Lipids 23467
## Phospholipid Metabolism 23467
## Mitotic Metaphase And Anaphase 23467
## Metabolism Of Amino Acids And Derivatives 23467
## M Phase 23467
## Sensory Perception 23467
## 2 Ltr Circle Formation 23467
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis 23467
## Abacavir Metabolism 23467
## Abacavir Transmembrane Transport 23467
## Abacavir Transport And Metabolism 23467
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects 23467
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat 23467
## Acetylcholine Binding And Downstream Events 23467
## Acetylcholine Inhibits Contraction Of Outer Hair Cells 23467
## Acetylcholine Neurotransmitter Release Cycle 23467
## Acetylcholine Regulates Insulin Secretion 23467
## Acrosome Reaction And Sperm Oocyte Membrane Binding 23467
## Activated Notch1 Transmits Signal To The Nucleus 23467
## Activated Ntrk2 Signals Through Cdk5 23467
## Activated Ntrk2 Signals Through Frs2 And Frs3 23467
## Activated Ntrk2 Signals Through Pi3k 23467
## Activated Ntrk2 Signals Through Ras 23467
## Activated Ntrk3 Signals Through Ras 23467
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3 23467
## Activation Of Ampk Downstream Of Nmdars 23467
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis 23467
## Activation Of Atr In Response To Replication Stress 23467
## Activation Of Bad And Translocation To Mitochondria 23467
## Activation Of Gene Expression By Srebf Srebp 23467
## Activation Of Kainate Receptors Upon Glutamate Binding 23467
## Activation Of Noxa And Translocation To Mitochondria 23467
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation 23467
## Activation Of Puma And Translocation To Mitochondria 23467
## Activation Of Rac1 23467
## Activation Of Rac1 Downstream Of Nmdars 23467
## Activation Of Ras In B Cells 23467
## Activation Of Smo 23467
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s 23467
## Activation Of The Phototransduction Cascade 23467
## Activation Of The Pre Replicative Complex 23467
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors 23467
## Activation Of Trka Receptors 23467
## Acyl Chain Remodeling Of Cl 23467
## Acyl Chain Remodeling Of Dag And Tag 23467
## Acyl Chain Remodelling Of Pc 23467
## Acyl Chain Remodelling Of Pe 23467
## Acyl Chain Remodelling Of Pg 23467
## Acyl Chain Remodelling Of Pi 23467
## Acyl Chain Remodelling Of Ps 23467
## Adenylate Cyclase Activating Pathway 23467
## Adenylate Cyclase Inhibitory Pathway 23467
## Adherens Junctions Interactions 23467
## Adp Signalling Through P2y Purinoceptor 12 23467
## Adrenaline Noradrenaline Inhibits Insulin Secretion 23467
## Adrenoceptors 23467
## Aflatoxin Activation And Detoxification 23467
## Akt Phosphorylates Targets In The Cytosol 23467
## Alpha Defensins 23467
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism 23467
## Alpha Oxidation Of Phytanate 23467
## Alpha Protein Kinase 1 Signaling Pathway 23467
## Amine Ligand Binding Receptors 23467
## Amino Acid Conjugation 23467
## Amino Acid Transport Across The Plasma Membrane 23467
## Amino Acids Regulate Mtorc1 23467
## Ampk Inhibits Chrebp Transcriptional Activation Activity 23467
## Anchoring Fibril Formation 23467
## Androgen Biosynthesis 23467
## Antigen Processing Ubiquitination Proteasome Degradation 23467
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1 23467
## Apc Cdc20 Mediated Degradation Of Nek2a 23467
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway 23467
## Apobec3g Mediated Resistance To Hiv 1 Infection 23467
## Aquaporin Mediated Transport 23467
## Arachidonate Production From Dag 23467
## Arms Mediated Activation 23467
## Aryl Hydrocarbon Receptor Signalling 23467
## Aspartate And Asparagine Metabolism 23467
## Assembly And Cell Surface Presentation Of Nmda Receptors 23467
## Assembly Of Active Lpl And Lipc Lipase Complexes 23467
## Assembly Of The Hiv Virion 23467
## Assembly Of The Orc Complex At The Origin Of Replication 23467
## Assembly Of The Pre Replicative Complex 23467
## Atf6 Atf6 Alpha Activates Chaperone Genes 23467
## Atf6 Atf6 Alpha Activates Chaperones 23467
## Attachment And Entry 23467
## Attachment Of Gpi Anchor To Upar 23467
## Attenuation Phase 23467
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna 23467
## B Wich Complex Positively Regulates Rrna Expression 23467
## Base Excision Repair 23467
## Base Excision Repair Ap Site Formation 23467
## Bbsome Mediated Cargo Targeting To Cilium 23467
## Beta Catenin Phosphorylation Cascade 23467
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa 23467
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa 23467
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa 23467
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa 23467
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa 23467
## Beta Oxidation Of Pristanoyl Coa 23467
## Beta Oxidation Of Very Long Chain Fatty Acids 23467
## Bicarbonate Transporters 23467
## Bile Acid And Bile Salt Metabolism 23467
## Biological Oxidations 23467
## Biosynthesis Of Maresin Like Spms 23467
## Biosynthesis Of Maresins 23467
## Biotin Transport And Metabolism 23467
## Blood Group Systems Biosynthesis 23467
## Budding And Maturation Of Hiv Virion 23467
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna 23467
## Butyrophilin Btn Family Interactions 23467
## Ca2 Activated K Channels 23467
## Calcineurin Activates Nfat 23467
## Calcitonin Like Ligand Receptors 23467
## Calnexin Calreticulin Cycle 23467
## Carboxyterminal Post Translational Modifications Of Tubulin 23467
## Cargo Trafficking To The Periciliary Membrane 23467
## Carnitine Metabolism 23467
## Cation Coupled Chloride Cotransporters 23467
## Cd209 Dc Sign Signaling 23467
## Cd22 Mediated Bcr Regulation 23467
## Cdc6 Association With The Orc Origin Complex 23467
## Cell Cell Junction Organization 23467
## Cell Extracellular Matrix Interactions 23467
## Cell Junction Organization 23467
## Cellular Hexose Transport 23467
## Cellular Response To Hypoxia 23467
## Cellular Response To Starvation 23467
## Cgmp Effects 23467
## Chl1 Interactions 23467
## Cholesterol Biosynthesis 23467
## Choline Catabolism 23467
## Chondroitin Sulfate Biosynthesis 23467
## Chrebp Activates Metabolic Gene Expression 23467
## Chylomicron Clearance 23467
## Citric Acid Cycle Tca Cycle 23467
## Class C 3 Metabotropic Glutamate Pheromone Receptors 23467
## Class I Peroxisomal Membrane Protein Import 23467
## Clec7a Dectin 1 Induces Nfat Activation 23467
## Cobalamin Cbl Vitamin B12 Transport And Metabolism 23467
## Coenzyme A Biosynthesis 23467
## Cohesin Loading Onto Chromatin 23467
## Collagen Biosynthesis And Modifying Enzymes 23467
## Collagen Chain Trimerization 23467
## Common Pathway Of Fibrin Clot Formation 23467
## Competing Endogenous Rnas Cernas Regulate Pten Translation 23467
## Complex I Biogenesis 23467
## Conjugation Of Benzoate With Glycine 23467
## Constitutive Signaling By Overexpressed Erbb2 23467
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase 23467
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding 23467
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding 23467
## Copi Dependent Golgi To Er Retrograde Traffic 23467
## Copi Independent Golgi To Er Retrograde Traffic 23467
## Creatine Metabolism 23467
## Creb3 Factors Activate Genes 23467
## Cristae Formation 23467
## Crmps In Sema3a Signaling 23467
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes 23467
## Cross Presentation Of Soluble Exogenous Antigens Endosomes 23467
## Cs Ds Degradation 23467
## Cyp2e1 Reactions 23467
## Cytochrome P450 Arranged By Substrate Type 23467
## Cytosolic Iron Sulfur Cluster Assembly 23467
## Cytosolic Sulfonation Of Small Molecules 23467
## Cytosolic Trna Aminoacylation 23467
## Darpp 32 Events 23467
## Deactivation Of The Beta Catenin Transactivating Complex 23467
## Deadenylation Dependent Mrna Decay 23467
## Deadenylation Of Mrna 23467
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d 23467
## Defective B4galt7 Causes Eds Progeroid Type 23467
## Defective Chst14 Causes Eds Musculocontractural Type 23467
## Defective Chst3 Causes Sedcjd 23467
## Defective Chst6 Causes Mcdc1 23467
## Defective Chsy1 Causes Tpbs 23467
## Defective Csf2rb Causes Smdp5 23467
## Defective Ext2 Causes Exostoses 2 23467
## Defective F9 Activation 23467
## Defective Factor Ix Causes Hemophilia B 23467
## Defective Lfng Causes Scdo3 23467
## Defective Ripk1 Mediated Regulated Necrosis 23467
## Defective St3gal3 Causes Mct12 And Eiee15 23467
## Defects In Biotin Btn Metabolism 23467
## Defects In Cobalamin B12 Metabolism 23467
## Defects In Vitamin And Cofactor Metabolism 23467
## Degradation Of Axin 23467
## Degradation Of Cysteine And Homocysteine 23467
## Degradation Of Dvl 23467
## Degradation Of Gli1 By The Proteasome 23467
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere 23467
## Detoxification Of Reactive Oxygen Species 23467
## Digestion 23467
## Digestion And Absorption 23467
## Digestion Of Dietary Carbohydrate 23467
## Digestion Of Dietary Lipid 23467
## Diseases Associated With Glycosaminoglycan Metabolism 23467
## Diseases Associated With N Glycosylation Of Proteins 23467
## Diseases Associated With Surfactant Metabolism 23467
## Diseases Of Base Excision Repair 23467
## Diseases Of Carbohydrate Metabolism 23467
## Diseases Of Dna Repair 23467
## Diseases Of Mismatch Repair Mmr 23467
## Disinhibition Of Snare Formation 23467
## Displacement Of Dna Glycosylase By Apex1 23467
## Dna Damage Bypass 23467
## Dna Damage Recognition In Gg Ner 23467
## Dna Damage Reversal 23467
## Dna Replication 23467
## Dna Replication Initiation 23467
## Dna Replication Pre Initiation 23467
## Dna Strand Elongation 23467
## Dopamine Neurotransmitter Release Cycle 23467
## Dopamine Receptors 23467
## Downregulation Of Erbb2 Erbb3 Signaling 23467
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity 23467
## Downregulation Of Tgf Beta Receptor Signaling 23467
## Downstream Signaling Of Activated Fgfr1 23467
## Downstream Signaling Of Activated Fgfr2 23467
## Downstream Signaling Of Activated Fgfr3 23467
## Downstream Signaling Of Activated Fgfr4 23467
## Dual Incision In Gg Ner 23467
## Dual Incision In Tc Ner 23467
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins 23467
## Effects Of Pip2 Hydrolysis 23467
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination 23467
## Eicosanoid Ligand Binding Receptors 23467
## Eicosanoids 23467
## Electric Transmission Across Gap Junctions 23467
## Elevation Of Cytosolic Ca2 Levels 23467
## Endogenous Sterols 23467
## Endosomal Sorting Complex Required For Transport Escrt 23467
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk 23467
## Er Quality Control Compartment Erqc 23467
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression 23467
## Erk Mapk Targets 23467
## Erks Are Inactivated 23467
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen 23467
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide 23467
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k 23467
## Erythropoietin Activates Phospholipase C Gamma Plcg 23467
## Erythropoietin Activates Ras 23467
## Erythropoietin Activates Stat5 23467
## Establishment Of Sister Chromatid Cohesion 23467
## Estrogen Biosynthesis 23467
## Estrogen Stimulated Signaling Through Prkcz 23467
## Ethanol Oxidation 23467
## Eukaryotic Translation Elongation 23467
## Eukaryotic Translation Initiation 23467
## Export Of Viral Ribonucleoproteins From Nucleus 23467
## Extrinsic Pathway Of Fibrin Clot Formation 23467
## Fanconi Anemia Pathway 23467
## Fatty Acids 23467
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion 23467
## Fatty Acyl Coa Biosynthesis 23467
## Fbxw7 Mutants And Notch1 In Cancer 23467
## Fertilization 23467
## Fgfr1 Ligand Binding And Activation 23467
## Fgfr1b Ligand Binding And Activation 23467
## Fgfr1c Ligand Binding And Activation 23467
## Fgfr2 Alternative Splicing 23467
## Fgfr2 Ligand Binding And Activation 23467
## Fgfr2 Mutant Receptor Activation 23467
## Fgfr2b Ligand Binding And Activation 23467
## Fgfr2c Ligand Binding And Activation 23467
## Fgfr3 Ligand Binding And Activation 23467
## Fgfr3b Ligand Binding And Activation 23467
## Fgfrl1 Modulation Of Fgfr1 Signaling 23467
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface 23467
## Flt3 Signaling 23467
## Flt3 Signaling By Cbl Mutants 23467
## Flt3 Signaling In Disease 23467
## Flt3 Signaling Through Src Family Kinases 23467
## Folding Of Actin By Cct Tric 23467
## Formation Of Apoptosome 23467
## Formation Of Atp By Chemiosmotic Coupling 23467
## Formation Of Incision Complex In Gg Ner 23467
## Formation Of Rna Pol Ii Elongation Complex 23467
## Formation Of Senescence Associated Heterochromatin Foci Sahf 23467
## Formation Of Tc Ner Pre Incision Complex 23467
## Formation Of The Cornified Envelope 23467
## Formation Of The Early Elongation Complex 23467
## Formation Of Tubulin Folding Intermediates By Cct Tric 23467
## Formation Of Xylulose 5 Phosphate 23467
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands 23467
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes 23467
## Free Fatty Acid Receptors 23467
## Free Fatty Acids Regulate Insulin Secretion 23467
## Frs Mediated Fgfr1 Signaling 23467
## Frs Mediated Fgfr2 Signaling 23467
## Frs Mediated Fgfr3 Signaling 23467
## Frs Mediated Fgfr4 Signaling 23467
## Fructose Catabolism 23467
## Fructose Metabolism 23467
## G Alpha Z Signalling Events 23467
## G Beta Gamma Signalling Through Pi3kgamma 23467
## G Protein Activation 23467
## G2 Phase 23467
## Gaba B Receptor Activation 23467
## Gaba Receptor Activation 23467
## Gaba Synthesis Release Reuptake And Degradation 23467
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation 23467
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins 23467
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner 23467
## Gap Junction Assembly 23467
## Gap Junction Degradation 23467
## Gdp Fucose Biosynthesis 23467
## Gene Silencing By Rna 23467
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription 23467
## Global Genome Nucleotide Excision Repair Gg Ner 23467
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion 23467
## Glucagon Signaling In Metabolic Regulation 23467
## Glucagon Type Ligand Receptors 23467
## Glucocorticoid Biosynthesis 23467
## Gluconeogenesis 23467
## Glucose Metabolism 23467
## Glucuronidation 23467
## Glutamate And Glutamine Metabolism 23467
## Glutamate Neurotransmitter Release Cycle 23467
## Glutathione Conjugation 23467
## Glutathione Synthesis And Recycling 23467
## Glycerophospholipid Biosynthesis 23467
## Glycerophospholipid Catabolism 23467
## Glycogen Breakdown Glycogenolysis 23467
## Glycogen Metabolism 23467
## Glycogen Storage Diseases 23467
## Glycogen Synthesis 23467
## Glycolysis 23467
## Glycosphingolipid Metabolism 23467
## Glyoxylate Metabolism And Glycine Degradation 23467
## Golgi Associated Vesicle Biogenesis 23467
## Golgi To Er Retrograde Transport 23467
## Grb7 Events In Erbb2 Signaling 23467
## Hats Acetylate Histones 23467
## Hcmv Late Events 23467
## Hdacs Deacetylate Histones 23467
## Hdms Demethylate Histones 23467
## Hdr Through Mmej Alt Nhej 23467
## Hedgehog Ligand Biogenesis 23467
## Hedgehog Off State 23467
## Hedgehog On State 23467
## Heme Biosynthesis 23467
## Heparan Sulfate Heparin Hs Gag Metabolism 23467
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors 23467
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors 23467
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors 23467
## Histidine Catabolism 23467
## Hiv Elongation Arrest And Recovery 23467
## Hiv Transcription Elongation 23467
## Hiv Transcription Initiation 23467
## Hormone Ligand Binding Receptors 23467
## Host Interactions Of Hiv Factors 23467
## Hs Gag Biosynthesis 23467
## Hs Gag Degradation 23467
## Hsf1 Activation 23467
## Hsf1 Dependent Transactivation 23467
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr 23467
## Hur Elavl1 Binds And Stabilizes Mrna 23467
## Hyaluronan Biosynthesis And Export 23467
## Hyaluronan Metabolism 23467
## Hyaluronan Uptake And Degradation 23467
## Hydrolysis Of Lpc 23467
## Il 6 Type Cytokine Receptor Ligand Interactions 23467
## Influenza Infection 23467
## Inhibition Of Dna Recombination At Telomere 23467
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1 23467
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components 23467
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell 23467
## Inositol Phosphate Metabolism 23467
## Insulin Processing 23467
## Insulin Receptor Recycling 23467
## Integration Of Energy Metabolism 23467
## Integration Of Provirus 23467
## Interaction Between L1 And Ankyrins 23467
## Interaction With Cumulus Cells And The Zona Pellucida 23467
## Interactions Of Rev With Host Cellular Proteins 23467
## Interactions Of Vpr With Host Cellular Proteins 23467
## Interconversion Of Nucleotide Di And Triphosphates 23467
## Interleukin 36 Pathway 23467
## Intestinal Absorption 23467
## Intra Golgi Traffic 23467
## Intraflagellar Transport 23467
## Inwardly Rectifying K Channels 23467
## Ion Homeostasis 23467
## Ion Transport By P Type Atpases 23467
## Ionotropic Activity Of Kainate Receptors 23467
## Irak2 Mediated Activation Of Tak1 Complex 23467
## Ire1alpha Activates Chaperones 23467
## Irf3 Mediated Activation Of Type 1 Ifn 23467
## Irs Activation 23467
## Josephin Domain Dubs 23467
## Keratan Sulfate Biosynthesis 23467
## Keratan Sulfate Degradation 23467
## Keratan Sulfate Keratin Metabolism 23467
## Keratinization 23467
## Ketone Body Metabolism 23467
## Kinesins 23467
## Ksrp Khsrp Binds And Destabilizes Mrna 23467
## Lagging Strand Synthesis 23467
## Laminin Interactions 23467
## Leukotriene Receptors 23467
## Lgi Adam Interactions 23467
## Ligand Receptor Interactions 23467
## Linoleic Acid La Metabolism 23467
## Lipid Particle Organization 23467
## Lipophagy 23467
## Loss Of Function Of Mecp2 In Rett Syndrome 23467
## Loss Of Function Of Smad2 3 In Cancer 23467
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex 23467
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production 23467
## Ltc4 Cysltr Mediated Il4 Production 23467
## Lysine Catabolism 23467
## Lysosome Vesicle Biogenesis 23467
## Lysosphingolipid And Lpa Receptors 23467
## Map3k8 Tpl2 Dependent Mapk1 3 Activation 23467
## Maturation Of Nucleoprotein 23467
## Maturation Of Protein 3a 23467
## Maturation Of Sars Cov 1 Spike Protein 23467
## Maturation Of Sars Cov 2 Spike Protein 23467
## Meiotic Synapsis 23467
## Melanin Biosynthesis 23467
## Met Activates Pi3k Akt Signaling 23467
## Met Activates Ptpn11 23467
## Met Activates Rap1 And Rac1 23467
## Met Activates Ras Signaling 23467
## Met Interacts With Tns Proteins 23467
## Met Receptor Activation 23467
## Met Receptor Recycling 23467
## Metabolic Disorders Of Biological Oxidation Enzymes 23467
## Metabolism Of Amine Derived Hormones 23467
## Metabolism Of Angiotensinogen To Angiotensins 23467
## Metabolism Of Cofactors 23467
## Metabolism Of Folate And Pterines 23467
## Metabolism Of Ingested Semet Sec Mesec Into H2se 23467
## Metabolism Of Polyamines 23467
## Metabolism Of Rna 23467
## Metabolism Of Steroid Hormones 23467
## Metabolism Of Steroids 23467
## Metal Ion Slc Transporters 23467
## Metal Sequestration By Antimicrobial Proteins 23467
## Metallothioneins Bind Metals 23467
## Methionine Salvage Pathway 23467
## Methylation 23467
## Microrna Mirna Biogenesis 23467
## Mineralocorticoid Biosynthesis 23467
## Miro Gtpase Cycle 23467
## Miscellaneous Substrates 23467
## Miscellaneous Transport And Binding Events 23467
## Mismatch Repair 23467
## Mitochondrial Calcium Ion Transport 23467
## Mitochondrial Fatty Acid Beta Oxidation 23467
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids 23467
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids 23467
## Mitochondrial Iron Sulfur Cluster Biogenesis 23467
## Mitochondrial Protein Import 23467
## Mitochondrial Translation 23467
## Mitochondrial Trna Aminoacylation 23467
## Mitochondrial Uncoupling 23467
## Mitotic Spindle Checkpoint 23467
## Mitotic Telophase Cytokinesis 23467
## Molecules Associated With Elastic Fibres 23467
## Molybdenum Cofactor Biosynthesis 23467
## Mrna Capping 23467
## Mrna Decay By 3 To 5 Exoribonuclease 23467
## Mrna Decay By 5 To 3 Exoribonuclease 23467
## Mrna Editing 23467
## Mrna Editing C To U Conversion 23467
## Mrna Splicing 23467
## Mrna Splicing Minor Pathway 23467
## Mtor Signalling 23467
## Mtorc1 Mediated Signalling 23467
## Mucopolysaccharidoses 23467
## Multifunctional Anion Exchangers 23467
## Muscarinic Acetylcholine Receptors 23467
## Myoclonic Epilepsy Of Lafora 23467
## N Glycan Antennae Elongation 23467
## N Glycan Antennae Elongation In The Medial Trans Golgi 23467
## N Glycan Trimming And Elongation In The Cis Golgi 23467
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle 23467
## Na Cl Dependent Neurotransmitter Transporters 23467
## Ncam1 Interactions 23467
## Nectin Necl Trans Heterodimerization 23467
## Neddylation 23467
## Nef And Signal Transduction 23467
## Nef Mediated Cd4 Down Regulation 23467
## Nef Mediated Cd8 Down Regulation 23467
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression 23467
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters 23467
## Negative Feedback Regulation Of Mapk Pathway 23467
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors 23467
## Negative Regulation Of Flt3 23467
## Negative Regulation Of Mapk Pathway 23467
## Negative Regulation Of Met Activity 23467
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission 23467
## Negative Regulation Of Notch4 Signaling 23467
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins 23467
## Nephrin Family Interactions 23467
## Neurexins And Neuroligins 23467
## Neurofascin Interactions 23467
## Neurotoxicity Of Clostridium Toxins 23467
## Neurotransmitter Clearance 23467
## Neurotransmitter Release Cycle 23467
## Ngf Independant Trka Activation 23467
## Nitric Oxide Stimulates Guanylate Cyclase 23467
## Non Integrin Membrane Ecm Interactions 23467
## Noncanonical Activation Of Notch3 23467
## Nonsense Mediated Decay Nmd 23467
## Norepinephrine Neurotransmitter Release Cycle 23467
## Notch Hlh Transcription Pathway 23467
## Notch2 Activation And Transmission Of Signal To The Nucleus 23467
## Notch4 Activation And Transmission Of Signal To The Nucleus 23467
## Notch4 Intracellular Domain Regulates Transcription 23467
## Nr1h2 And Nr1h3 Mediated Signaling 23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis 23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis 23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose 23467
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis 23467
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake 23467
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux 23467
## Nrcam Interactions 23467
## Ns1 Mediated Effects On Host Pathways 23467
## Ntrk2 Activates Rac1 23467
## Nuclear Import Of Rev Protein 23467
## Nuclear Receptor Transcription Pathway 23467
## Nucleobase Biosynthesis 23467
## Nucleobase Catabolism 23467
## Nucleotide Excision Repair 23467
## Nucleotide Like Purinergic Receptors 23467
## O Glycosylation Of Tsr Domain Containing Proteins 23467
## Olfactory Signaling Pathway 23467
## Opsins 23467
## Orc1 Removal From Chromatin 23467
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors 23467
## Organic Anion Transport 23467
## Organic Anion Transporters 23467
## Organic Cation Anion Zwitterion Transport 23467
## Organic Cation Transport 23467
## P2y Receptors 23467
## P75ntr Negatively Regulates Cell Cycle Via Sc1 23467
## Passive Transport By Aquaporins 23467
## Pcna Dependent Long Patch Base Excision Repair 23467
## Pentose Phosphate Pathway 23467
## Peptide Hormone Biosynthesis 23467
## Peroxisomal Lipid Metabolism 23467
## Peroxisomal Protein Import 23467
## Phase 0 Rapid Depolarisation 23467
## Phase 1 Inactivation Of Fast Na Channels 23467
## Phase 2 Plateau Phase 23467
## Phase 3 Rapid Repolarisation 23467
## Phase I Functionalization Of Compounds 23467
## Phase Ii Conjugation Of Compounds 23467
## Phenylalanine And Tyrosine Metabolism 23467
## Phenylalanine Metabolism 23467
## Phosphate Bond Hydrolysis By Ntpdase Proteins 23467
## Phosphate Bond Hydrolysis By Nudt Proteins 23467
## Phospholipase C Mediated Cascade Fgfr2 23467
## Phospholipase C Mediated Cascade Fgfr4 23467
## Physiological Factors 23467
## Pi 3k Cascade Fgfr1 23467
## Pi 3k Cascade Fgfr2 23467
## Pi 3k Cascade Fgfr3 23467
## Pi 3k Cascade Fgfr4 23467
## Pi3k Akt Activation 23467
## Pi3k Events In Erbb4 Signaling 23467
## Pi5p Regulates Tp53 Acetylation 23467
## Piwi Interacting Rna Pirna Biogenesis 23467
## Pka Activation In Glucagon Signalling 23467
## Pka Mediated Phosphorylation Of Key Metabolic Factors 23467
## Pkmts Methylate Histone Lysines 23467
## Platelet Calcium Homeostasis 23467
## Platelet Homeostasis 23467
## Platelet Sensitization By Ldl 23467
## Polb Dependent Long Patch Base Excision Repair 23467
## Polo Like Kinase Mediated Events 23467
## Polymerase Switching 23467
## Polymerase Switching On The C Strand Of The Telomere 23467
## Positive Epigenetic Regulation Of Rrna Expression 23467
## Post Chaperonin Tubulin Folding Pathway 23467
## Postmitotic Nuclear Pore Complex Npc Reformation 23467
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation 23467
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors 23467
## Pre Notch Expression And Processing 23467
## Pre Notch Processing In Golgi 23467
## Pre Notch Processing In The Endoplasmic Reticulum 23467
## Pregnenolone Biosynthesis 23467
## Presynaptic Depolarization And Calcium Channel Opening 23467
## Presynaptic Function Of Kainate Receptors 23467
## Prevention Of Phagosomal Lysosomal Fusion 23467
## Processing And Activation Of Sumo 23467
## Processing Of Capped Intron Containing Pre Mrna 23467
## Processing Of Capped Intronless Pre Mrna 23467
## Processing Of Intronless Pre Mrnas 23467
## Processing Of Smdt1 23467
## Processive Synthesis On The C Strand Of The Telomere 23467
## Processive Synthesis On The Lagging Strand 23467
## Prolactin Receptor Signaling 23467
## Prolonged Erk Activation Events 23467
## Propionyl Coa Catabolism 23467
## Prostacyclin Signalling Through Prostacyclin Receptor 23467
## Prostanoid Ligand Receptors 23467
## Protein Methylation 23467
## Protein Protein Interactions At Synapses 23467
## Protein Ubiquitination 23467
## Proton Coupled Monocarboxylate Transport 23467
## Pten Regulation 23467
## Ptk6 Expression 23467
## Ptk6 Regulates Proteins Involved In Rna Processing 23467
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases 23467
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1 23467
## Purine Catabolism 23467
## Purine Ribonucleoside Monophosphate Biosynthesis 23467
## Pyrimidine Catabolism 23467
## Pyrimidine Salvage 23467
## Pyruvate Metabolism 23467
## Pyruvate Metabolism And Citric Acid Tca Cycle 23467
## Ra Biosynthesis Pathway 23467
## Rap1 Signalling 23467
## Ras Activation Upon Ca2 Influx Through Nmda Receptor 23467
## Ras Processing 23467
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants 23467
## Reactions Specific To The Complex N Glycan Synthesis Pathway 23467
## Receptor Type Tyrosine Protein Phosphatases 23467
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine 23467
## Recognition Of Dna Damage By Pcna Containing Replication Complex 23467
## Recycling Of Bile Acids And Salts 23467
## Recycling Of Eif2 Gdp 23467
## Reduction Of Cytosolic Ca Levels 23467
## Reelin Signalling Pathway 23467
## Regulated Proteolysis Of P75ntr 23467
## Regulation Of Bach1 Activity 23467
## Regulation Of Beta Cell Development 23467
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf 23467
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components 23467
## Regulation Of Expression Of Slits And Robos 23467
## Regulation Of Fzd By Ubiquitination 23467
## Regulation Of Gene Expression By Hypoxia Inducible Factor 23467
## Regulation Of Gene Expression In Beta Cells 23467
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells 23467
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells 23467
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells 23467
## Regulation Of Glucokinase By Glucokinase Regulatory Protein 23467
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism 23467
## Regulation Of Innate Immune Responses To Cytosolic Dna 23467
## Regulation Of Insulin Secretion 23467
## Regulation Of Localization Of Foxo Transcription Factors 23467
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements 23467
## Regulation Of Pten Gene Transcription 23467
## Regulation Of Pten Localization 23467
## Regulation Of Pten Mrna Translation 23467
## Regulation Of Pten Stability And Activity 23467
## Regulation Of Pyruvate Dehydrogenase Pdh Complex 23467
## Regulation Of Ras By Gaps 23467
## Regulation Of Signaling By Cbl 23467
## Regulation Of Signaling By Nodal 23467
## Regulation Of Tp53 Activity Through Acetylation 23467
## Regulation Of Tp53 Activity Through Association With Co Factors 23467
## Relaxin Receptors 23467
## Release Of Apoptotic Factors From The Mitochondria 23467
## Release Of Hh Np From The Secreting Cell 23467
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins 23467
## Resolution Of Abasic Sites Ap Sites 23467
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway 23467
## Respiratory Electron Transport 23467
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins 23467
## Response Of Eif2ak1 Hri To Heme Deficiency 23467
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency 23467
## Response Of Mtb To Phagocytosis 23467
## Response To Metal Ions 23467
## Retinoid Cycle Disease Events 23467
## Retrograde Neurotrophin Signalling 23467
## Reversible Hydration Of Carbon Dioxide 23467
## Rho Gtpases Activate Cit 23467
## Rho Gtpases Activate Pkns 23467
## Rho Gtpases Activate Rhotekin And Rhophilins 23467
## Rho Gtpases Activate Rocks 23467
## Rhobtb Gtpase Cycle 23467
## Rhobtb1 Gtpase Cycle 23467
## Rhobtb2 Gtpase Cycle 23467
## Rhobtb3 Atpase Cycle 23467
## Rhot1 Gtpase Cycle 23467
## Rna Polymerase I Promoter Escape 23467
## Rna Polymerase I Transcription 23467
## Rna Polymerase I Transcription Initiation 23467
## Rna Polymerase I Transcription Termination 23467
## Rna Polymerase Ii Transcribes Snrna Genes 23467
## Rna Polymerase Ii Transcription Termination 23467
## Rna Polymerase Iii Chain Elongation 23467
## Rna Polymerase Iii Transcription 23467
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter 23467
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter 23467
## Rna Polymerase Iii Transcription Termination 23467
## Robo Receptors Bind Akap5 23467
## Role Of Abl In Robo Slit Signaling 23467
## Role Of Lat2 Ntal Lab On Calcium Mobilization 23467
## Role Of Phospholipids In Phagocytosis 23467
## Role Of Second Messengers In Netrin 1 Signaling 23467
## Rora Activates Gene Expression 23467
## Rrna Modification In The Mitochondrion 23467
## Rrna Modification In The Nucleus And Cytosol 23467
## Rrna Processing 23467
## Rrna Processing In The Mitochondrion 23467
## Rsk Activation 23467
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known 23467
## Runx1 Regulates Estrogen Receptor Mediated Transcription 23467
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function 23467
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling 23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs 23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes 23467
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling 23467
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling 23467
## Runx3 Regulates Bcl2l11 Bim Transcription 23467
## Runx3 Regulates Cdkn1a Transcription 23467
## Runx3 Regulates Immune Response And Cell Migration 23467
## Runx3 Regulates Notch Signaling 23467
## Runx3 Regulates P14 Arf 23467
## Runx3 Regulates Yap1 Mediated Transcription 23467
## Sars Cov 1 Genome Replication And Transcription 23467
## Sars Cov 1 Infection 23467
## Sars Cov 2 Infection 23467
## Scavenging By Class F Receptors 23467
## Sealing Of The Nuclear Envelope Ne By Escrt Iii 23467
## Selenoamino Acid Metabolism 23467
## Sema3a Pak Dependent Axon Repulsion 23467
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion 23467
## Sema4d In Semaphorin Signaling 23467
## Sema4d Induced Cell Migration And Growth Cone Collapse 23467
## Sema4d Mediated Inhibition Of Cell Attachment And Migration 23467
## Sensory Processing Of Sound 23467
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea 23467
## Separation Of Sister Chromatids 23467
## Serine Biosynthesis 23467
## Serotonin And Melatonin Biosynthesis 23467
## Serotonin Neurotransmitter Release Cycle 23467
## Serotonin Receptors 23467
## Shc Mediated Cascade Fgfr1 23467
## Shc Mediated Cascade Fgfr3 23467
## Shc Mediated Cascade Fgfr4 23467
## Shc Related Events Triggered By Igf1r 23467
## Shc1 Events In Erbb4 Signaling 23467
## Signal Attenuation 23467
## Signaling By Activin 23467
## Signaling By Bmp 23467
## Signaling By Ctnnb1 Phospho Site Mutants 23467
## Signaling By Erythropoietin 23467
## Signaling By Fgfr2 Iiia Tm 23467
## Signaling By Fgfr2 In Disease 23467
## Signaling By Fgfr3 Fusions In Cancer 23467
## Signaling By Fgfr4 In Disease 23467
## Signaling By Flt3 Fusion Proteins 23467
## Signaling By Flt3 Itd And Tkd Mutants 23467
## Signaling By Hedgehog 23467
## Signaling By Lrp5 Mutants 23467
## Signaling By Mapk Mutants 23467
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb 23467
## Signaling By Mras Complex Mutants 23467
## Signaling By Mst1 23467
## Signaling By Nodal 23467
## Signaling By Notch1 Hd Domain Mutants In Cancer 23467
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant 23467
## Signaling By Notch4 23467
## Signaling By Retinoic Acid 23467
## Signaling By Rnf43 Mutants 23467
## Signaling By Tgf Beta Receptor Complex In Cancer 23467
## Signaling By Wnt In Cancer 23467
## Signalling To P38 Via Rit And Rin 23467
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas 23467
## Slc Mediated Transmembrane Transport 23467
## Slc Transporter Disorders 23467
## Small Interfering Rna Sirna Biogenesis 23467
## Smooth Muscle Contraction 23467
## Snrnp Assembly 23467
## Sodium Calcium Exchangers 23467
## Sodium Coupled Phosphate Cotransporters 23467
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters 23467
## Sodium Proton Exchangers 23467
## Sos Mediated Signalling 23467
## Sperm Motility And Taxes 23467
## Sphingolipid De Novo Biosynthesis 23467
## Sphingolipid Metabolism 23467
## Srp Dependent Cotranslational Protein Targeting To Membrane 23467
## Stat5 Activation 23467
## Stat5 Activation Downstream Of Flt3 Itd Mutants 23467
## Striated Muscle Contraction 23467
## Sulfide Oxidation To Sulfate 23467
## Sulfur Amino Acid Metabolism 23467
## Sumo Is Conjugated To E1 Uba2 Sae1 23467
## Sumo Is Proteolytically Processed 23467
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9 23467
## Sumoylation Of Chromatin Organization Proteins 23467
## Sumoylation Of Dna Damage Response And Repair Proteins 23467
## Sumoylation Of Dna Replication Proteins 23467
## Sumoylation Of Intracellular Receptors 23467
## Sumoylation Of Rna Binding Proteins 23467
## Sumoylation Of Sumoylation Proteins 23467
## Sumoylation Of Transcription Factors 23467
## Sumoylation Of Ubiquitinylation Proteins 23467
## Suppression Of Apoptosis 23467
## Suppression Of Phagosomal Maturation 23467
## Surfactant Metabolism 23467
## Switching Of Origins To A Post Replicative State 23467
## Synaptic Adhesion Like Molecules 23467
## Syndecan Interactions 23467
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives 23467
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete 23467
## Synthesis Of 5 Eicosatetraenoic Acids 23467
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes 23467
## Synthesis Of Bile Acids And Bile Salts 23467
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol 23467
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol 23467
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol 23467
## Synthesis Of Diphthamide Eef2 23467
## Synthesis Of Dolichyl Phosphate 23467
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet 23467
## Synthesis Of Gdp Mannose 23467
## Synthesis Of Glycosylphosphatidylinositol Gpi 23467
## Synthesis Of Ip2 Ip And Ins In The Cytosol 23467
## Synthesis Of Ip3 And Ip4 In The Cytosol 23467
## Synthesis Of Ketone Bodies 23467
## Synthesis Of Leukotrienes Lt And Eoxins Ex 23467
## Synthesis Of Lipoxins Lx 23467
## Synthesis Of Pa 23467
## Synthesis Of Pc 23467
## Synthesis Of Pe 23467
## Synthesis Of Pg 23467
## Synthesis Of Pi 23467
## Synthesis Of Pips At The Early Endosome Membrane 23467
## Synthesis Of Pips At The Er Membrane 23467
## Synthesis Of Pips At The Golgi Membrane 23467
## Synthesis Of Pips At The Late Endosome Membrane 23467
## Synthesis Of Pyrophosphates In The Cytosol 23467
## Synthesis Of Udp N Acetyl Glucosamine 23467
## Synthesis Of Very Long Chain Fatty Acyl Coas 23467
## Synthesis Of Wybutosine At G37 Of Trna Phe 23467
## Synthesis Secretion And Deacylation Of Ghrelin 23467
## Tachykinin Receptors Bind Tachykinins 23467
## Tbc Rabgaps 23467
## Telomere C Strand Lagging Strand Synthesis 23467
## Telomere C Strand Synthesis Initiation 23467
## Terminal Pathway Of Complement 23467
## Termination Of Translesion Dna Synthesis 23467
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation 23467
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation 23467
## Tgf Beta Receptor Signaling Activates Smads 23467
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition 23467
## The Activation Of Arylsulfatases 23467
## The Canonical Retinoid Cycle In Rods Twilight Vision 23467
## The Citric Acid Tca Cycle And Respiratory Electron Transport 23467
## The Fatty Acid Cycling Model 23467
## The Phototransduction Cascade 23467
## The Retinoid Cycle In Cones Daylight Vision 23467
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis 23467
## Thromboxane Signalling Through Tp Receptor 23467
## Thyroxine Biosynthesis 23467
## Tie2 Signaling 23467
## Tight Junction Interactions 23467
## Toxicity Of Botulinum Toxin Type D Botd 23467
## Tp53 Regulates Metabolic Genes 23467
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain 23467
## Tp53 Regulates Transcription Of Death Receptors And Ligands 23467
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest 23467
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 23467
## Trafficking Of Ampa Receptors 23467
## Trafficking Of Glur2 Containing Ampa Receptors 23467
## Trafficking Of Myristoylated Proteins To The Cilium 23467
## Trail Signaling 23467
## Trans Golgi Network Vesicle Budding 23467
## Transcription Coupled Nucleotide Excision Repair Tc Ner 23467
## Transcription Of The Hiv Genome 23467
## Transcriptional Regulation By E2f6 23467
## Transcriptional Regulation By Small Rnas 23467
## Transcriptional Regulation Of Testis Differentiation 23467
## Transferrin Endocytosis And Recycling 23467
## Translation 23467
## Translation Of Replicase And Assembly Of The Replication Transcription Complex 23467
## Translation Of Sars Cov 1 Structural Proteins 23467
## Translation Of Sars Cov 2 Structural Proteins 23467
## Translesion Synthesis By Polh 23467
## Translesion Synthesis By Polk 23467
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template 23467
## Transport And Synthesis Of Paps 23467
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds 23467
## Transport Of Connexons To The Plasma Membrane 23467
## Transport Of Fatty Acids 23467
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides 23467
## Transport Of Mature Mrnas Derived From Intronless Transcripts 23467
## Transport Of Mature Transcript To Cytoplasm 23467
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane 23467
## Transport Of Nucleotide Sugars 23467
## Transport Of Organic Anions 23467
## Transport Of The Slbp Dependant Mature Mrna 23467
## Transport Of Vitamins Nucleosides And Related Molecules 23467
## Triglyceride Biosynthesis 23467
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna 23467
## Trna Aminoacylation 23467
## Trna Modification In The Mitochondrion 23467
## Trna Modification In The Nucleus And Cytosol 23467
## Trna Processing 23467
## Trna Processing In The Mitochondrion 23467
## Trna Processing In The Nucleus 23467
## Trp Channels 23467
## Tryptophan Catabolism 23467
## Type I Hemidesmosome Assembly 23467
## Tyrosine Catabolism 23467
## Tysnd1 Cleaves Peroxisomal Proteins 23467
## Ubiquinol Biosynthesis 23467
## Uch Proteinases 23467
## Unblocking Of Nmda Receptors Glutamate Binding And Activation 23467
## Unwinding Of Dna 23467
## Uptake And Actions Of Bacterial Toxins 23467
## Uptake And Function Of Anthrax Toxins 23467
## Uptake And Function Of Diphtheria Toxin 23467
## Urea Cycle 23467
## Vasopressin Like Receptors 23467
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins 23467
## Vegf Ligand Receptor Interactions 23467
## Viral Messenger Rna Synthesis 23467
## Vitamin B1 Thiamin Metabolism 23467
## Vitamin B2 Riboflavin Metabolism 23467
## Vitamin B5 Pantothenate Metabolism 23467
## Vitamin C Ascorbate Metabolism 23467
## Vitamin D Calciferol Metabolism 23467
## Vitamins 23467
## Vldl Assembly 23467
## Vldl Clearance 23467
## Voltage Gated Potassium Channels 23467
## Vxpx Cargo Targeting To Cilium 23467
## Wax And Plasmalogen Biosynthesis 23467
## Wnt Mediated Activation Of Dvl 23467
## Xenobiotics 23467
## Zinc Efflux And Compartmentalization By The Slc30 Family 23467
## Zinc Influx Into Cells By The Slc39 Gene Family 23467
## Zinc Transporters 23467
## hits
## Cytokine Signaling In Immune System BIRC3,CASP1,CASP3,CCL11,CCL2,CCL20,CCL22,CCR1,CCR2,CCR5,CD27,CD40,CD70,CD80,CD86,CDC42,CREB1,CSF2,CXCL1,CXCL10,CXCL2,CXCL8,DDX58,FASLG,FOS,HLA-B,HLA-DQB1,HMGB1,HMOX1,ICAM1,IL10,IL13,IL15,IL17A,IL18,IL1B,IL2,IL33,IL4,IL6,IRAK1,IRAK3,IRF4,LBP,MAPK8,MIF,MMP2,MMP3,MMP9,MYC,MYD88,NFKBIA,NOD1,NOD2,PTGS2,RIPK2,STAT1,STAT3,TNF,TNFRSF11B,TNFSF11,TNFSF13B
## Signaling By Interleukins CASP1,CASP3,CCL11,CCL2,CCL20,CCL22,CCR1,CCR2,CCR5,CD80,CD86,CDC42,CREB1,CSF2,CXCL1,CXCL10,CXCL2,CXCL8,FASLG,FOS,HMGB1,HMOX1,ICAM1,IL10,IL13,IL15,IL17A,IL18,IL1B,IL2,IL33,IL4,IL6,IRAK1,IRAK3,IRF4,LBP,MAPK8,MIF,MMP2,MMP3,MMP9,MYC,MYD88,NFKBIA,NOD1,NOD2,PTGS2,RIPK2,STAT1,STAT3,TNF
## Innate Immune System AIM2,ATG5,BIRC3,BPI,C3,C4B,C5AR1,CASP1,CCL22,CCR2,CD19,CD46,CD55,CD59,CD63,CD68,CDC42,CEACAM1,CEACAM6,CEACAM8,CFH,CREB1,CRP,CST3,CTSC,CXCL1,DDX58,DEFB1,DEFB4A,FOS,HLA-B,HMGB1,HMOX1,HP,IFI16,IL1B,IRAK1,IRAK3,LBP,LY96,MAPK8,MBL2,MIF,MMP8,MMP9,MPO,MUC5B,MYD88,NFKBIA,NLRP3,NOD1,NOD2,RAB14,RIPK2,SLPI,SRC,TLR1,TLR2,TLR3,TLR4,TLR9,TNFAIP3,TREM1,TREM2,TYROBP,VAV2
## Interleukin 10 Signaling CCL2,CCL20,CCL22,CCR1,CCR2,CCR5,CD80,CD86,CSF2,CXCL1,CXCL10,CXCL2,CXCL8,ICAM1,IL10,IL18,IL1B,IL6,PTGS2,STAT3,TNF
## Interleukin 4 And Interleukin 13 Signaling CCL11,CCL2,CCL22,CXCL8,FASLG,FOS,HMOX1,ICAM1,IL10,IL13,IL17A,IL18,IL1B,IL4,IL6,IRF4,LBP,MMP2,MMP3,MMP9,MYC,PTGS2,STAT1,STAT3,TNF
## Chemokine Receptors Bind Chemokines CCL11,CCL2,CCL20,CCL22,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4
## Peptide Ligand Binding Receptors C3,C5AR1,CCL11,CCL2,CCL20,CCL22,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CORT,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4,MLN
## Toll Like Receptor Cascades BIRC3,BPI,CREB1,FOS,HMGB1,IRAK1,IRAK3,LBP,LY96,MAPK8,MYD88,NFKBIA,NOD1,NOD2,RIPK2,TLR1,TLR2,TLR3,TLR4,TLR9
## Signaling By Gpcr C3,C5AR1,CCL11,CCL2,CCL20,CCL22,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CD55,CDC42,CORT,CREB1,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4,EGFR,GAST,MLN,MMP3,SRC,VAV2,WNT5A
## Class A 1 Rhodopsin Like Receptors C3,C5AR1,CCL11,CCL2,CCL20,CCL22,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CORT,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4,MLN
## Toll Like Receptor Tlr1 Tlr2 Cascade CREB1,FOS,HMGB1,IRAK1,IRAK3,LY96,MAPK8,MYD88,NFKBIA,NOD1,NOD2,RIPK2,TLR1,TLR2,TLR4
## Gpcr Ligand Binding C3,C5AR1,CCL11,CCL2,CCL20,CCL22,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CD55,CORT,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4,MLN,WNT5A
## Interleukin 1 Family Signaling CASP1,HMGB1,IL13,IL18,IL1B,IL33,IL4,IRAK1,IRAK3,MAPK8,MYD88,NFKBIA,NOD1,NOD2,RIPK2,STAT3
## G Alpha I Signalling Events C3,C5AR1,CCL20,CCL25,CCR1,CCR2,CCR3,CCR5,CCR7,CCR9,CORT,CREB1,CXCL1,CXCL10,CXCL11,CXCL2,CXCL3,CXCL6,CXCL8,CXCR4,SRC
## Neutrophil Degranulation BPI,C3,C5AR1,CD55,CD59,CD63,CD68,CEACAM1,CEACAM6,CEACAM8,CST3,CTSC,CXCL1,HLA-B,HMGB1,HP,MIF,MMP8,MMP9,MPO,RAB14,SLPI,TLR2,TYROBP
## Toll Like Receptor 9 Tlr9 Cascade CREB1,FOS,HMGB1,IRAK1,LY96,MAPK8,MYD88,NFKBIA,NOD1,NOD2,RIPK2,TLR4,TLR9
## Adaptive Immune System C3,CD19,CD274,CD34,CD40,CD80,CD86,CDC42,CTLA4,CTSC,FCGR2B,HLA-B,HLA-DQB1,HMGB1,ICAM1,LY96,MYD88,NCR1,NFKBIA,PDCD1LG2,RIPK2,SRC,TLR1,TLR2,TLR4,TREM1,TREM2,TYROBP,VAMP3
## Myd88 Independent Tlr4 Cascade BIRC3,CREB1,FOS,HMGB1,IRAK1,LY96,MAPK8,NFKBIA,NOD1,NOD2,RIPK2,TLR4
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways AIM2,BIRC3,CASP1,HMOX1,IRAK1,NLRP3,NOD1,NOD2,RIPK2,TNFAIP3
## Diseases Of Immune System HMGB1,LY96,MYD88,NFKBIA,TLR1,TLR2,TLR3,TLR4
## Death Receptor Signalling BIRC3,CASP3,FASLG,IRAK1,MAPK8,MYD88,NFKBIA,OMG,RIPK2,TNF,TNFAIP3,VAV2
## Leishmania Infection C3,CASP1,CD163,CDC42,CREB1,HMOX1,IL10,IL18,IL1B,IL6,MAPK8,NLRP3,NOX1,SRC,VAV2,WNT5A
## Irak4 Deficiency Tlr2 4 HMGB1,LY96,MYD88,TLR1,TLR2,TLR4
## Extra Nuclear Estrogen Signaling CAV1,CREB1,EGF,EGFR,FOS,MMP2,MMP3,MMP9,SRC
## Nod1 2 Signaling Pathway BIRC3,CASP1,IRAK1,NOD1,NOD2,RIPK2,TNFAIP3
## Regulation Of Tlr By Endogenous Ligand HMGB1,LBP,LY96,TLR1,TLR2,TLR4
## Complement Cascade C3,C4B,C5AR1,CD19,CD46,CD55,CD59,CFH,CRP,MBL2
## Purinergic Signaling In Leishmaniasis Infection C3,CASP1,HMOX1,IL18,IL1B,NLRP3
## Programmed Cell Death BIRC3,CASP1,CASP3,FASLG,HMGB1,IL18,IL1B,LY96,MAPK8,OCLN,STAT3,TLR4
## Interleukin 17 Signaling CREB1,FOS,IL17A,IRAK1,MAPK8,NOD1,NOD2,RIPK2
## Tnfr2 Non Canonical Nf Kb Pathway BIRC3,CD27,CD40,CD70,FASLG,TNF,TNFRSF11B,TNFSF11,TNFSF13B
## Tnfs Bind Their Physiological Receptors CD27,CD70,FASLG,TNFRSF11B,TNFSF11,TNFSF13B
## Interleukin 1 Signaling HMGB1,IL1B,IRAK1,IRAK3,MYD88,NFKBIA,NOD1,NOD2,RIPK2
## Costimulation By The Cd28 Family CD274,CD80,CD86,CDC42,CTLA4,HLA-DQB1,PDCD1LG2,SRC
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex HMGB1,IRAK1,NFKBIA,NOD1,NOD2,RIPK2
## Negative Regulation Of The Pi3k Akt Network CD19,CD80,CD86,EGF,EGFR,IL33,IRAK1,MYD88,SRC
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell C3,CD19,CD34,CD40,FCGR2B,HLA-B,ICAM1,NCR1,TREM1,TREM2,TYROBP
## Regulated Necrosis BIRC3,CASP1,CASP3,FASLG,HMGB1,IL18,IL1B
## Ovarian Tumor Domain Proteases CDK1,DDX58,NOD1,NOD2,RIPK2,TNFAIP3
## Extracellular Matrix Organization CASP3,CEACAM1,CEACAM6,CEACAM8,ICAM1,LOX,MMP13,MMP2,MMP3,MMP8,MMP9,SERPINE1,VWF
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1 IRAK1,MAPK8,NOD1,NOD2,RIPK2
## P75 Ntr Receptor Mediated Signalling CASP3,IRAK1,MAPK8,MYD88,NFKBIA,OMG,RIPK2,VAV2
## Antigen Processing Cross Presentation HLA-B,HMGB1,LY96,MYD88,TLR1,TLR2,TLR4,VAMP3
## Heme Signaling APOA1,CREB1,HMOX1,LY96,SIRT1,TLR4
## Pyroptosis CASP1,CASP3,HMGB1,IL18,IL1B
## Deubiquitination BIRC3,CDK1,CFTR,DDX58,IL33,MYC,NFKBIA,NLRP3,NOD1,NOD2,RIPK2,TNFAIP3
## Infectious Disease C3,CASP1,CCR5,CD163,CDC42,CREB1,CXCR4,EGFR,HMOX1,IL10,IL18,IL1B,IL6,MAPK8,NLRP3,NOX1,SRC,TLR2,TLR9,VAV2,WNT5A
## Activation Of Matrix Metalloproteinases MMP13,MMP2,MMP3,MMP8,MMP9
## Post Translational Protein Modification APOA1,BIRC3,C3,CD55,CD59,CDK1,CFTR,CST3,CTSC,DDX58,DNMT1,DNMT3A,GP2,IL33,IL6,MUC5B,MYC,NANP,NFKBIA,NLRP3,NOD1,NOD2,PCSK9,RAB14,RIPK2,TNFAIP3,UHRF2
## P75ntr Signals Via Nf Kb IRAK1,MYD88,NFKBIA,RIPK2
## Esr Mediated Signaling CAV1,CREB1,EGF,EGFR,FOS,MMP2,MMP3,MMP9,MYC,SRC
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway BIRC3,CD40,TNFSF11,TNFSF13B
## Fibronectin Matrix Formation CEACAM1,CEACAM6,CEACAM8
## Gastrin Creb Signalling Pathway Via Pkc And Mapk CREB1,EGFR,GAST,MMP3
## Pi3k Akt Signaling In Cancer CD19,CD80,CD86,CREB1,EGF,EGFR,SRC
## Beta Defensins CCR2,DEFB1,DEFB4A,TLR1,TLR2
## Ctla4 Inhibitory Signaling CD80,CD86,CTLA4,SRC
## Inflammasomes AIM2,CASP1,HMOX1,NLRP3
## Interleukin 2 Family Signaling CSF2,IL15,IL2,STAT1,STAT3
## Dap12 Interactions HLA-B,TREM1,TREM2,TYROBP,VAV2
## Interleukin 18 Signaling IL13,IL18,IL4
## Activated Tak1 Mediates P38 Mapk Activation IRAK1,NOD1,NOD2,RIPK2
## Constitutive Signaling By Aberrant Pi3k In Cancer CD19,CD80,CD86,EGF,EGFR,SRC
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling CREB1,EGF,EGFR,FOS
## Mapk Family Signaling Cascades CDC42,CDK1,CSF2,EGF,EGFR,IL2,IL6,MMP2,MYC,SRC,VWF
## Cd163 Mediating An Anti Inflammatory Response CD163,IL10,IL6
## Interleukin 1 Processing CASP1,IL18,IL1B
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway CASP3,FASLG,LY96,TLR4
## Defensins CCR2,DEFB1,DEFB4A,TLR1,TLR2
## Apoptosis CASP3,FASLG,HMGB1,LY96,MAPK8,OCLN,STAT3,TLR4
## Interleukin 12 Family Signaling CDC42,IL10,MIF,STAT1,STAT3
## Interleukin 6 Signaling IL6,STAT1,STAT3
## Signaling By Nuclear Receptors CAV1,CREB1,EGF,EGFR,FOS,MMP2,MMP3,MMP9,MYC,SRC
## Antimicrobial Peptides BPI,CCR2,DEFB1,DEFB4A,TLR1,TLR2
## Cd28 Dependent Vav1 Pathway CD80,CD86,CDC42
## Killing Mechanisms MAPK8,NOX1,WNT5A
## Intracellular Signaling By Second Messengers CD19,CD80,CD86,CREB1,EGF,EGFR,IL33,IRAK1,MYD88,SRC
## Cell Surface Interactions At The Vascular Wall CAV1,CD2,CEACAM1,CEACAM6,CEACAM8,MIF,SRC,TREM1
## Cd28 Co Stimulation CD80,CD86,CDC42,SRC
## Collagen Degradation MMP13,MMP2,MMP3,MMP8,MMP9
## P75ntr Recruits Signalling Complexes IRAK1,MYD88,RIPK2
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling IRAK1,MYD88,TLR9
## Hemostasis APOA1,CAV1,CD2,CD63,CDC42,CEACAM1,CEACAM6,CEACAM8,EGF,MIF,SERPINE1,SRC,TREM1,VAV2,VWF
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers CD19,CD80,CD86,CREB1,EGF,EGFR,MYC,SRC,STAT1,STAT3,VWF
## Caspase Activation Via Death Receptors In The Presence Of Ligand FASLG,LY96,TLR4
## The Nlrp3 Inflammasome CASP1,HMOX1,NLRP3
## Gab1 Signalosome EGF,EGFR,SRC
## Rip Mediated Nfkb Activation Via Zbp1 MYD88,NFKBIA,TLR3
## Transcriptional Regulation By Runx2 CDK1,CDK4,MMP13,RUNX2,SRC,STAT1
## Signaling By Scf Kit MMP9,SRC,STAT1,STAT3
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps APOA1,C3,CST3,IL6,MMP2,PCSK9
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta ATG5,DDX58,HMGB1,NFKBIA,TNFAIP3
## Signaling By Receptor Tyrosine Kinases CAV1,CDC42,CREB1,EGF,EGFR,FOS,MMP9,SRC,STAT1,STAT3,TLR9,VAV2
## Rna Polymerase Ii Transcription ATM,CASP1,CAV1,CDK1,CDK4,CREB1,CSF2,CTLA4,EGFR,FASLG,FOS,IL2,IL6,IRAK1,MMP13,MYC,OCLN,RUNX2,SERPINE1,SIRT1,SRC,STAT1
## Signaling By Kit In Disease SRC,STAT1,STAT3
## Zbp1 Dai Mediated Induction Of Type I Ifns MYD88,NFKBIA,TLR3
## Signaling By Egfr CDC42,EGF,EGFR,SRC
## Eph Ephrin Mediated Repulsion Of Cells MMP2,MMP9,SRC,VAV2
## Degradation Of The Extracellular Matrix CASP3,MMP13,MMP2,MMP3,MMP8,MMP9
## Eph Ephrin Signaling CDC42,MMP2,MMP9,SRC,VAV2
## Interferon Gamma Signaling HLA-B,HLA-DQB1,ICAM1,IRF4,STAT1
## Ikk Complex Recruitment Mediated By Rip1 BIRC3,LY96,TLR4
## Cellular Senescence ATM,CDK4,CXCL8,FOS,IL6,MAPK8,STAT3
## Rac3 Gtpase Cycle CAV1,CDC42,NOX1,VAMP3,VAV2
## Cellular Responses To External Stimuli APOA1,ATM,CDK4,CREB1,CXCL8,FOS,HMOX1,IL6,LY96,MAPK8,NLRP3,SIRT1,STAT3,TLR4
## Signaling By Ptk6 CDK4,EGF,EGFR,STAT3
## Platelet Activation Signaling And Aggregation APOA1,CD63,CDC42,EGF,SERPINE1,SRC,VAV2,VWF
## Interleukin 6 Family Signaling IL6,STAT1,STAT3
## Traf6 Mediated Nf Kb Activation DDX58,HMGB1,NFKBIA
## Vesicle Mediated Transport APOA1,CD163,CD55,CD59,CFTR,CTSC,EGF,EGFR,HP,MARCO,RAB14,SRC,VAMP3,WNT5A
## Rhoq Gtpase Cycle CAV1,CDC42,CFTR,VAMP3
## Assembly Of Collagen Fibrils And Other Multimeric Structures LOX,MMP13,MMP3,MMP9
## Cargo Recognition For Clathrin Mediated Endocytosis CFTR,EGF,EGFR,VAMP3,WNT5A
## Cytosolic Sensors Of Pathogen Associated Dna IFI16,MYD88,NFKBIA,TLR3
## Pd 1 Signaling CD274,HLA-DQB1,PDCD1LG2
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells CSF2,RUNX2
## Dap12 Signaling TREM2,TYROBP,VAV2
## Downstream Signal Transduction SRC,STAT1,STAT3
## Senescence Associated Secretory Phenotype Sasp CDK4,CXCL8,FOS,IL6,STAT3
## Tnfr1 Induced Nfkappab Signaling Pathway BIRC3,TNF,TNFAIP3
## Activation Of C3 And C5 C3,C4B
## Egfr Downregulation CDC42,EGF,EGFR
## Mapk Targets Nuclear Events Mediated By Map Kinases CREB1,FOS,MAPK8
## Runx2 Regulates Genes Involved In Cell Migration MMP13,RUNX2
## Egfr Interacts With Phospholipase C Gamma EGF,EGFR
## Egfr Transactivation By Gastrin EGFR,MMP3
## Interleukin 9 Signaling STAT1,STAT3
## Trif Mediated Programmed Cell Death LY96,TLR4
## Negative Regulators Of Ddx58 Ifih1 Signaling ATG5,DDX58,TNFAIP3
## Regulation Of Tnfr1 Signaling BIRC3,TNF,TNFAIP3
## Rhog Gtpase Cycle CAV1,CDC42,VAMP3,VAV2
## Activation Of The Ap 1 Family Of Transcription Factors FOS,MAPK8
## Interleukin 21 Signaling STAT1,STAT3
## Mapk3 Erk1 Activation CDK1,IL6
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs CTLA4,IL2
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation CDC42,IL10,MIF
## Apoptotic Cleavage Of Cell Adhesion Proteins CASP3,OCLN
## Initial Triggering Of Complement C3,C4B,CRP,MBL2
## Interleukin 27 Signaling STAT1,STAT3
## Receptor Mediated Mitophagy ATG5,SRC
## Response To Elevated Platelet Cytosolic Ca2 APOA1,CD63,EGF,SERPINE1,VWF
## Selective Autophagy ATG5,ATM,CFTR,SRC
## Gp1b Ix V Activation Signalling SRC,VWF
## Interleukin 35 Signalling STAT1,STAT3
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants STAT1,STAT3
## Tp53 Regulates Transcription Of Caspase Activators And Caspases ATM,CASP1
## Nervous System Development CDC42,CREB1,CXCR4,EGFR,MAPK8,MMP2,MMP9,SRC,TREM2,TYROBP,VAV2
## C Type Lectin Receptors Clrs CCL22,IL1B,MUC5B,NFKBIA,SRC
## Interferon Signaling DDX58,HLA-B,HLA-DQB1,ICAM1,IRF4,STAT1
## Apoptosis Induced Dna Fragmentation CASP3,HMGB1
## Erbb2 Activates Ptk6 Signaling EGF,EGFR
## Nf Kb Is Activated And Signals Survival IRAK1,NFKBIA
## Rac2 Gtpase Cycle CAV1,CDC42,VAMP3,VAV2
## Tnfr1 Induced Proapoptotic Signaling TNF,TNFAIP3
## Trafficking And Processing Of Endosomal Tlr TLR3,TLR9
## Tnf Signaling BIRC3,TNF,TNFAIP3
## Clathrin Mediated Endocytosis CFTR,EGF,EGFR,VAMP3,WNT5A
## Collagen Formation LOX,MMP13,MMP3,MMP9
## Transcriptional Regulation Of Granulopoiesis CDK4,CREB1,MYC,STAT3
## Dcc Mediated Attractive Signaling CDC42,SRC
## Early Phase Of Hiv Life Cycle CCR5,CXCR4
## Interleukin 15 Signaling IL15,STAT3
## Shc1 Events In Egfr Signaling EGF,EGFR
## Mapk6 Mapk4 Signaling CDC42,CDK1,MMP2,MYC
## Interleukin 12 Signaling CDC42,IL10,MIF
## Constitutive Signaling By Egfrviii EGF,EGFR
## Erbb2 Regulates Cell Motility EGF,EGFR
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins SRC,VWF
## P130cas Linkage To Mapk Signaling For Integrins SRC,VWF
## Signaling By Notch3 EGF,EGFR,STAT1
## Ub Specific Processing Proteases BIRC3,CFTR,DDX58,IL33,MYC,NFKBIA
## Binding And Uptake Of Ligands By Scavenger Receptors APOA1,CD163,HP,MARCO
## Netrin 1 Signaling CDC42,MAPK8,SRC
## Signaling By Erbb2 EGF,EGFR,SRC
## Grb2 Events In Erbb2 Signaling EGF,EGFR
## Pi3k Events In Erbb2 Signaling EGF,EGFR
## Signal Regulatory Protein Family Interactions SRC,TYROBP
## Signaling By Erbb2 Ecd Mutants EGF,EGFR
## Sumoylation Of Dna Methylation Proteins DNMT1,DNMT3A
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex LY96,TLR4
## Cdc42 Gtpase Cycle CAV1,CDC42,NOX1,VAMP3,VAV2
## Clec7a Dectin 1 Signaling CCL22,IL1B,NFKBIA,SRC
## Class I Mhc Mediated Antigen Processing Presentation HLA-B,HMGB1,LY96,MYD88,TLR1,TLR2,TLR4,VAMP3
## Apoptotic Execution Phase CASP3,HMGB1,OCLN
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon LY96,TLR4
## Intrinsic Pathway For Apoptosis CASP3,MAPK8,STAT3
## Rhoj Gtpase Cycle CAV1,CDC42,VAMP3
## Signaling By Cytosolic Fgfr1 Fusion Mutants STAT1,STAT3
## Signaling By Vegf CAV1,CDC42,SRC,VAV2
## Transcriptional Regulation By Runx1 CSF2,CTLA4,IL2,OCLN,RUNX2,SRC
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants EGF,EGFR
## Other Semaphorin Interactions TREM2,TYROBP
## Scavenging By Class A Receptors APOA1,MARCO
## Ticam1 Rip1 Mediated Ikk Complex Recruitment BIRC3,TLR3
## Signaling By Erbb4 EGF,EGFR,SRC
## Signaling By Pdgf SRC,STAT1,STAT3
## Signaling By Pdgfr In Disease STAT1,STAT3
## Interleukin 37 Signaling CASP1,STAT3
## Signal Transduction By L1 EGFR,VAV2
## Cd28 Dependent Pi3k Akt Signaling CD80,CD86
## Rac1 Gtpase Cycle CAV1,CDC42,NOX1,VAMP3,VAV2
## Shc1 Events In Erbb2 Signaling EGF,EGFR
## Foxo Mediated Transcription CAV1,FASLG,SIRT1
## Raf Independent Mapk1 3 Activation CDK1,IL6
## Growth Hormone Receptor Signaling STAT1,STAT3
## Runx2 Regulates Osteoblast Differentiation RUNX2,SRC
## Circadian Clock CREB1,SERPINE1,SIRT1
## Inactivation Of Csf3 G Csf Signaling STAT1,STAT3
## Notch3 Activation And Transmission Of Signal To The Nucleus EGF,EGFR
## Rhob Gtpase Cycle CAV1,VAMP3,VAV2
## Scavenging Of Heme From Plasma APOA1,CD163,HP
## Signaling By Egfr In Cancer EGF,EGFR
## Interleukin 20 Family Signaling STAT1,STAT3
## Signaling By Erbb2 In Cancer EGF,EGFR
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress CCL2,CXCL8
## G0 And Early G1 CDK1,MYC
## Integrin Signaling SRC,VWF
## Interferon Alpha Beta Signaling HLA-B,IRF4,STAT1
## Interleukin Receptor Shc Signaling CSF2,IL2
## Membrane Trafficking CD55,CD59,CFTR,CTSC,EGF,EGFR,RAB14,SRC,VAMP3,WNT5A
## Rhoc Gtpase Cycle CAV1,VAMP3,VAV2
## Signaling By Ntrks CREB1,FOS,SRC,STAT3
## Vegfr2 Mediated Vascular Permeability CAV1,VAV2
## Cell Death Signalling Via Nrage Nrif And Nade CASP3,MAPK8,VAV2
## Developmental Biology CDC42,CDK4,CREB1,CXCR4,EGFR,MAPK8,MMP2,MMP9,MYC,SRC,STAT3,TNF,TREM2,TYROBP,VAV2
## Downregulation Of Erbb2 Signaling EGF,EGFR
## Mitophagy ATG5,SRC
## Ripk1 Mediated Regulated Necrosis BIRC3,FASLG
## G Alpha Q Signalling Events CREB1,EGFR,GAST,MLN,MMP3
## Signaling By Csf3 G Csf STAT1,STAT3
## Fgfr1 Mutant Receptor Activation STAT1,STAT3
## Nicotinate Metabolism CD38,PTGS2
## Runx2 Regulates Bone Development RUNX2,SRC
## Perk Regulates Gene Expression CCL2,CXCL8
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription MYC,SERPINE1
## Anti Inflammatory Response Favouring Leishmania Parasite Infection CD163,CREB1,IL10,IL6,SRC
## Mitotic G1 Phase And G1 S Transition CDK1,CDK4,MYC,SRC
## Autophagy ATG5,ATM,CFTR,SRC
## Cargo Concentration In The Er CD59,CTSC
## Plasma Lipoprotein Clearance APOA1,PCSK9
## Fceri Mediated Mapk Activation FOS,MAPK8,VAV2
## Gpvi Mediated Activation Cascade CDC42,VAV2
## Regulation Of Tp53 Expression And Degradation ATM,CDK1
## Rhoh Gtpase Cycle CAV1,VAMP3
## Apoptotic Cleavage Of Cellular Proteins CASP3,OCLN
## Fcgr3a Mediated Il10 Synthesis CREB1,IL10,SRC
## Signaling By Fgfr1 In Disease STAT1,STAT3
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors EGFR,MYC
## Ngf Stimulated Transcription CREB1,FOS
## Platelet Aggregation Plug Formation SRC,VWF
## Map2k And Mapk Activation SRC,VWF
## Signaling By Notch CREB1,EGF,EGFR,MYC,STAT1
## Alternative Complement Activation C3
## Fasl Cd95l Signaling FASLG
## G2 M Dna Replication Checkpoint CDK1
## Galactose Catabolism GALE
## Hdl Clearance APOA1
## Mecp2 Regulates Transcription Factors CREB1
## Nostrin Mediated Enos Trafficking CAV1
## Runx1 Regulates Expression Of Components Of Tight Junctions OCLN
## Runx2 Regulates Chondrocyte Maturation RUNX2
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors MYC
## Ephb Mediated Forward Signaling CDC42,SRC
## Rhof Gtpase Cycle CAV1,VAMP3
## Diseases Of Programmed Cell Death DNMT1,DNMT3A,FASLG
## Tp53 Regulates Transcription Of Cell Death Genes ATM,CASP1
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer MYC,SERPINE1
## Activated Ntrk3 Signals Through Pi3k SRC
## Activation Of Caspases Through Apoptosome Mediated Cleavage CASP3
## Biosynthesis Of Epa Derived Spms PTGS2
## Clec7a Inflammasome Pathway IL1B
## Nade Modulates Death Signalling CASP3
## Phosphorylation Of Emi1 CDK1
## Protein Repair MSRA
## Ptk6 Promotes Hif1a Stabilization EGFR
## Ptk6 Regulates Cell Cycle CDK4
## Scavenging By Class B Receptors APOA1
## Sensing Of Dna Double Strand Breaks ATM
## Signaling By Moderate Kinase Activity Braf Mutants SRC,VWF
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives PTGS2
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death TLR3
## Tnfr1 Mediated Ceramide Production TNF
## Cyclin D Associated Events In G1 CDK4,SRC
## Fc Epsilon Receptor Fceri Signaling FOS,MAPK8,NFKBIA,VAV2
## Interleukin 3 Interleukin 5 And Gm Csf Signaling CSF2,IL2
## Sumoylation DNMT1,DNMT3A,NFKBIA,UHRF2
## Activated Ntrk2 Signals Through Fyn SRC
## Activation Of Nima Kinases Nek9 Nek6 Nek7 CDK1
## Creb Phosphorylation CREB1
## Defective Factor Viii Causes Hemophilia A VWF
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production MYD88
## Ikba Variant Leads To Eda Id NFKBIA
## Modulation By Mtb Of Host Immune System TLR2
## Parasite Infection CDC42,SRC,VAV2
## Rhod Gtpase Cycle CAV1,VAMP3
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters MYC
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde CREB1
## Hdl Assembly APOA1
## Inactivation Of Cdc42 And Rac1 CDC42
## Lectin Pathway Of Complement Activation MBL2
## Mecp2 Regulates Transcription Of Neuronal Ligands CREB1
## Netrin Mediated Repulsion Signals SRC
## Runx3 Regulates Wnt Signaling MYC
## Smac Xiap Regulated Apoptotic Response CASP3
## L1cam Interactions EGFR,SRC,VAV2
## Cytoprotection By Hmox1 HMOX1,NLRP3,STAT3
## Tcr Signaling HLA-DQB1,NFKBIA,RIPK2
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members STAT3
## Downregulation Of Erbb4 Signaling SRC
## E2f Enabled Inhibition Of Pre Replication Complex Formation CDK1
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells SRC
## Interleukin 23 Signaling STAT3
## Mapk1 Erk2 Activation IL6
## Oas Antiviral Response DDX58
## Oxidative Stress Induced Senescence CDK4,FOS,MAPK8
## Nrage Signals Death Through Jnk MAPK8,VAV2
## Akt Phosphorylates Targets In The Nucleus CREB1
## Camk Iv Mediated Phosphorylation Of Creb CREB1
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand CASP3
## Chylomicron Assembly APOA1
## Chylomicron Remodeling APOA1
## Hdl Remodeling APOA1
## Mastl Facilitates Mitotic Progression CDK1
## P75ntr Regulates Axonogenesis OMG
## Regulation Of Commissural Axon Pathfinding By Slit And Robo SRC
## Regulation Of Foxo Transcriptional Activity By Acetylation SIRT1
## Nuclear Events Kinase And Transcription Factor Activation CREB1,FOS
## Ca2 Pathway MYC,WNT5A
## Tp53 Regulates Transcription Of Dna Repair Genes ATM,FOS
## Condensation Of Prometaphase Chromosomes CDK1
## Dermatan Sulfate Biosynthesis UST
## Dscam Interactions MAPK8
## Endosomal Vacuolar Pathway HLA-B
## Enos Activation CAV1
## Ncam Signaling For Neurite Out Growth CREB1,SRC
## Pexophagy ATM
## Regulation By C Flip FASLG
## Rho Gtpases Activate Ktn1 CDC42
## Signaling By Fgfr In Disease STAT1,STAT3
## Signaling By Leptin STAT3
## Sumoylation Of Immune Response Proteins NFKBIA
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex TLR3
## Transcriptional Regulation By Mecp2 CREB1,IRAK1
## Semaphorin Interactions TREM2,TYROBP
## Dna Methylation DNMT1,DNMT3A
## Signaling By Braf And Raf Fusions SRC,VWF
## Caspase Mediated Cleavage Of Cytoskeletal Proteins CASP3
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase CREB1
## Interleukin 2 Signaling IL2
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10 DDX58
## Notch2 Intracellular Domain Regulates Transcription CREB1
## Pecam1 Interactions SRC
## Tandem Pore Domain Potassium Channels KCNK1
## Ticam1 Dependent Activation Of Irf3 Irf7 TLR3
## Vldlr Internalisation And Degradation PCSK9
## Fcgamma Receptor Fcgr Dependent Phagocytosis CDC42,SRC,VAV2
## Copii Mediated Vesicle Transport CD59,CTSC
## Tcf Dependent Signaling In Response To Wnt CAV1,MYC,TERT,WNT5A
## Advanced Glycosylation Endproduct Receptor Signaling HMGB1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex CDK1
## Cytochrome C Mediated Apoptotic Response CASP3
## Dissolution Of Fibrin Clot SERPINE1
## Irf3 Mediated Induction Of Type I Ifn IFI16
## P38mapk Events SRC
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation STAT3
## Purine Salvage ADK
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip DPP4
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2 WNT5A
## Epigenetic Regulation Of Gene Expression DNMT1,DNMT3A,SIRT1
## Creation Of C4 And C2 Activators CRP,MBL2
## Plasma Lipoprotein Assembly Remodeling And Clearance APOA1,PCSK9
## Rhoa Gtpase Cycle CAV1,VAMP3,VAV2
## Golgi Cisternae Pericentriolar Stack Reorganization CDK1
## Irak1 Recruits Ikk Complex IRAK1
## Regulation Of Ifng Signaling STAT1
## Repression Of Wnt Target Genes MYC
## Traf3 Dependent Irf Activation Pathway DDX58
## Prc2 Methylates Histones And Dna DNMT1,DNMT3A
## Regulation Of Runx2 Expression And Activity RUNX2,STAT1
## Signaling By Tgf Beta Receptor Complex MYC,SERPINE1
## Depolymerisation Of The Nuclear Lamina CDK1
## Er To Golgi Anterograde Transport CD55,CD59,CTSC
## Heme Degradation HMOX1
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation CAV1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists WNT5A
## Platelet Adhesion To Exposed Collagen VWF
## Rho Gtpase Cycle CAV1,CDC42,CFTR,NOX1,VAMP3,VAV2
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx PTGS2
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors EGFR
## Wnt5a Dependent Internalization Of Fzd4 WNT5A
## Yap1 And Wwtr1 Taz Stimulated Gene Expression RUNX2
## Abc Transporter Disorders APOA1,CFTR
## Cellular Response To Chemical Stress HMOX1,NLRP3,STAT3
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc MUC5B
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks VWF
## Dna Double Strand Break Response ATM,MAPK8
## Foxo Mediated Transcription Of Cell Death Genes FASLG
## Nrif Signals Cell Death From The Nucleus MAPK8
## Regulation Of Kit Signaling SRC
## Rmts Methylate Histone Arginines CDK4,DNMT3A
## Signaling By Met SRC,STAT3
## Spry Regulation Of Fgf Signaling SRC
## Sting Mediated Induction Of Host Immune Responses IFI16
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1 CDK1
## Abc Transporters In Lipid Homeostasis APOA1
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects CDK4
## Antiviral Mechanism By Ifn Stimulated Genes DDX58,STAT1
## Crosslinking Of Collagen Fibrils LOX
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps MUC5B
## Diseases Associated With Glycosylation Precursor Biosynthesis GALE
## Foxo Mediated Transcription Of Cell Cycle Genes CAV1
## Mecp2 Regulates Neuronal Receptors And Channels CREB1
## Oncogenic Mapk Signaling SRC,VWF
## Regulation Of Hsf1 Mediated Heat Shock Response ATM,SIRT1
## Regulation Of Runx1 Expression And Activity SRC
## Signaling By Ntrk3 Trkc SRC
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest CDK1
## Transcriptional Regulation Of White Adipocyte Differentiation CDK4,TNF
## Apoptotic Factor Mediated Response CASP3
## Biosynthesis Of Specialized Proresolving Mediators Spms PTGS2
## Cyclin A Cdk2 Associated Events At S Phase Entry CDK4,MYC
## Ephrin Signaling SRC
## G Beta Gamma Signalling Through Cdc42 CDC42
## Initiation Of Nuclear Envelope Ne Reformation CDK1
## Integrin Cell Surface Interactions ICAM1,VWF
## Ldl Clearance PCSK9
## Listeria Monocytogenes Entry Into Host Cells SRC
## Meiotic Recombination ATM,CDK4
## Nicotinamide Salvaging PTGS2
## Phase 4 Resting Membrane Potential KCNK1
## Phosphorylation Of The Apc C CDK1
## Pka Mediated Phosphorylation Of Creb CREB1
## Plasma Lipoprotein Assembly APOA1
## Regulation Of Tp53 Activity Through Methylation ATM
## Signaling By Hippo CASP3
## Signalling To Ras SRC
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1 DPP4
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release ATM
## Transcription Of E2f Targets Under Negative Control By Dream Complex MYC
## Vegfr2 Mediated Cell Proliferation SRC
## Branched Chain Amino Acid Catabolism IVD
## Formation Of The Beta Catenin Tcf Transactivating Complex MYC,TERT
## Rho Gtpases Activate Paks CDC42
## Unfolded Protein Response Upr CCL2,CXCL8
## Activation Of Nmda Receptors And Postsynaptic Events CREB1,SRC
## Chaperone Mediated Autophagy CFTR
## Class B 2 Secretin Family Receptors CD55,WNT5A
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models FASLG
## E2f Mediated Regulation Of Dna Replication CDK1
## G2 M Dna Damage Checkpoint ATM,CDK1
## Incretin Synthesis Secretion And Inactivation DPP4
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane HMOX1
## Intrinsic Pathway Of Fibrin Clot Formation VWF
## Long Term Potentiation SRC
## Nucleotide Salvage ADK
## Pink1 Prkn Mediated Mitophagy ATG5
## Telomere Extension By Telomerase TERT
## Termination Of O Glycan Biosynthesis MUC5B
## Transcriptional Regulation By Runx3 MYC,SRC
## Transport To The Golgi And Subsequent Modification CD55,CD59,CTSC
## Apc C Cdc20 Mediated Degradation Of Cyclin B CDK1
## Cellular Response To Heat Stress ATM,SIRT1
## Metabolism Of Vitamins And Cofactors APOA1,CD38,PTGS2
## Other Interleukin Signaling CASP3
## Rho Gtpases Activate Nadph Oxidases NOX1
## Triglyceride Catabolism CAV1
## Abc Family Proteins Mediated Transport APOA1,CFTR
## Adp Signalling Through P2y Purinoceptor 1 SRC
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc HLA-B
## Basigin Interactions CAV1
## Constitutive Signaling By Akt1 E17k In Cancer CREB1
## Copi Mediated Anterograde Transport CD55,CD59
## Cyclin A B1 B2 Associated Events During G2 M Transition CDK1
## Dectin 2 Family MUC5B
## Notch3 Intracellular Domain Regulates Transcription STAT1
## Regulation Of Ifna Signaling STAT1
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa ATM
## Signaling By Ntrk2 Trkb SRC
## Signaling By Tgfb Family Members MYC,SERPINE1
## Wnt Ligand Biogenesis And Trafficking WNT5A
## Asparagine N Linked Glycosylation CD55,CD59,CTSC,NANP
## Bmal1 Clock Npas2 Activates Circadian Gene Expression SERPINE1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling CREB1
## Infection With Mycobacterium Tuberculosis TLR2
## Metabolism Of Porphyrins HMOX1
## Amyloid Fiber Formation APOA1,CST3
## Epha Mediated Growth Cone Collapse SRC
## G1 S Specific Transcription CDK1
## Myogenesis CDC42
## Negative Epigenetic Regulation Of Rrna Expression DNMT1,SIRT1
## Negative Regulation Of Fgfr3 Signaling SRC
## Traf6 Mediated Irf7 Activation DDX58
## Activation Of Bh3 Only Proteins MAPK8
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane CAV1
## Met Activates Ptk2 Signaling SRC
## Negative Regulation Of Fgfr4 Signaling SRC
## Transcriptional Regulation Of Pluripotent Stem Cells STAT3
## G Protein Beta Gamma Signalling CDC42
## Meiosis ATM,CDK4
## Negative Regulation Of Fgfr1 Signaling SRC
## Nuclear Signaling By Erbb4 SRC
## Plasma Lipoprotein Remodeling APOA1
## Regulation Of Mecp2 Expression And Activity CREB1
## Rho Gtpase Effectors CDC42,CFTR,NOX1,SRC
## Rho Gtpases Activate Iqgaps CDC42
## Rhov Gtpase Cycle CDC42
## Sialic Acid Metabolism NANP
## Signal Amplification SRC
## Signaling By Notch2 CREB1
## Signaling By Robo Receptors CDC42,CXCR4,SRC
## Thrombin Signalling Through Proteinase Activated Receptors Pars SRC
## Late Endosomal Microautophagy CFTR
## Metabolism Of Water Soluble Vitamins And Cofactors CD38,PTGS2
## Negative Regulation Of Fgfr2 Signaling SRC
## Oncogene Induced Senescence CDK4
## Raf Activation SRC
## Resolution Of D Loop Structures ATM
## Rhou Gtpase Cycle CDC42
## Signaling By Wnt CAV1,MYC,TERT,WNT5A
## Signalling To Erks SRC
## Ca Dependent Events CREB1
## Hdr Through Single Strand Annealing Ssa ATM
## Interleukin 7 Signaling STAT3
## Metalloprotease Dubs NLRP3
## Mhc Class Ii Antigen Presentation CTSC,HLA-DQB1
## Nuclear Pore Complex Npc Disassembly CDK1
## Rho Gtpases Activate Wasps And Waves CDC42
## Ros And Rns Production In Phagocytes MPO
## Cell Cell Communication SRC,TYROBP
## Diseases Of Mitotic Cell Cycle CDK4
## Triglyceride Metabolism CAV1
## Adora2b Mediated Anti Inflammatory Cytokines Production CREB1,IL6
## Association Of Tric Cct With Target Proteins During Biosynthesis STAT3
## Formation Of Fibrin Clot Clotting Cascade VWF
## Generation Of Second Messenger Molecules HLA-DQB1
## Ret Signaling SRC
## Signaling By Fgfr3 SRC
## Dag And Ip3 Signaling CREB1
## Hcmv Early Events CREB1,EGFR
## Homologous Dna Pairing And Strand Exchange ATM
## Met Promotes Cell Motility SRC
## Rnd1 Gtpase Cycle CAV1
## Rnd3 Gtpase Cycle CAV1
## Signaling By Fgfr4 SRC
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3 CAV1,CDC42,CFTR,NOX1,SRC,VAMP3,VAV2
## Transcriptional Regulation By Ventx IL6
## Aggrephagy CFTR
## Rho Gtpases Activate Formins CDC42,SRC
## Rnd2 Gtpase Cycle CAV1
## Sumoylation Of Transcription Cofactors UHRF2
## Transcriptional Regulation By Tp53 ATM,CASP1,CDK1,FOS
## Beta Catenin Independent Wnt Signaling MYC,WNT5A
## Diseases Of Glycosylation GALE,MUC5B
## Elastic Fibre Formation LOX
## Reproduction ATM,CDK4
## Estrogen Dependent Gene Expression FOS,MYC
## Hiv Life Cycle CCR5,CXCR4
## Irs Mediated Signalling TLR9
## Metabolism Of Fat Soluble Vitamins APOA1
## Notch1 Intracellular Domain Regulates Transcription MYC
## Chondroitin Sulfate Dermatan Sulfate Metabolism UST
## Recycling Pathway Of L1 SRC
## Retrograde Transport At The Trans Golgi Network VAMP3
## Signaling By Fgfr1 SRC
## Tp53 Regulates Transcription Of Cell Cycle Genes CDK1
## Extension Of Telomeres TERT
## Gap Junction Trafficking And Regulation SRC
## Chromatin Modifying Enzymes CDK4,DNMT3A,PADI4
## G Protein Mediated Events CREB1
## Insulin Receptor Signalling Cascade TLR9
## Nuclear Envelope Breakdown CDK1
## Regulation Of Tp53 Activity ATM,CDK1
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r TLR9
## Synthesis Of Pips At The Plasma Membrane RAB14
## Hcmv Infection CREB1,EGFR
## Regulation Of Runx3 Expression And Activity SRC
## S Phase CDK4,MYC
## Transcriptional Activation Of Mitochondrial Biogenesis CREB1
## Dna Double Strand Break Repair ATM,MAPK8
## G2 M Checkpoints ATM,CDK1
## Iron Uptake And Transport HMOX1
## Signaling By Notch1 Pest Domain Mutants In Cancer MYC
## Signaling By The B Cell Receptor Bcr CD19,NFKBIA
## Stabilization Of P53 ATM
## Arachidonic Acid Metabolism PTGS2
## Scf Skp2 Mediated Degradation Of P27 P21 CDK4
## Dectin 1 Mediated Noncanonical Nf Kb Signaling CCL22
## Defective Cftr Causes Cystic Fibrosis CFTR
## Disorders Of Transmembrane Transporters APOA1,CFTR
## O Linked Glycosylation Of Mucins MUC5B
## Asymmetric Localization Of Pcp Proteins WNT5A
## Synthesis Of Substrates In N Glycan Biosythesis NANP
## Cell Cycle ATM,CDK1,CDK4,MYC,SRC,TERT
## Hdr Through Homologous Recombination Hrr ATM
## Rab Geranylgeranylation RAB14
## Regulation Of Hmox1 Expression And Activity HMOX1
## Diseases Associated With O Glycosylation Of Proteins MUC5B
## Fcgr Activation SRC
## G1 S Dna Damage Checkpoints ATM
## Nonhomologous End Joining Nhej ATM
## Sirt1 Negatively Regulates Rrna Expression SIRT1
## Aurka Activation By Tpx2 CDK1
## Condensation Of Prophase Chromosomes CDK1
## Signaling By Fgfr2 SRC
## Signaling By Notch1 MYC
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane RAB14
## Ecm Proteoglycans SERPINE1
## Nuclear Envelope Ne Reassembly CDK1
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein NANP
## Signaling By Insulin Receptor TLR9
## Dna Damage Telomere Stress Induced Senescence ATM
## Downstream Signaling Events Of B Cell Receptor Bcr NFKBIA
## G Alpha 12 13 Signalling Events VAV2
## Neurotransmitter Receptors And Postsynaptic Signal Transmission CREB1,SRC
## Potential Therapeutics For Sars TLR9
## Recruitment Of Mitotic Centrosome Proteins And Complexes CDK1
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint CDK1
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers CD19
## Degradation Of Beta Catenin By The Destruction Complex MYC
## Fceri Mediated Ca 2 Mobilization VAV2
## Pi Metabolism RAB14
## Apc C Mediated Degradation Of Cell Cycle Proteins CDK1
## Regulation Of Plk1 Activity At G2 M Transition CDK1
## Signaling By Fgfr SRC
## Opioid Signalling CREB1
## Peptide Hormone Metabolism DPP4
## Rab Gefs Exchange Gtp For Gdp On Rabs RAB14
## Mitochondrial Biogenesis CREB1
## Pcp Ce Pathway WNT5A
## Post Translational Modification Synthesis Of Gpi Anchored Proteins GP2
## Regulation Of Tp53 Activity Through Phosphorylation ATM
## Anchoring Of The Basal Body To The Plasma Membrane CDK1
## Hiv Infection CCR5,CXCR4
## Recruitment Of Numa To Mitotic Centrosomes CDK1
## Metabolism Of Nucleotides ADK
## Processing Of Dna Double Strand Break Ends ATM
## Protein Folding STAT3
## Visual Phototransduction APOA1
## Diseases Of Metabolism GALE,MUC5B
## Potassium Channels KCNK1
## Stimuli Sensing Channels BEST2
## O Linked Glycosylation MUC5B
## Telomere Maintenance TERT
## Neuronal System CREB1,KCNK1,SRC
## Cell Cycle Mitotic CDK1,CDK4,MYC,SRC
## Regulation Of Lipid Metabolism By Pparalpha APOA1
## Transmission Across Chemical Synapses CREB1,SRC
## Glycosaminoglycan Metabolism UST
## Rab Regulation Of Trafficking RAB14
## Cardiac Conduction KCNK1
## Resolution Of Sister Chromatid Cohesion CDK1
## Transport Of Small Molecules APOA1,BEST2,CFTR,HMOX1,PCSK9
## Cell Cycle Checkpoints ATM,CDK1
## Fceri Mediated Nf Kb Activation NFKBIA
## Homology Directed Repair ATM
## Metabolism Of Carbohydrates GALE,UST
## Organelle Biogenesis And Maintenance CDK1,CREB1
## Chromosome Maintenance TERT
## G Alpha S Signalling Events SRC
## Mitotic Prophase CDK1
## Sars Cov Infections TLR9
## Dna Repair ATM,MAPK8
## Protein Localization HMOX1
## Factors Involved In Megakaryocyte Development And Platelet Production CDC42
## Fatty Acid Metabolism PTGS2
## Ion Channel Transport BEST2
## Muscle Contraction KCNK1
## Cilium Assembly CDK1
## Intra Golgi And Retrograde Golgi To Er Traffic VAMP3
## Mitotic G2 G2 M Phases CDK1
## Mitotic Prometaphase CDK1
## Metabolism Of Lipids APOA1,CAV1,PTGS2,RAB14
## Phospholipid Metabolism RAB14
## Mitotic Metaphase And Anaphase CDK1
## Metabolism Of Amino Acids And Derivatives IVD
## M Phase CDK1
## Sensory Perception APOA1
## 2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism
## Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria
## Activation Of Gene Expression By Srebf Srebp
## Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells
## Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps
## Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions
## Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors
## Aflatoxin Activation And Detoxification
## Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway
## Amine Ligand Binding Receptors
## Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity
## Anchoring Fibril Formation
## Androgen Biosynthesis
## Antigen Processing Ubiquitination Proteasome Degradation
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection
## Aquaporin Mediated Transport
## Arachidonate Production From Dag
## Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling
## Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex
## Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry
## Attachment Of Gpi Anchor To Upar
## Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair
## Base Excision Repair Ap Site Formation
## Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Phosphorylation Cascade
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids
## Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism
## Biological Oxidations
## Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins
## Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis
## Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions
## Ca2 Activated K Channels
## Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin
## Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism
## Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation
## Cdc6 Association With The Orc Origin Complex
## Cell Cell Junction Organization
## Cell Extracellular Matrix Interactions
## Cell Junction Organization
## Cellular Hexose Transport
## Cellular Response To Hypoxia
## Cellular Response To Starvation
## Cgmp Effects
## Chl1 Interactions
## Cholesterol Biosynthesis
## Choline Catabolism
## Chondroitin Sulfate Biosynthesis
## Chrebp Activates Metabolic Gene Expression
## Chylomicron Clearance
## Citric Acid Cycle Tca Cycle
## Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Peroxisomal Membrane Protein Import
## Clec7a Dectin 1 Induces Nfat Activation
## Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization
## Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complex I Biogenesis
## Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic
## Creatine Metabolism
## Creb3 Factors Activate Genes
## Cristae Formation
## Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Cs Ds Degradation
## Cyp2e1 Reactions
## Cytochrome P450 Arranged By Substrate Type
## Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation
## Darpp 32 Events
## Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type
## Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2
## Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B
## Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism
## Degradation Of Axin
## Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Detoxification Of Reactive Oxygen Species
## Digestion
## Digestion And Absorption
## Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid
## Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair
## Diseases Of Mismatch Repair Mmr
## Disinhibition Of Snare Formation
## Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass
## Dna Damage Recognition In Gg Ner
## Dna Damage Reversal
## Dna Replication
## Dna Replication Initiation
## Dna Replication Pre Initiation
## Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4
## Dual Incision In Gg Ner
## Dual Incision In Tc Ner
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Effects Of Pip2 Hydrolysis
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors
## Eicosanoids
## Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Er Quality Control Compartment Erqc
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets
## Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras
## Erythropoietin Activates Stat5
## Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis
## Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation
## Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus
## Extrinsic Pathway Of Fibrin Clot Formation
## Fanconi Anemia Pathway
## Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer
## Fertilization
## Fgfr1 Ligand Binding And Activation
## Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling
## Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric
## Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling
## Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex
## Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling
## Fructose Catabolism
## Fructose Metabolism
## G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation
## G2 Phase
## Gaba B Receptor Activation
## Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly
## Gap Junction Degradation
## Gdp Fucose Biosynthesis
## Gene Silencing By Rna
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis
## Gluconeogenesis
## Glucose Metabolism
## Glucuronidation
## Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation
## Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism
## Glycogen Storage Diseases
## Glycogen Synthesis
## Glycolysis
## Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis
## Golgi To Er Retrograde Transport
## Grb7 Events In Erbb2 Signaling
## Hats Acetylate Histones
## Hcmv Late Events
## Hdacs Deacetylate Histones
## Hdms Demethylate Histones
## Hdr Through Mmej Alt Nhej
## Hedgehog Ligand Biogenesis
## Hedgehog Off State
## Hedgehog On State
## Heme Biosynthesis
## Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism
## Hiv Elongation Arrest And Recovery
## Hiv Transcription Elongation
## Hiv Transcription Initiation
## Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis
## Hs Gag Degradation
## Hsf1 Activation
## Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc
## Il 6 Type Cytokine Receptor Ligand Interactions
## Influenza Infection
## Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Inositol Phosphate Metabolism
## Insulin Processing
## Insulin Receptor Recycling
## Integration Of Energy Metabolism
## Integration Of Provirus
## Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates
## Interleukin 36 Pathway
## Intestinal Absorption
## Intra Golgi Traffic
## Intraflagellar Transport
## Inwardly Rectifying K Channels
## Ion Homeostasis
## Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors
## Irak2 Mediated Activation Of Tak1 Complex
## Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn
## Irs Activation
## Josephin Domain Dubs
## Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism
## Keratinization
## Ketone Body Metabolism
## Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna
## Lagging Strand Synthesis
## Laminin Interactions
## Leukotriene Receptors
## Lgi Adam Interactions
## Ligand Receptor Interactions
## Linoleic Acid La Metabolism
## Lipid Particle Organization
## Lipophagy
## Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism
## Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors
## Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Maturation Of Nucleoprotein
## Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein
## Meiotic Synapsis
## Melanin Biosynthesis
## Met Activates Pi3k Akt Signaling
## Met Activates Ptpn11
## Met Activates Rap1 And Rac1
## Met Activates Ras Signaling
## Met Interacts With Tns Proteins
## Met Receptor Activation
## Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones
## Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Cofactors
## Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Polyamines
## Metabolism Of Rna
## Metabolism Of Steroid Hormones
## Metabolism Of Steroids
## Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins
## Metallothioneins Bind Metals
## Methionine Salvage Pathway
## Methylation
## Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle
## Miscellaneous Substrates
## Miscellaneous Transport And Binding Events
## Mismatch Repair
## Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import
## Mitochondrial Translation
## Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling
## Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis
## Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis
## Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing
## Mrna Editing C To U Conversion
## Mrna Splicing
## Mrna Splicing Minor Pathway
## Mtor Signalling
## Mtorc1 Mediated Signalling
## Mucopolysaccharidoses
## Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors
## Myoclonic Epilepsy Of Lafora
## N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters
## Ncam1 Interactions
## Nectin Necl Trans Heterodimerization
## Neddylation
## Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Nephrin Family Interactions
## Neurexins And Neuroligins
## Neurofascin Interactions
## Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance
## Neurotransmitter Release Cycle
## Ngf Independant Trka Activation
## Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3
## Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle
## Notch Hlh Transcription Pathway
## Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrcam Interactions
## Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1
## Nuclear Import Of Rev Protein
## Nuclear Receptor Transcription Pathway
## Nucleobase Biosynthesis
## Nucleobase Catabolism
## Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors
## O Glycosylation Of Tsr Domain Containing Proteins
## Olfactory Signaling Pathway
## Opsins
## Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organic Anion Transport
## Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport
## Organic Cation Transport
## P2y Receptors
## P75ntr Negatively Regulates Cell Cycle Via Sc1
## Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair
## Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis
## Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import
## Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation
## Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4
## Physiological Factors
## Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4
## Pi3k Akt Activation
## Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation
## Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines
## Platelet Calcium Homeostasis
## Platelet Homeostasis
## Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events
## Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway
## Postmitotic Nuclear Pore Complex Npc Reformation
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Pre Notch Expression And Processing
## Pre Notch Processing In Golgi